-
Notifications
You must be signed in to change notification settings - Fork 4
/
types.cpp
60 lines (53 loc) · 1.66 KB
/
types.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
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 Dimitry Ishenko
// Contact: dimitry (dot) ishenko (at) (gee) mail (dot) com
//
// Distributed under the GNU GPL license. See the LICENSE.md file for details.
////////////////////////////////////////////////////////////////////////////////
#include "firmata/types.hpp"
#include <iterator>
////////////////////////////////////////////////////////////////////////////////
namespace firmata
{
////////////////////////////////////////////////////////////////////////////////
std::string to_string(payload::const_iterator begin, payload::const_iterator end)
{
std::string s;
for(auto ci = begin; ci < std::prev(end); ++ci)
s += char(*ci + (*++ci << 7));
return s;
}
////////////////////////////////////////////////////////////////////////////////
int to_value(payload::const_iterator begin, payload::const_iterator end)
{
// TODO: check for overflow
int value = 0;
for(auto ci = begin; ci < end; ++ci)
value += int(*ci) << (7 * (ci - begin));
return value;
}
////////////////////////////////////////////////////////////////////////////////
payload to_data(const std::string& s)
{
payload data;
for(auto c : s)
{
data.push_back(byte(c) & 0x7f);
data.push_back(byte(c) >> 7);
}
return data;
}
////////////////////////////////////////////////////////////////////////////////
payload to_data(int value)
{
payload data;
do
{
data.push_back(value & 0x7f);
value >>= 7;
}
while(value);
return data;
}
////////////////////////////////////////////////////////////////////////////////
}