Change way to check prefix of signals name.
[apps/agl-service-can-low-level.git] / src / diagnostic / active-diagnostic-request.cpp
index 7a43a0d..762cb61 100644 (file)
  * limitations under the License.
  */
 
+#include <fnmatch.h>
+
 #include "active-diagnostic-request.hpp"
 
+std::string active_diagnostic_request_t::prefix_ = "diagnostic_messages";
+
 bool active_diagnostic_request_t::operator==(const active_diagnostic_request_t& b)
 {
        return (bus_ == b.bus_ && id_ == b.id_ && handle_ == b.handle_) ? true : false;
@@ -72,6 +76,26 @@ DiagnosticRequestHandle* active_diagnostic_request_t::get_handle()
        return handle_;
 }
 
+std::string& active_diagnostic_request_t::get_name()
+{
+       return name_;
+}
+
+std::string& active_diagnostic_request_t::get_prefix()
+{
+       return active_diagnostic_request_t::prefix_;
+}
+
+DiagnosticResponseDecoder& active_diagnostic_request_t::get_decoder()
+{
+       return decoder_;
+}
+
+DiagnosticResponseCallback& active_diagnostic_request_t::get_callback()
+{
+       return callback_;
+}
+
 bool active_diagnostic_request_t::get_recurring() const
 {
        return recurring_;
@@ -102,6 +126,19 @@ void active_diagnostic_request_t::set_in_flight(bool val)
        in_flight_ = val;
 }
 
+/**
+* @brief Check if requested signal name is an obd2 pid
+* 
+* @return true if name began with obd2 else false.
+*/
+bool active_diagnostic_request_t::is_diagnostic_signal(const std::string& name)
+{
+       const std::string p = active_diagnostic_request_t::prefix_ + "*";
+       if(::fnmatch(p.c_str(), name.c_str(), FNM_CASEFOLD) == 0)
+               return true;
+       return false;
+}
+
 bool active_diagnostic_request_t::should_send()
 {
        return !get_in_flight() && (