Use same function to open BCM and RAW CAN sockets
[apps/low-level-can-service.git] / CAN-binder / low-can-binding / can / can-bus.cpp
1 /*
2  * Copyright (C) 2015, 2016 "IoT.bzh"
3  * Author "Romain Forlot" <romain.forlot@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <map>
19 #include <cerrno>
20 #include <vector>
21 #include <string>
22 #include <net/if.h>
23 #include <sys/socket.h>
24 #include <json-c/json.h>
25 #include <linux/can/raw.h>
26
27 #include "can-bus.hpp"
28
29 #include "can-signals.hpp"
30 #include "can-decoder.hpp"
31 #include "../configuration.hpp"
32 #include "../utils/signals.hpp"
33 #include "../utils/openxc-utils.hpp"
34
35 extern "C"
36 {
37         #include <afb/afb-binding.h>
38 }
39
40 /// @brief Class constructor
41 ///
42 /// @param[in] conf_file - handle to the json configuration file.
43 can_bus_t::can_bus_t(utils::config_parser_t conf_file)
44         : conf_file_{conf_file}
45 {}
46
47 std::map<std::string, std::shared_ptr<can_bus_dev_t>> can_bus_t::can_devices_;
48
49 /// @brief Will make the decoding operation on a classic CAN message. It will not
50 /// handle CAN commands nor diagnostic messages that have their own method to get
51 /// this happens.
52 ///
53 /// It will add to the vehicle_message queue the decoded message and tell the event push
54 /// thread to process it.
55 ///
56 /// @param[in] can_message - a single CAN message from the CAN socket read, to be decode.
57 ///
58 /// @return How many signals has been decoded.
59 int can_bus_t::process_can_signals(can_message_t& can_message)
60 {
61         int processed_signals = 0;
62         std::vector <can_signal_t*> signals;
63         openxc_DynamicField search_key, decoded_message;
64         openxc_VehicleMessage vehicle_message;
65
66         // First we have to found which can_signal_t it is
67         search_key = build_DynamicField((double)can_message.get_id());
68         configuration_t::instance().find_can_signals(search_key, signals);
69
70         // Decoding the message ! Don't kill the messenger !
71         for(auto& sig : signals)
72         {
73                 std::lock_guard<std::mutex> subscribed_signals_lock(get_subscribed_signals_mutex());
74                 std::map<std::string, struct afb_event>& s = get_subscribed_signals();
75
76                 // DEBUG message to make easier debugger STL containers...
77                 //DEBUG(binder_interface, "Operator[] key char: %s, event valid? %d", sig.generic_name, afb_event_is_valid(s[sig.generic_name]));
78                 //DEBUG(binder_interface, "Operator[] key string: %s, event valid? %d", sig.generic_name, afb_event_is_valid(s[std::string(sig.generic_name)]));
79                 //DEBUG(binder_interface, "Nb elt matched char: %d", (int)s.count(sig.generic_name));
80                 //DEBUG(binder_interface, "Nb elt matched string: %d", (int)s.count(std::string(sig.generic_name));
81                 if( s.find(sig->get_name()) != s.end() && afb_event_is_valid(s[sig->get_name()]))
82                 {
83                         decoded_message = decoder_t::translateSignal(*sig, can_message, configuration_t::instance().get_can_signals());
84
85                         openxc_SimpleMessage s_message = build_SimpleMessage(sig->get_name(), decoded_message);
86                         vehicle_message = build_VehicleMessage(s_message);
87
88                         std::lock_guard<std::mutex> decoded_can_message_lock(decoded_can_message_mutex_);
89                         push_new_vehicle_message(vehicle_message);
90                         processed_signals++;
91                 }
92         }
93
94         DEBUG(binder_interface, "process_can_signals: %d/%d CAN signals processed.", processed_signals, (int)signals.size());
95         return processed_signals;
96 }
97
98 /// @brief Will make the decoding operation on a diagnostic CAN message.Then it find the subscribed signal
99 /// corresponding and will add the vehicle_message to the queue of event to pushed before notifying
100 /// the event push thread to process it.
101 ///
102 /// @param[in] manager - the diagnostic manager object that handle diagnostic communication
103 /// @param[in] can_message - a single CAN message from the CAN socket read, to be decode.
104 ///
105 /// @return How many signals has been decoded.
106 int can_bus_t::process_diagnostic_signals(diagnostic_manager_t& manager, const can_message_t& can_message)
107 {
108         int processed_signals = 0;
109
110         std::lock_guard<std::mutex> subscribed_signals_lock(get_subscribed_signals_mutex());
111         std::map<std::string, struct afb_event>& s = get_subscribed_signals();
112
113         openxc_VehicleMessage vehicle_message = manager.find_and_decode_adr(can_message);
114         if( (vehicle_message.has_simple_message && vehicle_message.simple_message.has_name) &&
115                 (s.find(vehicle_message.simple_message.name) != s.end() && afb_event_is_valid(s[vehicle_message.simple_message.name])))
116         {
117                 std::lock_guard<std::mutex> decoded_can_message_lock(decoded_can_message_mutex_);
118                 push_new_vehicle_message(vehicle_message);
119                 processed_signals++;
120         }
121
122         return processed_signals;
123 }
124
125 /// @brief thread to decoding raw CAN messages.
126 ///
127 ///  Depending on the nature of message, if arbitration ID matches ID for a diagnostic response
128 ///  then decoding a diagnostic message else use classic CAN signals decoding functions.
129 ///
130 /// It will take from the can_message_q_ queue the next can message to process then it search
131 ///  about signal subscribed if there is a valid afb_event for it. We only decode signal for which a
132 ///  subscription has been made. Can message will be decoded using translateSignal that will pass it to the
133 ///  corresponding decoding function if there is one assigned for that signal. If not, it will be the default
134 ///  noopDecoder function that will operate on it.
135 ///
136 ///  TODO: make diagnostic messages parsing optionnal.
137 void can_bus_t::can_decode_message()
138 {
139         can_message_t can_message;
140
141         while(is_decoding_)
142         {
143                 {
144                         std::unique_lock<std::mutex> can_message_lock(can_message_mutex_);
145                         new_can_message_cv_.wait(can_message_lock);
146                         while(!can_message_q_.empty())
147                         {
148                                 can_message = next_can_message();
149
150                                 if(configuration_t::instance().get_diagnostic_manager().is_diagnostic_response(can_message))
151                                         process_diagnostic_signals(configuration_t::instance().get_diagnostic_manager(), can_message);
152                                 else
153                                         process_can_signals(can_message);
154                         }
155                 }
156                 new_decoded_can_message_.notify_one();
157         }
158 }
159
160 /// @brief thread to push events to suscribers. It will read subscribed_signals map to look
161 /// which are events that has to be pushed.
162 void can_bus_t::can_event_push()
163 {
164         openxc_VehicleMessage v_message;
165         openxc_SimpleMessage s_message;
166         json_object* jo;
167
168         while(is_pushing_)
169         {
170                 std::unique_lock<std::mutex> decoded_can_message_lock(decoded_can_message_mutex_);
171                 new_decoded_can_message_.wait(decoded_can_message_lock);
172                 while(!vehicle_message_q_.empty())
173                 {
174                         v_message = next_vehicle_message();
175
176                         s_message = get_simple_message(v_message);
177                         {
178                                 std::lock_guard<std::mutex> subscribed_signals_lock(get_subscribed_signals_mutex());
179                                 std::map<std::string, struct afb_event>& s = get_subscribed_signals();
180                                 if(s.find(std::string(s_message.name)) != s.end() && afb_event_is_valid(s[std::string(s_message.name)]))
181                                 {
182                                         jo = json_object_new_object();
183                                         jsonify_simple(s_message, jo);
184                                         if(afb_event_push(s[std::string(s_message.name)], jo) == 0)
185                                                 on_no_clients(std::string(s_message.name));
186                                 }
187                         }
188                 }
189         }
190 }
191
192 /// @brief Will initialize threads that will decode
193 ///  and push subscribed events.
194 void can_bus_t::start_threads()
195 {
196         is_decoding_ = true;
197         th_decoding_ = std::thread(&can_bus_t::can_decode_message, this);
198         if(!th_decoding_.joinable())
199                 is_decoding_ = false;
200
201         is_pushing_ = true;
202         th_pushing_ = std::thread(&can_bus_t::can_event_push, this);
203         if(!th_pushing_.joinable())
204                 is_pushing_ = false;
205 }
206
207 /// @brief Will stop all threads holded by can_bus_t object
208 ///  which are decoding and pushing then will wait that's
209 /// they'll finish their job.
210 void can_bus_t::stop_threads()
211 {
212         is_decoding_ = false;
213         is_pushing_ = false;
214 }
215
216 /// @brief Will initialize can_bus_dev_t objects after reading
217 /// the configuration file passed in the constructor. All CAN buses
218 /// Initialized here will be added to a vector holding them for
219 /// inventory and later access.
220 ///
221 /// That will initialize CAN socket reading too using a new thread.
222 ///
223 /// @return 0 if ok, other if not.
224 int can_bus_t::init_can_dev()
225 {
226         std::vector<std::string> devices_name;
227         int i = 0;
228         size_t t;
229
230         if(conf_file_.check_conf())
231         {
232                 devices_name = conf_file_.get_devices_name();
233                 if (! devices_name.empty())
234                 {
235                         t = devices_name.size();
236
237                         for(const auto& device : devices_name)
238                         {
239                                 can_bus_t::can_devices_[device] = std::make_shared<can_bus_dev_t>(device, i);
240                                 if (can_bus_t::can_devices_[device]->open(true) >= 0)
241                                 {
242                                         DEBUG(binder_interface, "Start reading thread");
243                                         NOTICE(binder_interface, "%s device opened and reading", device.c_str());
244                                         can_bus_t::can_devices_[device]->start_reading(*this);
245                                         i++;
246                                 }
247                                 else
248                                 {
249                                         ERROR(binder_interface, "Can't open device %s", device.c_str());
250                                         return 1;
251                                 }
252                         }
253                         NOTICE(binder_interface, "Initialized %d/%d can bus device(s)", i, (int)t);
254                         return 0;
255                 }
256                 ERROR(binder_interface, "init_can_dev: Error at CAN device initialization. No devices read from configuration file");
257                 return 1;
258         }
259         ERROR(binder_interface, "init_can_dev: Can't read INI configuration file");
260         return 2;
261 }
262
263 /// @brief return new_can_message_cv_ member
264 ///
265 /// @return  return new_can_message_cv_ member
266 std::condition_variable& can_bus_t::get_new_can_message_cv()
267 {
268         return new_can_message_cv_;
269 }
270
271 /// @brief return can_message_mutex_ member
272 ///
273 /// @return  return can_message_mutex_ member
274 std::mutex& can_bus_t::get_can_message_mutex()
275 {
276         return can_message_mutex_;
277 }
278
279 /// @brief Return first can_message_t on the queue
280 ///
281 /// @return a can_message_t
282 can_message_t can_bus_t::next_can_message()
283 {
284         can_message_t can_msg;
285
286         if(!can_message_q_.empty())
287         {
288                 can_msg = can_message_q_.front();
289                 can_message_q_.pop();
290                 DEBUG(binder_interface, "next_can_message: Here is the next can message : id %X, length %X, data %02X%02X%02X%02X%02X%02X%02X%02X", can_msg.get_id(), can_msg.get_length(),
291                         can_msg.get_data()[0], can_msg.get_data()[1], can_msg.get_data()[2], can_msg.get_data()[3], can_msg.get_data()[4], can_msg.get_data()[5], can_msg.get_data()[6], can_msg.get_data()[7]);
292                 return can_msg;
293         }
294
295         return can_msg;
296 }
297
298 /// @brief Push a can_message_t into the queue
299 ///
300 /// @param[in] can_msg - the const reference can_message_t object to push into the queue
301 void can_bus_t::push_new_can_message(const can_message_t& can_msg)
302 {
303         can_message_q_.push(can_msg);
304 }
305
306 /// @brief Return first openxc_VehicleMessage on the queue
307 ///
308 /// @return a openxc_VehicleMessage containing a decoded can message
309 openxc_VehicleMessage can_bus_t::next_vehicle_message()
310 {
311         openxc_VehicleMessage v_msg;
312
313         if(! vehicle_message_q_.empty())
314         {
315                 v_msg = vehicle_message_q_.front();
316                 vehicle_message_q_.pop();
317                 DEBUG(binder_interface, "next_vehicle_message: next vehicle message poped");
318                 return v_msg;
319         }
320
321         return v_msg;
322 }
323
324 /// @brief Push a openxc_VehicleMessage into the queue
325 ///
326 /// @param[in] v_msg - const reference openxc_VehicleMessage object to push into the queue
327 void can_bus_t::push_new_vehicle_message(const openxc_VehicleMessage& v_msg)
328 {
329         vehicle_message_q_.push(v_msg);
330 }
331
332 /// @brief Return a map with the can_bus_dev_t initialized
333 ///
334 /// @return map can_bus_dev_m_ map
335 const std::map<std::string, std::shared_ptr<can_bus_dev_t>>& can_bus_t::get_can_devices() const
336 {
337         return can_bus_t::can_devices_;
338 }
339
340 /// @brief Return the shared pointer on the can_bus_dev_t initialized 
341 /// with device_name "bus"
342 ///
343 /// @param[in] bus - CAN bus device name to retrieve.
344 ///
345 /// @return A shared pointer on an object can_bus_dev_t
346 std::shared_ptr<can_bus_dev_t> can_bus_t::get_can_device(std::string bus)
347 {
348         return can_bus_t::can_devices_[bus];
349 }