Fix: use of new objects and type conversion missing.
[apps/agl-service-can-low-level.git] / src / utils / signals.hpp
index bc421e9..fe86953 100644 (file)
 #include <fnmatch.h>
 
 #include "openxc.pb.h"
-#include "can/can-signals.hpp"
-#include "obd2/obd2-signals.hpp"
+#include "../configuration.hpp"
+#include "../can/can-signals.hpp"
+#include "../obd2/obd2-signals.hpp"
+
+#include "../low-can-binding.hpp"
+
+extern std::mutex subscribed_signals_mutex;
+std::mutex& get_subscribed_signals_mutex();
+
+/**
+ * @brief return the subscribed_signals map.
+ * 
+ * return Map of subscribed signals.
+ */
+extern std::map<std::string, struct afb_event> subscribed_signals;
+std::map<std::string, struct afb_event>& get_subscribed_signals();
 
 template <typename T>
 void lookup_signals_by_name(const std::string& key, std::vector<T>& signals, std::vector<T*>& found_signals)
 {
        for(T& s : signals)
        {
-               if(::fnmatch(key.c_str(), s.generic_name, FNM_CASEFOLD) == 0)
+               if(::fnmatch(key.c_str(), s.get_generic_name().c_str(), FNM_CASEFOLD) == 0)
                        found_signals.push_back(&s);
        }
 }
@@ -38,10 +52,10 @@ void lookup_signals_by_name(const std::string& key, std::vector<T>& signals, std
 template <typename T>
 void lookup_signals_by_name(const std::string& key, std::vector<T>& signals, std::vector<std::string>& found_signals_name)
 {
-       for(const T& s : signals)
+       for(T& s : signals)
        {
-               if(::fnmatch(key.c_str(), s.generic_name, FNM_CASEFOLD) == 0)
-                       found_signals_name.push_back(s.generic_name);
+               if(::fnmatch(key.c_str(), s.get_generic_name().c_str(), FNM_CASEFOLD) == 0)
+                       found_signals_name.push_back(s.get_generic_name());
        }
 }
 
@@ -50,7 +64,7 @@ void lookup_signals_by_id(const double key, std::vector<T>& signals, std::vector
 {
        for(T& s : signals)
        {
-               if(get_signal_id(s) == key)
+               if(config->get_signal_id(s) == key)
                {
                        found_signals.push_back(&s);
                }
@@ -62,9 +76,9 @@ void lookup_signals_by_id(const double key, std::vector<T>& signals, std::vector
 {
        for(T& s : signals)
        {
-               if(get_signal_id(s) == key)
+               if(config->get_signal_id(s) == key)
                {
-                       found_signals_name.push_back(s.generic_name);
+                       found_signals_name.push_back(s.get_generic_name());
                }
        }
 }