diff options
| author | Ted Ross <tross@apache.org> | 2011-01-11 16:02:23 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2011-01-11 16:02:23 +0000 |
| commit | 8850626ab31ff00e0eca619fda60a72775005eaa (patch) | |
| tree | 26401f8d7645e4b6530def1321976892ffbbd51a /qpid/cpp/bindings | |
| parent | e6d7b4bec1db40e93496177db4fdcc0b2cc8fcd2 (diff) | |
| download | qpid-python-8850626ab31ff00e0eca619fda60a72775005eaa.tar.gz | |
QMFv2 API change:
1) Added public constructor for DataAddr(Variant::Map)
2) Fixed Python and Ruby typemaps to support Variant::Map& and Variant::List& with const
3) Added support for building Queries based on object-id maps in both Python and Ruby wrappers
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1057709 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bindings')
| -rw-r--r-- | qpid/cpp/bindings/qmf2/python/qmf2.py | 14 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf2/ruby/qmf2.rb | 14 | ||||
| -rw-r--r-- | qpid/cpp/bindings/swig_python_typemaps.i | 24 | ||||
| -rw-r--r-- | qpid/cpp/bindings/swig_ruby_typemaps.i | 18 |
4 files changed, 56 insertions, 14 deletions
diff --git a/qpid/cpp/bindings/qmf2/python/qmf2.py b/qpid/cpp/bindings/qmf2/python/qmf2.py index 28e40d59ca..911b080dfd 100644 --- a/qpid/cpp/bindings/qmf2/python/qmf2.py +++ b/qpid/cpp/bindings/qmf2/python/qmf2.py @@ -311,7 +311,7 @@ class Agent(object): """ """ if q.__class__ == Query: - q_arg = Query._impl + q_arg = q._impl else: q_arg = q dur = cqpid.Duration(cqpid.Duration.SECOND.getMilliseconds() * timeout) @@ -366,10 +366,11 @@ class Query(object): """ """ - def __init__(self, *kwargs): + def __init__(self, arg1, arg2=None, arg3=None, *kwargs): """ """ - pass + if arg1.__class__ == DataAddr: + self._impl = cqmf2.Query(arg1._impl) #=================================================================================================== # DATA @@ -518,8 +519,11 @@ class DataAddr(object): """ """ - def __init__(self, impl): - self._impl = impl + def __init__(self, arg): + if arg.__class__ == dict: + self._impl = cqmf2.DataAddr(arg) + else: + self._impl = arg def __repr__(self): return "%s:%s" % (self.getAgentName(), self.getName()) diff --git a/qpid/cpp/bindings/qmf2/ruby/qmf2.rb b/qpid/cpp/bindings/qmf2/ruby/qmf2.rb index 6c6dbf357d..65cc695c45 100644 --- a/qpid/cpp/bindings/qmf2/ruby/qmf2.rb +++ b/qpid/cpp/bindings/qmf2/ruby/qmf2.rb @@ -233,8 +233,10 @@ module Qmf2 class Query attr_reader :impl - def initialize - @impl = nil + def initialize(arg1, arg2=nil, arg3=nil) + if arg1.class == Qmf2::DataAddr + @impl = Cqmf2::Query.new(arg1.impl) + end end end @@ -390,8 +392,12 @@ module Qmf2 class DataAddr attr_reader :impl - def initialize(impl) - @impl = impl + def initialize(arg) + if arg.class == Hash + @impl = Cqmf2::DataAddr.new(arg) + else + @impl = arg + end end def ==(other) diff --git a/qpid/cpp/bindings/swig_python_typemaps.i b/qpid/cpp/bindings/swig_python_typemaps.i index d622ee36e2..57046d2944 100644 --- a/qpid/cpp/bindings/swig_python_typemaps.i +++ b/qpid/cpp/bindings/swig_python_typemaps.i @@ -271,10 +271,6 @@ typedef int Py_ssize_t; Py_INCREF($result); } -%typemap(typecheck) qpid::types::Variant::Map& { - $1 = PyDict_Check($input) ? 1 : 0; -} - /* * Variant types: C++ --> Python */ @@ -314,6 +310,16 @@ typedef int Py_ssize_t; PyToList($input, $1); } +%typemap(in) const qpid::types::Variant::Map const & { + $1 = new qpid::types::Variant::Map(); + PyToMap($input, $1); +} + +%typemap(in) const qpid::types::Variant::List const & { + $1 = new qpid::types::Variant::List(); + PyToList($input, $1); +} + %typemap(freearg) qpid::types::Variant& { delete $1; } @@ -334,7 +340,15 @@ typedef int Py_ssize_t; $1 = PyDict_Check($input) ? 1 : 0; } -%typemap(typecheck) qpid::types::Variant::List& { +%typemap(typecheck) qpid::types::Variant::List& { + $1 = PyList_Check($input) ? 1 : 0; +} + +%typemap(typecheck) const qpid::types::Variant::Map const & { + $1 = PyDict_Check($input) ? 1 : 0; +} + +%typemap(typecheck) const qpid::types::Variant::List const & { $1 = PyList_Check($input) ? 1 : 0; } diff --git a/qpid/cpp/bindings/swig_ruby_typemaps.i b/qpid/cpp/bindings/swig_ruby_typemaps.i index 25a8924c18..b91ca7dfb9 100644 --- a/qpid/cpp/bindings/swig_ruby_typemaps.i +++ b/qpid/cpp/bindings/swig_ruby_typemaps.i @@ -267,6 +267,16 @@ RbToList($input, $1); } +%typemap(in) const qpid::types::Variant::Map const & { + $1 = new qpid::types::Variant::Map(); + RbToMap($input, $1); +} + +%typemap(in) const qpid::types::Variant::List const & { + $1 = new qpid::types::Variant::List(); + RbToList($input, $1); +} + %typemap(freearg) qpid::types::Variant& { delete $1; } @@ -291,6 +301,14 @@ $1 = (TYPE($input) == T_ARRAY) ? 1 : 0; } +%typemap(typecheck) qpid::types::Variant::Map const & { + $1 = (TYPE($input) == T_HASH) ? 1 : 0; +} + +%typemap(typecheck) qpid::types::Variant::List const & { + $1 = (TYPE($input) == T_ARRAY) ? 1 : 0; +} + %typemap(typecheck) qpid::types::Variant& { $1 = (TYPE($input) == T_FLOAT || TYPE($input) == T_STRING || |
