// // Copyright 2010 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #include #include #include #include /*********************************************************************** * WAX Object **********************************************************************/ wax::obj::obj(void){ /* NOP */ } 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 Proxy **********************************************************************/ wax::proxy::proxy(wax::proxy::getter_t getter, wax::proxy::setter_t setter) : d_getter(getter), d_setter(setter){ /* NOP */ } wax::proxy::~proxy(void){ /* NOP */ } 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(val))[key]; } //check if its a smart pointer and call if (val.type() == typeid(obj::sptr)){ return (*cast(val))[key]; } //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; } wax::type wax::proxy::operator()(void){ type val; d_getter(val); return val; } /*********************************************************************** * WAX Type **********************************************************************/ std::ostream& operator<<(std::ostream &os, const wax::type &x){ os << boost::format("WAX type (%s)") % x.type().name(); return os; }