blob: 9406112cbfe99885f9a4dd2b4f1dc1e579293bb3 (
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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
#include "signal.hpp"
namespace openxc
{
std::string signal::generic_name() const
{
return generic_name_;
}
std::uint32_t signal::bit_position() const
{
return bit_position_;
}
std::uint32_t signal::bit_size() const
{
return bit_size_;
}
float signal::factor() const
{
return factor_;
}
std::uint32_t signal::offset() const
{
return offset_;
}
std::string signal::decoder() const
{
return decoder_;
}
bool signal::ignore() const
{
return ignore_;
}
bool signal::enabled() const
{
return enabled_;
}
const std::map<std::string, std::vector<std::uint32_t>>& signal::states() const
{
return states_;
}
std::uint32_t signal::max_frequency() const
{
return max_frequency_;
}
bool signal::send_same() const
{
return send_same_;
}
bool signal::force_send_changed() const
{
return force_send_changed_;
}
bool signal::writable() const
{
return writable_;
}
std::string signal::encoder() const
{
return encoder_;
}
void signal::from_json(const nlohmann::json& j)
{
generic_name_ = j.count("generic_name") ? j["generic_name"].get<std::string>() : "";
bit_position_ = j.count("bit_position") ? j["bit_position"].get<std::uint32_t>() : 0;
bit_size_ = j.count("bit_size") ? j["bit_size"].get<std::uint32_t>() : 0;
factor_ = j.count("factor") ? j["factor"].get<float>() : 1.0f;
offset_ = j.count("offset") ? j["offset"].get<std::uint32_t>() : 0;
decoder_ = j.count("decoder") ? j["decoder"].get<std::string>() : "";
ignore_ = j.count("ignore") ? j["ignore"].get<bool>() : false;
enabled_ = j.count("enabled") ? j["enabled"].get<bool>() : true;
max_frequency_ = j.count("max_frequency") ? j["max_frequency"].get<std::uint32_t>() : 0;
send_same_ = j.count("send_same") ? j["send_same"].get<bool>() : true;
force_send_changed_ = j.count("force_send_changed") ? j["force_send_changed"].get<bool>() : false;
writable_ = j.count("writable") ? j["writable"].get<bool>() : false;
encoder_ = j.count("encoder") ? j["encoder"].get<std::string>() : "";
if (j.count("states"))
{
std::map<std::string, nlohmann::json> items = j["states"];
for(const auto& i : items)
{
states_[i.first] = i.second.get<std::vector<std::uint32_t>>();
}
}
}
nlohmann::json signal::to_json() const
{
nlohmann::json j;
j["generic_name"] = generic_name_;
j["bit_position"] = bit_position_;
j["bit_size"] = bit_size_;
j["factor"] = factor_;
j["offset"] = offset_;
j["decoder"] = decoder_;
j["ignore"] = ignore_;
j["enabled"] = enabled_;
j["states"] = states_;
j["max_frequency"] = max_frequency_;
j["send_same"] = send_same_;
j["force_send_changed"] = force_send_changed_;
j["writable"] = writable_;
j["encoder"] = encoder_;
return j;
}
void to_json(nlohmann::json& j, const signal& p)
{
j = p.to_json();
}
void from_json(const nlohmann::json& j, signal& p)
{
p.from_json(j);
}
}
|