forked from roboticslab-uc3m/yarp-devices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCanBusHico.cpp
145 lines (119 loc) · 3.26 KB
/
CanBusHico.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
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
#include "CanBusHico.hpp"
#include <sys/select.h>
#include <sys/time.h>
#include <cstring>
#include <cerrno>
#include <cassert>
#include <map>
#include <stdexcept>
#include <yarp/os/LogStream.h>
#include "LogComponent.hpp"
using namespace roboticslab;
// -----------------------------------------------------------------------------
namespace
{
void setTimeval(int timeMs, struct timeval * tv)
{
tv->tv_sec = timeMs / 1000;
tv->tv_usec = (timeMs % 1000) * 1000;
}
const std::map<unsigned int, unsigned int> idToBitrateMap {
{BITRATE_10k, 10000},
{BITRATE_20k, 20000},
{BITRATE_50k, 50000},
{BITRATE_100k, 100000},
{BITRATE_125k, 125000},
{BITRATE_250k, 250000},
{BITRATE_500k, 500000},
{BITRATE_800k, 800000},
{BITRATE_1000k, 1000000}
};
}
// -----------------------------------------------------------------------------
bool CanBusHico::waitUntilTimeout(io_operation op, bool * bufferReady)
{
fd_set fds;
FD_ZERO(&fds);
FD_SET(fileDescriptor, &fds);
struct timeval tv;
//-- select() returns the number of ready descriptors, 0 for timeout, -1 for errors.
int ret;
switch (op)
{
case READ:
setTimeval(rxTimeoutMs, &tv);
ret = ::select(fileDescriptor + 1, &fds, 0, 0, &tv);
break;
case WRITE:
setTimeval(txTimeoutMs, &tv);
ret = ::select(fileDescriptor + 1, 0, &fds, 0, &tv);
break;
default:
yCIError(HICO, id(), "Unhandled IO operation on select()");
return false;
}
if (ret < 0)
{
yCIError(HICO, id(), "select() error: %s", std::strerror(errno));
return false;
}
else if (ret == 0)
{
*bufferReady = false;
}
else
{
assert(FD_ISSET(fileDescriptor, &fds));
*bufferReady = true;
}
return true;
}
// -----------------------------------------------------------------------------
bool CanBusHico::bitrateToId(unsigned int bitrate, unsigned int * id)
{
for (const auto & [_id, _bitrate] : idToBitrateMap)
{
if (_bitrate == bitrate)
{
*id = _id;
return true;
}
}
return false;
}
// -----------------------------------------------------------------------------
bool CanBusHico::idToBitrate(unsigned int id, unsigned int * bitrate)
{
try
{
*bitrate = idToBitrateMap.at(id);
return true;
}
catch (const std::out_of_range & exception)
{
return false;
}
}
// -----------------------------------------------------------------------------
CanBusHico::FilterManager::filter_config CanBusHico::parseFilterConfiguration(const std::string & str)
{
if (str == "disabled")
{
return FilterManager::DISABLED;
}
else if (str == "noRange")
{
return FilterManager::NO_RANGE;
}
else if (str == "maskAndRange")
{
return FilterManager::MASK_AND_RANGE;
}
else
{
yCIWarning(HICO, id()) << "Unrecognized filter configuration, setting DISABLED:" << str;
return FilterManager::DISABLED;
}
}
// -----------------------------------------------------------------------------