Static code review fixes.
[apps/agl-service-can-low-level.git] / CAN-binder / low-can-binding / utils / config-parser.hpp
index 2d50485..3115e9b 100644 (file)
 
 #pragma once
 
-#include <fcntl.h>
-#include <unistd.h>
-#include <sys/ioctl.h>
-#include <json-c/json.h>
-
 #include <string>
 #include <vector>
-#include "INIReader.h"
+#include <utility>
+#include "ini-config.hpp"
 
 namespace utils
 {
@@ -33,13 +29,16 @@ namespace utils
        class config_parser_t
        {
        private:
-               INIReader config_content_; /*!< config_content_ - Parsed content of INI file.*/
+               const std::string filepath_; /*!< filepath_ - Path to the config file*/
+               ini_config config_content_; /*!< config_content_ - Parsed content of INI file.*/
 
        public:
-               config_parser_t(int conf_file);
-               config_parser_t(std::string conf_file);
+               config_parser_t(config_parser_t&&) = default;
+               config_parser_t(const config_parser_t&) = default;
+               explicit config_parser_t(std::string conf_file);
 
+               const std::string& filepath() const;
                bool check_conf();
-               const std::vector<std::string> get_devices_name();
+               const std::vector<std::pair<std::string, std::string> > get_devices_name();
        };
 }