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