diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-01 12:35:34 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-01 12:35:34 -0800 |
commit | cc8caeb1230fbaed4a6bc64848a584d51b69362a (patch) | |
tree | 086264364fe1d9d1f790a077cd7d9f3219cc369a /lib/wax.cpp | |
parent | 5e455ca92280e3c22f5484cb81a2aef0cdfb5de4 (diff) | |
download | uhd-cc8caeb1230fbaed4a6bc64848a584d51b69362a.tar.gz uhd-cc8caeb1230fbaed4a6bc64848a584d51b69362a.tar.bz2 uhd-cc8caeb1230fbaed4a6bc64848a584d51b69362a.zip |
Work on the properties framwork with wax::obj.
Now the obj handles all 3 things in 1, properties, polymorphic container, proxy.
Diffstat (limited to 'lib/wax.cpp')
-rw-r--r-- | lib/wax.cpp | 97 |
1 files changed, 61 insertions, 36 deletions
diff --git a/lib/wax.cpp b/lib/wax.cpp index 025aa1766..2a6fdc3bb 100644 --- a/lib/wax.cpp +++ b/lib/wax.cpp @@ -19,6 +19,15 @@ #include <stdexcept> #include <boost/bind.hpp> #include <boost/format.hpp> +#include <boost/function.hpp> + +/*********************************************************************** + * Proxy Contents + **********************************************************************/ +struct proxy_args_t{ + boost::function<void(wax::obj &)> get; + boost::function<void(const wax::obj &)> set; +}; /*********************************************************************** * WAX Object @@ -27,58 +36,74 @@ wax::obj::obj(void){ /* NOP */ } +wax::obj::obj(const obj &o){ + _contents = o._contents; +} + wax::obj::~obj(void){ /* NOP */ } -wax::proxy wax::obj::operator[](const type &key){ - return proxy( - boost::bind(&obj::get, this, key, _1), - boost::bind(&obj::set, this, key, _1) - ); +wax::obj wax::obj::operator[](const obj &key){ + if (_contents.type() == typeid(proxy_args_t)){ + obj val = resolve(); + //check if its a regular pointer and call + if (val.type() == typeid(obj::ptr)){ + return (*cast<obj::ptr>(val))[key]; + } + //check if its a smart pointer and call + if (val.type() == typeid(obj::sptr)){ + return (*cast<obj::sptr>(val))[key]; + } + //unknown obj + throw std::runtime_error("cannot use [] on non wax::obj pointer"); + } + else{ + proxy_args_t proxy_args; + proxy_args.get = boost::bind(&obj::get, this, key, _1); + proxy_args.set = boost::bind(&obj::set, this, key, _1); + return wax::obj(proxy_args); + } } -/*********************************************************************** - * WAX Proxy - **********************************************************************/ -wax::proxy::proxy(wax::proxy::getter_t getter, wax::proxy::setter_t setter) -: d_getter(getter), d_setter(setter){ - /* NOP */ +wax::obj & wax::obj::operator=(const obj &val){ + if (_contents.type() == typeid(proxy_args_t)){ + boost::any_cast<proxy_args_t>(_contents).set(val); + } + else{ + _contents = val._contents; + } + return *this; } -wax::proxy::~proxy(void){ - /* NOP */ +wax::obj wax::obj::get_link(void) const{ + return ptr(this); +} + +const std::type_info & wax::obj::type(void) const{ + return _contents.type(); } -wax::proxy wax::proxy::operator[](const type &key){ - type val((*this)()); - //check if its a regular pointer and call - if (val.type() == typeid(obj::ptr)){ - return (*cast<obj::ptr>(val))[key]; +boost::any wax::obj::resolve(void) const{ + if (_contents.type() == typeid(proxy_args_t)){ + obj val; + boost::any_cast<proxy_args_t>(_contents).get(val); + return val.resolve(); } - //check if its a smart pointer and call - if (val.type() == typeid(obj::sptr)){ - return (*cast<obj::sptr>(val))[key]; + else{ + return _contents; } - //unknown type - throw std::runtime_error("cannot use [] on non wax::obj pointer"); } -wax::proxy wax::proxy::operator=(const type &val){ - d_setter(val); - return *this; +std::ostream& operator<<(std::ostream &os, const wax::obj &x){ + os << boost::format("WAX obj (%s)") % x.type().name(); + return os; } -wax::type wax::proxy::operator()(void){ - type val; - d_getter(val); - return val; +void wax::obj::get(const obj &, obj &){ + throw std::runtime_error("Cannot call get on wax obj base class"); } -/*********************************************************************** - * WAX Type - **********************************************************************/ -std::ostream& operator<<(std::ostream &os, const wax::type &x){ - os << boost::format("WAX type (%s)") % x.type().name(); - return os; +void wax::obj::set(const obj &, const obj &){ + throw std::runtime_error("Cannot call set on wax obj base class"); } |