84e81d03628b4b3751a08c76fb8e8b8dd207ffbd
[apps/agl-service-can-low-level.git] / low-can-binding / utils / signals.hpp
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 #pragma once
19
20 #include <vector>
21 #include <string>
22 #include <fnmatch.h>
23
24 #include "openxc.pb.h"
25 #include "../binding/application.hpp"
26 #include "../can/signals.hpp"
27 #include "../diagnostic/diagnostic-message.hpp"
28
29 #include "../binding/low-can-subscription.hpp"
30
31 namespace utils
32 {
33         struct signals_found
34         {
35                 std::vector<std::shared_ptr<signal_t> > signals;
36                 std::vector<std::shared_ptr<diagnostic_message_t> > diagnostic_messages;
37         };
38
39         /// @brief Signal manager singleton hold subscription object with attached afb_event_t and its mutex
40         /// to read and write it safely.
41         /// It can be used to browse CAN signals and Diagnostic messages vectors and find a particular signal to
42         /// subscribe to.
43         class signals_manager_t
44         {
45         private:
46                 std::mutex subscribed_signals_mutex_;
47                 std::map<int, std::shared_ptr<low_can_subscription_t> > subscribed_signals_; ///< Map containing all subscribed signals, key is the socket int value.
48
49                 signals_manager_t(); ///< Private constructor to make singleton class.
50
51         public:
52                 static signals_manager_t& instance();
53
54                 std::mutex& get_subscribed_signals_mutex();
55                 std::map<int, std::shared_ptr<low_can_subscription_t> >& get_subscribed_signals();
56
57                 struct signals_found find_signals(const openxc_DynamicField &key);
58                 void find_diagnostic_messages(const openxc_DynamicField &key, std::vector<std::shared_ptr<diagnostic_message_t> >& found_signals);
59                 void find_signals(const openxc_DynamicField &key, std::vector<std::shared_ptr<signal_t> >& found_signals);
60
61                 template <typename T>
62                 void lookup_signals_by_name(const std::string& key, std::vector<std::shared_ptr<T> > signals, std::vector<std::shared_ptr<T> >& found_signals)
63                 {
64                         for(std::shared_ptr<T> s : signals)
65                         {
66                                 if(::fnmatch(key.c_str(), s->get_generic_name().c_str(), FNM_CASEFOLD) == 0)
67                                         found_signals.push_back(s);
68                                 else if(::fnmatch(key.c_str(), s->get_name().c_str(), FNM_CASEFOLD) == 0)
69                                         found_signals.push_back(s);
70                         }
71                 }
72
73                 template <typename T>
74                 void lookup_signals_by_id(const double key, std::vector<std::shared_ptr<T> > signals, std::vector<std::shared_ptr<T> >& found_signals)
75                 {
76                         for(std::shared_ptr<T> s : signals)
77                         {
78                                 if(application_t::instance().get_signal_id(*s) == key)
79                                 {
80                                         found_signals.push_back(s);
81                                 }
82                         }
83                 }
84         };
85 }