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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
//
// Copyright 2011-2011 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 <http://www.gnu.org/licenses/>.
//
#include <uhd/types/sensors.hpp>
#include <uhd/exception.hpp>
#include <boost/format.hpp>
using namespace uhd;
sensor_value_t::sensor_value_t(
const std::string &name,
bool value,
const std::string &utrue,
const std::string &ufalse
):
name(name), value(value?"true":"false"),
unit(value?utrue:ufalse), type(BOOLEAN)
{
/* NOP */
}
sensor_value_t::sensor_value_t(
const std::string &name,
signed value,
const std::string &unit,
const std::string &formatter
):
name(name), value(str(boost::format(formatter) % value)),
unit(unit), type(INTEGER)
{
/* NOP */
}
sensor_value_t::sensor_value_t(
const std::string &name,
double value,
const std::string &unit,
const std::string &formatter
):
name(name), value(str(boost::format(formatter) % value)),
unit(unit), type(REALNUM)
{
/* NOP */
}
sensor_value_t::sensor_value_t(
const std::string &name,
const std::string &value,
const std::string &unit
):
name(name), value(value),
unit(unit), type(STRING)
{
/* NOP */
}
sensor_value_t::sensor_value_t(const sensor_value_t& source)
{
*this = source;
}
std::string sensor_value_t::to_pp_string(void) const{
switch(type){
case BOOLEAN:
return str(boost::format("%s: %s") % name % unit);
case INTEGER:
case REALNUM:
case STRING:
return str(boost::format("%s: %s %s") % name % value % unit);
}
UHD_THROW_INVALID_CODE_PATH();
}
bool sensor_value_t::to_bool(void) const{
return value == "true";
}
signed sensor_value_t::to_int(void) const{
return std::stoi(value);
}
double sensor_value_t::to_real(void) const{
return std::stod(value);
}
sensor_value_t& sensor_value_t::operator=(const sensor_value_t& rhs)
{
this->name = rhs.name;
this->value = rhs.value;
this->unit = rhs.unit;
this->type = rhs.type;
return *this;
}
|