

| |||||||
|
You are here: Root > By Topic > Distributed Computing
de.setf.amqp implements a native Common Lisp client library for the 'Advanced Message Queueing Protocol'. The implementation comprises wire-level codecs, implementations for the standard protocol objects and methods, a functional interface for message-, stream- and object-based i/o, and a device-level simple-stream implementation.
| james.anderson@setf.de | |
| Web site | http://github.com/lisp/de.setf.amqp |
| Mailing list | |
| Version | 0.3 - |
| Maturity | Alpha |
| OS compatibility | |
| ASDF installable | No |
| Official Download | http://github.com/lisp/de.setf.amqp.git |
| Mirrored Download | |
| Source code repository | http://github.com/lisp/de.setf.amqp |
de.setf.amqp implements a native Common Lisp client library for the 'Advanced Message Queueing
Protocol'. The implementation comprises wire-level codecs, implementations
for the standard protocol objects and methods, a functional interface for message-,
stream- and object-based i/o, and a device-level simple-stream implementation.
The library targets the revisions of the published AMQP protocol as of versions 0.8, 0.9, and 0.10. This means that it should work with respective RabbitMQ, Apache ActiveMQ, and Qpid implementations. The implementation architecture should also accommodate a control structure appropriate for the prospective 1.0 version - as least as described in preliminary drafts. For each version, a distinct package comprises the object and method definitions for protocol entities and codecs as generated from the respective specification documents.[1] Each collection is a complete projection, which means there is some amount of duplication. The package and directory names names follow more-or-less the naming conventions of the xml protocol documents[2]:
| AMQP-1-1-0-8-0 | version 0.8 | [amqp0-8.xml, amqp0-8.pdf (2006-06)] |
| AMQP-1-1-0-9-0 | version 0.9 | [amqp0-9.xml, amqp0-9.pdf (2006-12)] |
| AMQP-1-1-0-9-1 | version 0.9r1 | [amqp0-9-1.xml, amqp0-9-1.pdf (2008-11-24)] |
| AMQP-1-1-0-10-0 | version 0.10 | [amqp.0-10.xml, amqp.0-10.pdf (2008-02-20)] |
In order to modify the translation and/or generate new codecs consult the :de.setf.amqp.tools component.
All protocol versions are expressed through a common interface[3] which is specialized for the common
abstract classes. The initial connection phase determines the correct concrete connection implementation
to be used to communicate with the broker. Given which the other concrete object and method classes are
elected from the same package. One determines the version support directly by loading the respective
version's .asd file, which makes its connection class available for negotiation.
This is intended as the base for a distributed semantic store. What one has here is a reasonably complete engineering prototype. It consumes phenomenal amounts of memory and runs astonishingly slowly: 5 - 10 milliseconds and 1 to 10 thousand bytes per round trip. A request entails ten levels of generic function dispatch, half of which require keyword processing. A response call stack is about as deep, but with somewhat less keyword processing. As almost everything between the interface commands and the frame buffers is generated code, once it is clear which aspects should remain available for specialization and/or optional arguments, the protocol call stack would benefit from recasting uninteresting elements as ordinary functions of fixed arguments - depending on implementation type, by a factor of ten to sixty.
It would also be nice to generate a table similar to RabbitMQ's to record protocol conformance and compatibility with brokers. Eventually. The present tests are limited to
The library has been built and probed in the following combinations
| AMQP broker lisp implementation | RabbittMQ | QPID |
|---|---|---|
| MCL | MCL-5.2, QPID-0.5, AMQP-0.9r1 | |
| CCL | CCL-1.3, QPID-0.5, AMQP-0.9r1 | |
| SBCL | SBCL-1.0.35, QPID-0.5, AMQP-0.9r1 |
For example,
$ sbcl
This is SBCL 1.0.35, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.
* (in-package :amqp.i)
#<PACKAGE "DE.SETF.AMQP.IMPLEMENTATION">
* (defparameter *c* (make-instance 'amqp:connection :uri "amqp://guest:guest@localhost/"))
*C*
* (defparameter *ch1* (amqp:channel *c* :uri (uri "amqp:///")))
*CH1*
* (defparameter *ch1.basic* (amqp:basic *ch1*))
*CH1.BASIC*
* (defparameter *ch1.ex* (amqp:exchange *ch1* :exchange "ex" :type "direct"))
*CH1.EX*
* (defparameter *ch1.q* (amqp:queue *ch1* :queue "q1"))
*CH1.Q*
* (amqp:request-declare *ch1.q*)
#<AMQP-1-1-0-9-1:QUEUE {11D7A0F1}>
* (amqp:request-bind *ch1.q* :exchange *ch1.ex* :queue *ch1.q* :routing-key "/")
#<AMQP-1-1-0-9-1:QUEUE {11D7A0F1}>
* (defparameter *ch2* (amqp:channel *c* :uri (uri "amqp:///")))
*CH2*
* (defparameter *ch2.basic* (amqp:basic *ch2*))
*CH2.BASIC*
* (defparameter *ch2.q* (amqp:queue *ch2* :queue "q1"))
*CH2.Q*
* (amqp:request-declare *ch2.q*)
#<AMQP-1-1-0-9-1:QUEUE {11DA6891}>
* (list
(amqp:request-publish *ch1.basic* :exchange *ch1.ex*
:body (format nil "this is ~a" (gensym "test #"))
:routing-key "/")
(amqp:request-get *ch2.basic* :queue *ch2.q*))
("this is test #1282" "this is test #1624")
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #1820"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #1998"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #2011"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #2014"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #2022"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #2028"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #2179"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
"this is test #1282"
* (amqp:request-get *ch2.basic* :queue *ch2.q*)
NIL
*
Which, as an aside, illustrates that brokered messages persist between connections until they have been consumed. Of which a default QPID broker with no persistence support was observed to cache only about 500k bytes (ca. 25,000 messages of 20 bytes each).
A .dmg is available for MCL-5.2.
Obtain the required libraries (see amqp.asd). The sources are reflected in the respective system names:
@ r520; Take the svn source;
If you use 0.4.1, you will also need split-sequence.@ 0-61
(also 0-55)@ 0-8-0 (or @ patch 165)@ 2.0.1merge-uri for non-strict
scheme merging.Obtain the de.setf.amqp source and that for the de.setf.utility library
de.setf.utility.mime module.Obtain and load asdf, add the
hierarchical names utility.
If running MCL, with an asdf version that includes mandatory output translations, either disable it or
otherwise ensure that it doesn't choke on the default binding for user-homedir-pathname.
asdf registry. If the central registry entry is a logical
pathname, the hierarchical naming mechanism should suffice to map binaries to a "shadow" directory at the
root of the source tree. The bordeaux-threads -> alexandria reference is
unqualified, and as such, requires additional registration.(asdf:operate 'asdf:load-op :de.setf.amqp._version_)The example initialization file was used for MCL.
This version is released under version 3 of the GNU Affero license (GAL).[5] The required components are included as per the respective licenses and covered, in this combined form, under the GAL as well

PURI | Bordeaux Threads | Closer to MOP | CL-PPCRE | usocket | Alexandria
Distributed Computing | Network Programming | GNU AGPL (GAL)
You must be logged to add a note
You must be logged to add a comment