This repository has been archived by the owner on Jan 31, 2022. It is now read-only.
forked from uwcms/APx-rpcsvc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
wiscRPCMsg.cpp
248 lines (216 loc) · 6.39 KB
/
wiscRPCMsg.cpp
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#include "wiscRPCMsg.h"
#include "proto_cpp/rpcmsg.pb.h"
#include <string.h>
#include <arpa/inet.h>
#undef RPCMSG_DEBUG
#ifdef RPCMSG_DEBUG
#include <stdio.h>
#define dprintf(...) do { printf(__VA_ARGS__); fflush(stdout); } while(0)
#else
#define dprintf(...)
#endif
using namespace wisc;
const char RPCMsg::key_characters[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._";
RPCMsg::RPCMsg()
{
this->buf = new RPCMsgProto::RPCMsg();
}
RPCMsg::RPCMsg(std::string method_name)
{
this->buf = new RPCMsgProto::RPCMsg();
this->set_method(method_name);
}
RPCMsg::RPCMsg(void *export_data, uint32_t datalen)
{
this->buf = new RPCMsgProto::RPCMsg();
this->buf->ParseFromArray(export_data, datalen);
}
RPCMsg::RPCMsg(const RPCMsg &msg)
{
this->buf = new RPCMsgProto::RPCMsg();
this->buf->CopyFrom(*msg.buf);
//this->buf->ParseFromString(msg.buf->SerializeAsString());
}
RPCMsg& RPCMsg::operator=(const RPCMsg &other)
{
delete this->buf;
this->buf = new RPCMsgProto::RPCMsg();
this->buf->CopyFrom(*other.buf);
//this->buf->ParseFromString(other.buf->SerializeAsString());
return *this;
}
RPCMsg::~RPCMsg()
{
delete this->buf;
}
std::string RPCMsg::serialize() const
{
return this->buf->SerializeAsString();
}
std::string RPCMsg::get_method() const
{
//if (!this->buf->has_method())
// throw BadKeyException("__method__");
return this->buf->method();
}
RPCMsg& RPCMsg::set_method(std::string value)
{
this->buf->set_method(value);
return *this;
}
bool RPCMsg::get_key_exists(std::string key) const
{
for (int i = 0; i < this->buf->string_fields_size(); ++i)
if (key == this->buf->string_fields(i).name())
return true;
for (int i = 0; i < this->buf->word_fields_size(); ++i)
if (key == this->buf->word_fields(i).name())
return true;
for (int i = 0; i < this->buf->stringarray_fields_size(); ++i)
if (key == this->buf->stringarray_fields(i).name())
return true;
for (int i = 0; i < this->buf->wordarray_fields_size(); ++i)
if (key == this->buf->wordarray_fields(i).name())
return true;
return false;
}
std::string RPCMsg::get_string(std::string key) const
{
for (int i = 0; i < this->buf->string_fields_size(); ++i)
if (key == this->buf->string_fields(i).name())
return this->buf->string_fields(i).value();
throw BadKeyException(key);
}
RPCMsg& RPCMsg::set_string(std::string key, std::string value)
{
for (int i = 0; i < this->buf->string_fields_size(); ++i) {
if (key == this->buf->string_fields(i).name()) {
this->buf->mutable_string_fields(i)->set_value(value);
return *this;
}
}
RPCMsgProto::RPCString *field = this->buf->add_string_fields();
field->set_name(key);
field->set_value(value);
return *this;
}
uint32_t RPCMsg::get_string_array_size(std::string key) const
{
for (int i = 0; i < this->buf->stringarray_fields_size(); ++i)
if (key == this->buf->stringarray_fields(i).name())
return this->buf->stringarray_fields(i).value_size();
throw BadKeyException(key);
}
std::vector<std::string> RPCMsg::get_string_array(std::string key) const
{
for (int i = 0; i < this->buf->stringarray_fields_size(); ++i) {
const RPCMsgProto::RPCStringArray &arr = this->buf->stringarray_fields(i);
if (key == arr.name()) {
std::vector<std::string> out;
for (int i = 0; i < arr.value_size(); ++i)
out.push_back(arr.value(i));
return out;
}
}
throw BadKeyException(key);
}
RPCMsg& RPCMsg::set_string_array(std::string key, std::vector<std::string> value)
{
RPCMsgProto::RPCStringArray *arr = NULL;
for (int i = 0; i < this->buf->stringarray_fields_size(); i++) {
if (key == this->buf->stringarray_fields(i).name()) {
arr = this->buf->mutable_stringarray_fields(i);
break;
}
}
if (!arr)
arr = this->buf->add_stringarray_fields();
arr->Clear();
arr->set_name(key);
for (unsigned int i = 0; i < value.size(); ++i)
arr->add_value(value[i]);
return *this;
}
uint32_t RPCMsg::get_word(std::string key) const
{
for (int i = 0; i < this->buf->word_fields_size(); i++)
if (key == this->buf->word_fields(i).name())
return this->buf->word_fields(i).value();
throw BadKeyException(key);
}
RPCMsg& RPCMsg::set_word(std::string key, uint32_t value)
{
for (int i = 0; i < this->buf->word_fields_size(); ++i) {
if (key == this->buf->word_fields(i).name()) {
this->buf->mutable_word_fields(i)->set_value(value);
return *this;
}
}
RPCMsgProto::RPCWord *field = this->buf->add_word_fields();
field->set_name(key);
field->set_value(value);
return *this;
}
uint32_t RPCMsg::get_word_array_size(std::string key) const
{
for (int i = 0; i < this->buf->wordarray_fields_size(); ++i)
if (key == this->buf->wordarray_fields(i).name())
return this->buf->wordarray_fields(i).value_size();
throw BadKeyException(key);
}
void RPCMsg::get_word_array(std::string key, uint32_t *data) const
{
std::vector<uint32_t> arr = this->get_word_array(key);
for (unsigned int i = 0; i < arr.size(); ++i)
data[i] = arr[i];
}
RPCMsg& RPCMsg::set_word_array(std::string key, uint32_t *data, int count)
{
return this->set_word_array(key, std::vector<uint32_t>(data, data+count));
}
std::vector<uint32_t> RPCMsg::get_word_array(std::string key) const
{
for (int i = 0; i < this->buf->wordarray_fields_size(); ++i) {
const RPCMsgProto::RPCWordArray &arr = this->buf->wordarray_fields(i);
if (key == arr.name()) {
std::vector<uint32_t> out;
for (int i = 0; i < arr.value_size(); ++i)
out.push_back(arr.value(i));
return out;
}
}
throw BadKeyException(key);
}
RPCMsg& RPCMsg::set_word_array(std::string key, const std::vector<uint32_t> &data)
{
RPCMsgProto::RPCWordArray *arr = NULL;
for (int i = 0; i < this->buf->wordarray_fields_size(); i++) {
if (key == this->buf->wordarray_fields(i).name()) {
arr = this->buf->mutable_wordarray_fields(i);
break;
}
}
if (!arr)
arr = this->buf->add_wordarray_fields();
arr->Clear();
arr->set_name(key);
for (unsigned int i = 0; i < data.size(); ++i)
arr->add_value(data[i]);
return *this;
}
uint32_t RPCMsg::get_binarydata_size(std::string key) const
{
return this->get_string(key).size();
}
void RPCMsg::get_binarydata(std::string key, void *data, uint32_t bufsize) const
{
std::string value = this->get_string(key);
if (bufsize < value.size())
throw BufferTooSmallException();
value.copy(reinterpret_cast<char*>(data), value.size());
}
RPCMsg& RPCMsg::set_binarydata(std::string key, const void *data, uint32_t bufsize)
{
this->set_string(key, std::string(reinterpret_cast<const char*>(data), bufsize));
return *this;
}