summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Removed new Frame & MethodHolder classes from build.Alan Conway2007-08-082-11/+1
| | | | | | | Excessive compilation time. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563975 13f79535-47bb-0310-9956-ffa450edef68
* changed the API based on the discussions with rafi and arnaud. also fixed ↵Rajith Muditha Attapattu2007-08-0813-374/+226
| | | | | | the compilation errors git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563959 13f79535-47bb-0310-9956-ffa450edef68
* Timeout after waiting for completion that doesn't arrive.Gordon Sim2007-08-081-3/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563945 13f79535-47bb-0310-9956-ffa450edef68
* implemented Message Arnaud Simon2007-08-086-103/+515
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563917 13f79535-47bb-0310-9956-ffa450edef68
* NullMessageStore log levels changed from warning to info.Alan Conway2007-08-082-12/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563880 13f79535-47bb-0310-9956-ffa450edef68
* * src/tests/start_broker: Pass script parameters to broker.Alan Conway2007-08-085-8/+55
| | | | | | | | | | | | | * src/qpid/sys/Serializer.cpp: Corrected log levels. * src/tests/.valgrind.supp-default: Suppress probably benign leaks and uninit param errors from asynch IO code. Need verification they are beningn. * src/qpid/sys/AsynchIOAcceptor.cpp(run): Fix memory leak. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563879 13f79535-47bb-0310-9956-ffa450edef68
* fixed a bunch of temporary hacks, we now auto process comands that have no ↵Rafael H. Schloming2007-08-0813-48/+166
| | | | | | payload git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563829 13f79535-47bb-0310-9956-ffa450edef68
* svn:ignore properties.Alan Conway2007-08-080-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563828 13f79535-47bb-0310-9956-ffa450edef68
* Fixed include guard.Alan Conway2007-08-081-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563826 13f79535-47bb-0310-9956-ffa450edef68
* implemented Session.sync()Rafael H. Schloming2007-08-0816-52/+303
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563738 13f79535-47bb-0310-9956-ffa450edef68
* * Summary: new Frame type to replace AMQFrame. Instead of holdingAlan Conway2007-08-0714-13/+653
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a shared_ptr to a heap-allocated AMQBody subclass, it holds the body in-line in a boost::variant of all the concrete AMQBody subclasses. Actually there are nested variants, the compiler does not cope well with a single variant of 130-some types. Creating, encoding and decoding a local Frame doess 0 heap allocation apart from that done by the concrete AMQBody::encode/decode - e.g. method bodies with std::string fields. for method bodies All variants contain type boost::blank. This guarantees 0 heap alloocation by the variant and represents the "uninitialized" state. variant.h provides NoBlankVisitor to help write visitors for variants containing blank. * src/qpid/framing/MethodHolder.h, .cpp: Holds a variant containing a method body. * src/qpid/framing/Frame.h, .cpp: New Frame holds body in a variant rather than via heap allocation. * src/qpid/framing/variant.h: Utilities for using boost::variant. * src/qpid/framing/amqp_types.h: Added FrameType typedef. * src/qpid/framing/AMQMethodBody.h: Friends with MethodHolder. * src/Makefile.am: - Improved ruby generation rule. - Run method_variants template. - Added new source files - Pre-compiled header rule for method_variants.h * rubygen/templates/method_variants.rb: Generate variants to hold methods of each class, and MethodVariant to hold all the class variants. * rubygen/cppgen.rb: variant, tuple methods. * MethodBodyClass.h.tmpl: Added default constructor to method bodies. * amqpgen.rb (AmqpRoot::merge): fix bug in merge. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563683 13f79535-47bb-0310-9956-ffa450edef68
* changed messageFlush to return an intArnaud Simon2007-08-071-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563420 13f79535-47bb-0310-9956-ffa450edef68
* changed messageFlush to return an intArnaud Simon2007-08-071-3/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563417 13f79535-47bb-0310-9956-ffa450edef68
* changed messageFlush to return an intArnaud Simon2007-08-071-489/+483
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563416 13f79535-47bb-0310-9956-ffa450edef68
* - made generated classes mutableRafael H. Schloming2007-08-0732-372/+969
| | | | | | | | | | | | | | | - added setters to generated classes - moved version specific aspect of generated classes to read/write methods - simplified StructFactory - added ConnectionDelegate - removed DelegateResolver - implemented content and header transfer - implemented primitive command window - added ToyBroker and ToyClient for testing - removed throws QpidException from generated delegate git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563386 13f79535-47bb-0310-9956-ffa450edef68
* r899@fuschia: andrew | 2007-08-07 00:30:24 +0100Andrew Stitcher2007-08-061-24/+37
| | | | | | | Fixed Bad time calculations git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563335 13f79535-47bb-0310-9956-ffa450edef68
* fixed compilation errorsRajith Muditha Attapattu2007-08-0619-69/+70
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563312 13f79535-47bb-0310-9956-ffa450edef68
* Implemented queue browsing Arnaud Simon2007-08-064-13/+267
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563226 13f79535-47bb-0310-9956-ffa450edef68
* Added dtx classesArnaud Simon2007-08-068-44/+657
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563197 13f79535-47bb-0310-9956-ffa450edef68
* correct rate calcCarl C. Trieloff2007-08-061-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563168 13f79535-47bb-0310-9956-ffa450edef68
* Send flush after get request. Fixes perftest.Gordon Sim2007-08-062-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563163 13f79535-47bb-0310-9956-ffa450edef68
* moved from clientArnaud Simon2007-08-0613-1/+2467
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563138 13f79535-47bb-0310-9956-ffa450edef68
* Channel dispatcher needs ti be joined on destruction.Gordon Sim2007-08-063-22/+12
| | | | | | | | Also minor cleanup: removed redundant method and friend declarations. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563136 13f79535-47bb-0310-9956-ffa450edef68
* moved filter into commonArnaud Simon2007-08-061-20/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563135 13f79535-47bb-0310-9956-ffa450edef68
* moved from nclientArnaud Simon2007-08-0654-0/+10413
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563134 13f79535-47bb-0310-9956-ffa450edef68
* moved in common Arnaud Simon2007-08-061-592/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563132 13f79535-47bb-0310-9956-ffa450edef68
* renamed to qpidity Arnaud Simon2007-08-0664-12047/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563131 13f79535-47bb-0310-9956-ffa450edef68
* QPID-543 : Add ability to register cusom exchange typesRobert Godfrey2007-08-0615-47/+205
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563125 13f79535-47bb-0310-9956-ffa450edef68
* Connector should join with receiver thread on destructionGordon Sim2007-08-061-1/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563110 13f79535-47bb-0310-9956-ffa450edef68
* git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563097 ↵Arnaud Simon2007-08-0616-162/+1177
| | | | 13f79535-47bb-0310-9956-ffa450edef68
* Fixed race in connection shutdown preventing Connector from being garbage ↵Gordon Sim2007-08-064-10/+7
| | | | | | collected on occasion. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563067 13f79535-47bb-0310-9956-ffa450edef68
* JMS message selector grammar Arnaud Simon2007-08-061-0/+592
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563043 13f79535-47bb-0310-9956-ffa450edef68
* added default exchange Arnaud Simon2007-08-051-0/+51
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562904 13f79535-47bb-0310-9956-ffa450edef68
* Added message selectorArnaud Simon2007-08-0513-89/+2129
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562885 13f79535-47bb-0310-9956-ffa450edef68
* Added generation of message selector classes Arnaud Simon2007-08-051-0/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562884 13f79535-47bb-0310-9956-ffa450edef68
* Added NO_OPTION as a convenient way for using ? : Arnaud Simon2007-08-051-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562883 13f79535-47bb-0310-9956-ffa450edef68
* Added first cut of generated client interface.Gordon Sim2007-08-0523-311/+732
| | | | | | | | | Old channel interface still supported; shares SessionCore with the new interface. Todo: allow applications to signal completion of received commands; keywrod args for interface. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562866 13f79535-47bb-0310-9956-ffa450edef68
* Improved rubygen.mk rule.Alan Conway2007-08-051-2/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562847 13f79535-47bb-0310-9956-ffa450edef68
* * amqpgen.rb: fix sytax error.Alan Conway2007-08-052-18/+32
| | | | | | | | | | * cppgen.rb: - 0-10 types - typedef generator - automatic whitespace around classes etc. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562845 13f79535-47bb-0310-9956-ffa450edef68
* added struct codegen and fixed naming bug in generated gettersRafael H. Schloming2007-08-043-28/+74
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562775 13f79535-47bb-0310-9956-ffa450edef68
* added flow control methodsArnaud Simon2007-08-041-5/+74
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562738 13f79535-47bb-0310-9956-ffa450edef68
* git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562737 ↵Arnaud Simon2007-08-0413-254/+689
| | | | 13f79535-47bb-0310-9956-ffa450edef68
* fixed the build *again*Rafael H. Schloming2007-08-031-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562553 13f79535-47bb-0310-9956-ffa450edef68
* Added index() to classes & methods.Alan Conway2007-08-031-3/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562509 13f79535-47bb-0310-9956-ffa450edef68
* implemented message dispatching thread Arnaud Simon2007-08-032-21/+113
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562489 13f79535-47bb-0310-9956-ffa450edef68
* Fixed compilation errorsRajith Muditha Attapattu2007-08-034-56/+52
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562479 13f79535-47bb-0310-9956-ffa450edef68
* git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562475 ↵Arnaud Simon2007-08-031-0/+34
| | | | 13f79535-47bb-0310-9956-ffa450edef68
* git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562465 ↵Arnaud Simon2007-08-031-4/+4
| | | | 13f79535-47bb-0310-9956-ffa450edef68
* git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562463 ↵Arnaud Simon2007-08-039-95/+197
| | | | 13f79535-47bb-0310-9956-ffa450edef68
* Removed "api" from the package name Arnaud Simon2007-08-0313-232/+381
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@562414 13f79535-47bb-0310-9956-ffa450edef68