summaryrefslogtreecommitdiff
path: root/qpid/cpp
Commit message (Collapse)AuthorAgeFilesLines
* NO-JIRA: HA remove use of boost_hash, failes to build on some compilers.Alan Conway2013-08-069-22/+91
| | | | | | Removed use of boost::hash entirely, build problems on RHEL5. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510988 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5041: ensure persistence id is not lost when annotation is addedGordon Sim2013-08-051-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510696 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: HA Handle brokers joining and leaving during a transaction.Alan Conway2013-08-0518-53/+165
| | | | | | | | | | | During a transaction: - A broker leaving aborts the transaction. - A broker joining does not participate in the transaction - but does receive the results of the TX via normal replication. Clean up tx-queues when the transaction completes. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510678 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5035: Respect data-dir setting from config fileJustin Ross2013-08-051-2/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510657 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Remove deleted file ha/hash.h from CMakeLists.txt.Alan Conway2013-08-051-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510645 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Corrected use of boost_hash, failing to build on some compilers.Alan Conway2013-08-058-56/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510597 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Remove use of boost::make_shared, not availble on some older versions.Alan Conway2013-08-055-12/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1510596 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: HA Fix windows compile errors introduced by recent commits.Alan Conway2013-08-0210-19/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509861 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: HA logging fixes.Alan Conway2013-08-013-19/+13
| | | | | | | - Removed "FIXME" log statements inadvertently left in code. - Changed some trace statements to debug to faclilitate debugging. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509428 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: HA TX transactions, blocking wait for prepareAlan Conway2013-08-0121-104/+343
| | | | | | | | | | | Backups send prepare messages to primary, primary delays completion of prepare till all are prepared (or there is a failure). This is NOT the production solution - blocking could cause a deadlock. We need to introduce asynchronous completion of prepare without blocking. This interim solution allows testing on other aspects of TX support. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509424 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: HA TX transactions: basic replication.Alan Conway2013-08-0143-274/+2483
| | | | | | | | | | | | | | | On primary a PrimaryTxObserver observes a transaction's TxBuffer and generates transaction events on a tx-replication-queue. On the backup a TxReplicator receives the events and constructs a TxBuffer equivalent to the one in the primary. Unfinished: - Primary does not wait for backups to prepare() before committing. - All connected backups are assumed to be in the transaction, there are race conditions around brokers joining/leavinv where this assumption is invalid. - Need more tests. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509423 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: HA get rid of Primary::get() singleton.Alan Conway2013-08-013-14/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509422 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: Added TransactionObserver interface.Alan Conway2013-08-0122-74/+412
| | | | | | | | | | | Added TransactionObserver interface, called at each point in a transaction's lifecycle. Currently only a single observer can be associated with a transaction. Added startTx, startDtx to BrokerObserver so plugins can observe transactions starting and set a TransactionObserver. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509421 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: Renamed ConfigurationObserver as BrokerObserver.Alan Conway2013-08-0112-48/+47
| | | | | | | | This class really was intended as a observer for broker-level events which includes configuration but may in future include other non-configuration events such as transactions. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509420 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: Refactor to simplify TxAccept.Alan Conway2013-08-012-92/+54
| | | | | | Removed un-necessary RangeOps layers. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509419 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4327: Optimize brokertest.ready() to improve test runtimes.Alan Conway2013-08-011-22/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509418 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5034: WinSDK README contains stale web site URLCharles E. Rolke2013-08-011-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509311 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5017: WinSDK build leaves release executables stranded in \bin directoryCharles E. Rolke2013-07-311-0/+3
| | | | | | Delete them during install post-processing git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509016 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5032: Windows install LICENSE and NOTICE files have movedCharles E. Rolke2013-07-311-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509004 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5029: WinSDK tries to handle components that have been removedCharles E. Rolke2013-07-311-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508998 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5028: Qmf2 examples install script errorCharles E. Rolke2013-07-311-11/+0
| | | | | | | Don't try to install files that don't exist. This patch may be superseded by new CMake files or by the addition of the .sln and .vcproj that are currently missing. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508967 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4942: Include file not part of supported APIAndrew Stitcher2013-07-311-0/+0
| | | | | | (missed out from earlier commit) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508915 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5027: Windows examples installed to wrong directoryCharles E. Rolke2013-07-311-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508866 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5029: WinSDK tries to handle components that have been removedCharles E. Rolke2013-07-311-4/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508864 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5026: make receivers target and senders source configurable, defaulting ↵Gordon Sim2013-07-314-2/+41
| | | | | | to the named node if not specified git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508832 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5026: match source with target and vice-versaGordon Sim2013-07-302-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508523 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5025: check that delivery has not already been ended before signalling ↵Gordon Sim2013-07-301-1/+3
| | | | | | commit of dequeue git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1508516 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4942: Only install include files that are used by the supported APIAndrew Stitcher2013-07-2677-11/+2
| | | | | | | - Since we removed a whole lot of old API code we can drastically cut down on the header files that we export. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507469 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4940: Remove qmf1 console codeAndrew Stitcher2013-07-2640-5936/+2
| | | | | | QPID-4941: Remove qmf1 console examples git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507467 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4940: Remove obsolete qmf codeAndrew Stitcher2013-07-2662-15557/+1
| | | | | | | | | - Remove qmf1 engine code - Remove qmf1 language bindings - Remove qmf1 agent code (it depends on engine) - Fix up cmake to build git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507464 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4941: Remove long deprecated example code for old qpid::client APIAndrew Stitcher2013-07-2655-9032/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507463 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5019: add flag to distinguish QMFv2 eventsKenneth Anthony Giusti2013-07-261-0/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507370 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4640: QPID-3633: Remove autotools build from qpid C++ source treeAndrew Stitcher2013-07-2571-11196/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507112 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5016: Zero rmgr struct element with correct size.Andrew Stitcher2013-07-251-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507085 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5014: Require "--enable-deprecated-autotools" to use autotoolsAndrew Stitcher2013-07-241-3/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1506694 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5015: increase timeouts for queue flow testsKenneth Anthony Giusti2013-07-241-4/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1506613 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5011: C++ Broker ACL allows one connection when user quota is zeroCharles E. Rolke2013-07-221-1/+3
| | | | | | | | Compute limit-check result even for first connection. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1505823 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5003: set finite lifetime by default for durable subscription queues ↵Gordon Sim2013-07-185-20/+57
| | | | | | that are not currently in use git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504622 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5002: durable links are reliable by default; autodelete subscription ↵Gordon Sim2013-07-181-3/+5
| | | | | | queue specified only if neither durable nor reliable git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504621 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: ensure interface is specified for verification of old examples ↵Gordon Sim2013-07-181-1/+1
| | | | | | (there is another script!) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504524 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: ensure interface is specified for verification of old examplesGordon Sim2013-07-181-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504462 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Enhance proton version compatibility check to restrict latest as ↵Gordon Sim2013-07-171-7/+12
| | | | | | well as earliest compatible version git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504071 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4988: fix test script for case where AMQP 1.0 support is not builtGordon Sim2013-07-171-3/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504065 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4993: reroute dropped messages in ring queue if alternate exchange is ↵Gordon Sim2013-07-174-13/+35
| | | | | | specified git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504058 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4988: add test script introduced in last commit to EXTRA_DISTGordon Sim2013-07-171-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1504036 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4907: fix unit testGordon Sim2013-07-161-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1503653 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4988: Add test runs using swigged python clientGordon Sim2013-07-1610-24/+137
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1503652 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4987: Fix URL link to Qpid docs.Alan Conway2013-07-151-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1503254 13f79535-47bb-0310-9956-ffa450edef68
* QPID-3247: add policy for self-struct subscription queueGordon Sim2013-07-138-0/+128
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1502766 13f79535-47bb-0310-9956-ffa450edef68
* Add Windows Powershell version of this test. NO-JIRA.Stephen D. Huston2013-07-121-0/+71
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1502714 13f79535-47bb-0310-9956-ffa450edef68