summaryrefslogtreecommitdiffstats
path: root/usrp_uhd/lib/wax.cpp
blob: 888e581f31cb57bec8d4310a83ec1d0587d53dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//
// Copyright 2010 Ettus Research LLC
//

#include <usrp_uhd/wax.hpp>
#include <stdexcept>
#include <boost/bind.hpp>
#include <boost/format.hpp>

/***********************************************************************
 * 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<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 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;
}