summaryrefslogtreecommitdiff
path: root/extras/qmf
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed the keywords for object timestamps. They were missing the initial ↵Ted Ross2010-05-211-3/+3
| | | | | | underscore. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@947000 13f79535-47bb-0310-9956-ffa450edef68
* QMF: provide event filter api for python consoleKenneth Anthony Giusti2010-05-201-6/+77
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@946801 13f79535-47bb-0310-9956-ffa450edef68
* Added missing method for ObjectId.Ted Ross2010-05-191-0/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@946180 13f79535-47bb-0310-9956-ffa450edef68
* qpid-tool re-write:Ted Ross2010-05-191-9/+27
| | | | | | | | 1) No longer uses the (really) old API 2) Handles the new QMFv2 functionality git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@946178 13f79535-47bb-0310-9956-ffa450edef68
* QMF: allow consoles to filter agent heartbeats based on agent identification.Kenneth Anthony Giusti2010-05-181-1/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@945871 13f79535-47bb-0310-9956-ffa450edef68
* If a data update arrives with partial data, don't set the missing data to ↵Ted Ross2010-05-181-2/+10
| | | | | | None, leave it absent. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@945833 13f79535-47bb-0310-9956-ffa450edef68
* set the session's default timeout to match the broker's defaultKenneth Anthony Giusti2010-05-181-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@945716 13f79535-47bb-0310-9956-ffa450edef68
* Two fixes for qmf.console:Ted Ross2010-05-121-27/+45
| | | | | | | | 1) use proper binding-keys for filtering QMFv2 data indications 2) fix the problem where stat-updates were being lumped in with property updates for V1 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@943589 13f79535-47bb-0310-9956-ffa450edef68
* QMF: remove getName() object method - collides with existing method namesKenneth Anthony Giusti2010-05-051-4/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@941485 13f79535-47bb-0310-9956-ffa450edef68
* Set daemon mode for the connection thread.Ted Ross2010-05-051-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@941321 13f79535-47bb-0310-9956-ffa450edef68
* Code cleanup Ted Ross2010-04-231-4/+0
| | | | | | | | | | - Removed IdAllocator (it's no longer needed) - Cleaned up the calls to ManagementAgent::addObject to handle durable objects - Removed the deferred call to addObject for durable objects - Removed unneeded calls to self._checkClosed() in qmf.console.Agent git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937516 13f79535-47bb-0310-9956-ffa450edef68
* Cluster management improvements:Ted Ross2010-04-231-37/+103
| | | | | | | | | | | 1) Enable all management methods via QMFv2 for clusters 2) Disable all management methods via QMFv1 for clusters 3) The broker-resident management agent can handle both v1 and v2 method calls 4) qmf.console (Python) now works with new and old brokers by detecting whether the broker can handle v2 commands git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937472 13f79535-47bb-0310-9956-ffa450edef68
* qmf: python console - fix datestamps, add accessors for object name and agentKenneth Anthony Giusti2010-04-231-0/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937318 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: resync with updated Connection api.Kenneth Anthony Giusti2010-04-229-265/+107
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937097 13f79535-47bb-0310-9956-ffa450edef68
* add extra debug info in qmf v1 exception handlerKenneth Anthony Giusti2010-04-151-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@934262 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: update addressing, fix subscription refresh, remove old commentsKenneth Anthony Giusti2010-03-314-88/+46
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929740 13f79535-47bb-0310-9956-ffa450edef68
* Merged the changes from the qmf-devel0.7a branch back to the trunk.Ted Ross2010-03-311-305/+1412
| | | | | | | | | | | | | | | | | This is a checkpoint along the QMFv2 development path. This update introduces portions of QMFv2 into the code: - The C++ agent (qpid/agent) uses QMFv2 for data and method transfer o The APIs no longer use qpid::framing::* o Consequently, boost is no longer referenced from the API headers. o Agents and Objects are now referenced by strings, not numbers. o Schema transfer still uses the QMFv1 format. - The broker-resident agent can use QMFv1 or QMFv2 based on the command line options. It defaults to QMFv1 for compatibility. - The pure-python QMF console (qmf.console) can concurrently interact with both QMFv1 and QMFv2 agents. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929716 13f79535-47bb-0310-9956-ffa450edef68
* add support for QMF TYPE_LIST in engine, ruby and python wrappersKenneth Anthony Giusti2010-03-301-17/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929244 13f79535-47bb-0310-9956-ffa450edef68
* added LICENSE.txt and NOTICE.txtRafael H. Schloming2010-03-302-0/+223
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929191 13f79535-47bb-0310-9956-ffa450edef68
* Minor improvements to brokertest.py.Alan Conway2010-03-221-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@926300 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: fix agent indication heartbeat generation and handling.Kenneth Anthony Giusti2010-03-023-18/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@918184 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: split error logging and debug tracing into separate loggersKenneth Anthony Giusti2010-03-013-382/+188
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@917688 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: object subscriptions, and testsKenneth Anthony Giusti2010-03-014-170/+464
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@917584 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: add console async subscription api, and testsKenneth Anthony Giusti2010-02-252-125/+408
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@916462 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: test subscription refresh and cancelKenneth Anthony Giusti2010-02-243-12/+166
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@915980 13f79535-47bb-0310-9956-ffa450edef68
* QPID-2261: sync with msg formats defined on wiki, start subscription impl.Kenneth Anthony Giusti2010-02-2413-341/+1410
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@915946 13f79535-47bb-0310-9956-ffa450edef68
* added missing author metadataRafael H. Schloming2010-02-191-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@911802 13f79535-47bb-0310-9956-ffa450edef68
* Handle the case where a message is received without a routing_key in the ↵Ted Ross2010-02-161-4/+10
| | | | | | delivery properties. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@910694 13f79535-47bb-0310-9956-ffa450edef68
* moved qpid-* tools out of qpid/python into qpid/tools; moved qmf library ↵Rafael H. Schloming2010-02-1418-0/+10938
into extras/qmf git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@910016 13f79535-47bb-0310-9956-ffa450edef68