d6e19441dd1be1f9b9a756ba16f24e23866d3202
[apps/low-level-can-service.git] / CAN-binder / low-can-binding / low-can-binding.cpp
1 /*
2  * Copyright (C) 2015, 2016 "IoT.bzh"
3  * Author "Romain Forlot" <romain.forlot@iot.bzh>
4  * Author "Loic Collignon" <loic.collignon@iot.bzh>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include "low-can-binding.hpp"
20
21 #include <map>
22 #include <queue>
23 #include <mutex>
24 #include <vector>
25 #include <thread>
26 #include <time.h>
27 #include <linux/can.h>
28 #include <json-c/json.h>
29
30 #include "openxc.pb.h"
31 #include "configuration.hpp"
32 #include "can/can-bus.hpp"
33 #include "can/can-signals.hpp"
34 #include "can/can-message.hpp"
35 #include "utils/timer.hpp"
36 #include "utils/signals.hpp"
37 #include "diagnostic/diagnostic-message.hpp"
38 #include "utils/openxc-utils.hpp"
39
40 extern "C"
41 {
42         #include <afb/afb-service-itf.h>
43 };
44
45 // Interface between the daemon and the binding
46 const struct afb_binding_interface *binder_interface;
47
48 void on_no_clients(std::string message)
49 {
50         DiagnosticRequest* diag_req = configuration_t::instance().get_request_from_diagnostic_message(message);
51         if(diag_req != nullptr)
52         {
53                 active_diagnostic_request_t* adr = configuration_t::instance().get_diagnostic_manager().find_recurring_request(diag_req);
54                 if( adr != nullptr)
55                         configuration_t::instance().get_diagnostic_manager().cleanup_request(adr, true);
56         }
57 }
58
59 ///******************************************************************************
60 ///
61 ///             Subscription and unsubscription
62 ///
63 ///*******************************************************************************/
64
65 static int make_subscription_unsubscription(struct afb_req request, const std::string& sig_name, std::map<std::string, struct afb_event>& s, bool subscribe)
66 {
67         /* Make the subscription or unsubscription to the event */
68         if (((subscribe ? afb_req_subscribe : afb_req_unsubscribe)(request, s[sig_name])) < 0)
69         {
70                 ERROR(binder_interface, "%s: Operation goes wrong for signal: %s", __FUNCTION__, sig_name.c_str());
71                 return 0;
72         }
73         return 1;
74 }
75
76 static int create_event_handle(const std::string& sig_name, std::map<std::string, struct afb_event>& s)
77 {
78         s[sig_name] = afb_daemon_make_event(binder_interface->daemon, sig_name.c_str());
79         if (!afb_event_is_valid(s[sig_name]))
80         {
81                 ERROR(binder_interface, "%s: Can't create an event for %s, something goes wrong.", __FUNCTION__, sig_name.c_str());
82                 return 0;
83         }
84         return 1;
85 }
86
87 /// @brief Will determine if it is needed or not to create the event handle and checks it to be sure that
88 /// we got a valid afb_event to get subscribe or unsubscribe. Then launch the subscription or unsubscription
89 /// against the application framework using that event handle.
90 static int subscribe_unsubscribe_signal(struct afb_req request, bool subscribe, const std::string& sig)
91 {
92         int ret;
93
94         utils::signals_manager_t& sm = utils::signals_manager_t::instance();
95
96         std::lock_guard<std::mutex> subscribed_signals_lock(sm.get_subscribed_signals_mutex());
97         std::map<std::string, struct afb_event>& s = sm.get_subscribed_signals();
98         if (s.find(sig) != s.end())
99         {
100                 if (!afb_event_is_valid(s[sig]) && !subscribe)
101                 {
102                         NOTICE(binder_interface, "%s: Event isn't valid, no need to unsubscribed.", __FUNCTION__);
103                         ret = -1;
104                 }
105                 else
106                 {
107                         // Event it isn't valid annymore, recreate it
108                         ret = create_event_handle(sig, s);
109                 }
110         }
111         else
112         {
113                 /* Event doesn't exist , so let's create it */
114                 struct afb_event empty_event = {nullptr, nullptr};
115                 s[sig] = empty_event;
116                 ret = create_event_handle(sig, s);
117         }
118
119         // Check whether or not the event handler has been correctly created and
120         // make the subscription/unsubscription operation is so.
121         if (ret <= 0)
122                 return ret;
123         return make_subscription_unsubscription(request, sig, s, subscribe);
124 }
125
126 ///
127 /// @fn static int subscribe_unsubscribe_signals(struct afb_req request, bool subscribe, const std::vector<can_signal_t>& signals)
128 /// @brief subscribe to all signals in the vector signals
129 ///
130 /// @param[in] afb_req request : contain original request use to subscribe or unsubscribe
131 /// @param[in] subscribe boolean value used to chose between a subscription operation or an unsubscription
132 /// @param[in] can_signal_t  vector with can_signal_t to subscribe
133 ///
134 /// @return Number of correctly subscribed signal
135 ///
136 static int subscribe_unsubscribe_signals(struct afb_req request, bool subscribe, const struct utils::signals_found& signals)
137 {
138         int ret,  rets = 0;
139
140         //TODO: Implement way to dynamically call the right function no matter
141         // how much signals types we have.
142         configuration_t& conf = configuration_t::instance();
143
144         for(const auto& sig : signals.diagnostic_messages)
145         {
146                 DiagnosticRequest* diag_req = conf.get_request_from_diagnostic_message(sig->get_name());
147
148                 // If the requested diagnostic message isn't supported by the car then unssubcribe.
149                 // no matter what we want, worse case will be a fail unsubscription but at least we don't
150                 // poll a PID for nothing.
151                 if(sig->get_supported() && subscribe)
152                 {
153                                 float frequency = sig->get_frequency();
154                                 subscribe = conf.get_diagnostic_manager().add_recurring_request(
155                                         diag_req, sig->get_name().c_str(), false, sig->get_decoder(), sig->get_callback(), (float)frequency);
156                                         //TODO: Adding callback requesting ignition status:     diag_req, sig.c_str(), false, diagnostic_message_t::decode_obd2_response, diagnostic_message_t::check_ignition_status, frequency);
157                 }
158                 else
159                 {
160                         conf.get_diagnostic_manager().cleanup_request(
161                                 conf.get_diagnostic_manager().find_recurring_request(diag_req), true);
162                         WARNING(binder_interface, "%s: signal: %s isn't supported. Canceling operation.", __FUNCTION__, sig->get_name().c_str());
163                         return -1;
164                 }
165
166                 ret = subscribe_unsubscribe_signal(request, subscribe, sig->get_name());
167                 if(ret <= 0)
168                         return ret;
169                 rets++;
170                 DEBUG(binder_interface, "%s: Signal: %s subscribed", __FUNCTION__, sig->get_name().c_str());
171         }
172
173         for(const auto& sig: signals.can_signals)
174         {
175                 ret = subscribe_unsubscribe_signal(request, subscribe, sig->get_name());
176                 if(ret <= 0)
177                         return ret;
178                 rets++;
179                 DEBUG(binder_interface, "%s: signal: %s subscribed", __FUNCTION__, sig->get_name().c_str());
180         }
181         return rets;
182 }
183
184 static const std::vector<std::string> parse_signals_from_request(struct afb_req request, bool subscribe)
185 {
186         int i, n;
187         std::vector<std::string> ret;
188         struct json_object *args, *a, *x;
189
190         /* retrieve signals to subscribe */
191         args = afb_req_json(request);
192         if (args == NULL || !json_object_object_get_ex(args, "event", &a))
193         {
194                 ret.push_back("*");
195         }
196         else if (json_object_get_type(a) != json_type_array)
197         {
198                 ret.push_back(json_object_get_string(a));
199         }
200         else
201         {
202                 n = json_object_array_length(a);
203                 for (i = 0 ; i < n ; i++)
204                 {
205                         x = json_object_array_get_idx(a, i);
206                         ret.push_back(json_object_get_string(x));
207                 }
208         }
209
210         return ret;
211 }
212
213 extern "C"
214 {
215         static void subscribe(struct afb_req request)
216         {
217                 std::vector<std::string> signals;
218                 struct utils::signals_found sf;
219                 int ok = 0, total = 0;
220
221                 signals = parse_signals_from_request(request, true);
222
223                 for(const auto& sig: signals)
224                 {
225                         openxc_DynamicField search_key = build_DynamicField(sig);
226                         sf = utils::signals_manager_t::instance().find_signals(search_key);
227                         total = (int)sf.can_signals.size() + (int)sf.diagnostic_messages.size();
228
229                         if (sf.can_signals.empty() && sf.diagnostic_messages.empty())
230                                 NOTICE(binder_interface, "%s: No signal(s) found for %s.", __FUNCTION__, sig.c_str());
231                         else
232                                 ok = subscribe_unsubscribe_signals(request, subscribe, sf);
233                 }
234
235                 NOTICE(binder_interface, "%s: Subscribed/unsubscribe correctly to %d/%d signal(s).", __FUNCTION__, ok, total);
236                 if (ok)
237                         afb_req_success(request, NULL, NULL);
238                 else
239                         afb_req_fail(request, "error", NULL);
240         }
241
242         static void unsubscribe(struct afb_req request)
243         {
244                 parse_signals_from_request(request, false);
245         }
246
247         static const struct afb_verb_desc_v1 verbs[]=
248         {
249                 { .name= "subscribe",   .session= AFB_SESSION_NONE, .callback= subscribe,       .info= "subscribe to notification of CAN bus messages." },
250                 { .name= "unsubscribe", .session= AFB_SESSION_NONE, .callback= unsubscribe,     .info= "unsubscribe a previous subscription." }
251         };
252
253         static const struct afb_binding binding_desc {
254                 AFB_BINDING_VERSION_1,
255                 {
256                         "Low level CAN bus service",
257                         "low-can",
258                         verbs
259                 }
260         };
261
262         const struct afb_binding *afbBindingV1Register (const struct afb_binding_interface *itf)
263         {
264                 binder_interface = itf;
265
266                 return &binding_desc;
267         }
268
269         /// @brief Initialize the binding.
270         ///
271         /// @param[in] service Structure which represent the Application Framework Binder.
272         ///
273         /// @return Exit code, zero if success.
274         int afbBindingV1ServiceInit(struct afb_service service)
275         {
276                 can_bus_t& can_bus_manager = configuration_t::instance().get_can_bus_manager();
277
278                 /// Initialize CAN socket
279                 if(can_bus_manager.init_can_dev() == 0)
280                 {
281                         can_bus_manager.start_threads();
282
283                         /// Initialize Diagnostic manager that will handle obd2 requests.
284                         /// We pass by default the first CAN bus device to its Initialization.
285                         /// TODO: be able to choose the CAN bus device that will be use as Diagnostic bus.
286                         if(configuration_t::instance().get_diagnostic_manager().initialize())
287                                 return 0;
288                 }
289
290                 ERROR(binder_interface, "%s: There was something wrong with CAN device Initialization. Check your config file maybe", __FUNCTION__);
291                 return 1;
292         }
293 };