bc421e96f1e055345bf4c94552eb579b06815811
[apps/agl-service-can-low-level.git] / src / 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 "can/can-signals.hpp"
26 #include "obd2/obd2-signals.hpp"
27
28 template <typename T>
29 void lookup_signals_by_name(const std::string& key, std::vector<T>& signals, std::vector<T*>& found_signals)
30 {
31         for(T& s : signals)
32         {
33                 if(::fnmatch(key.c_str(), s.generic_name, FNM_CASEFOLD) == 0)
34                         found_signals.push_back(&s);
35         }
36 }
37
38 template <typename T>
39 void lookup_signals_by_name(const std::string& key, std::vector<T>& signals, std::vector<std::string>& found_signals_name)
40 {
41         for(const T& s : signals)
42         {
43                 if(::fnmatch(key.c_str(), s.generic_name, FNM_CASEFOLD) == 0)
44                         found_signals_name.push_back(s.generic_name);
45         }
46 }
47
48 template <typename T>
49 void lookup_signals_by_id(const double key, std::vector<T>& signals, std::vector<T*>& found_signals)
50 {
51         for(T& s : signals)
52         {
53                 if(get_signal_id(s) == key)
54                 {
55                         found_signals.push_back(&s);
56                 }
57         }
58 }
59
60 template <typename T>
61 void lookup_signals_by_id(const double key, std::vector<T>& signals, std::vector<std::string>& found_signals_name)
62 {
63         for(T& s : signals)
64         {
65                 if(get_signal_id(s) == key)
66                 {
67                         found_signals_name.push_back(s.generic_name);
68                 }
69         }
70 }
71
72 std::vector<std::string> find_signals(const openxc_DynamicField &key);