Rev 1989 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1594 | runge | 1 | /* |
| 2 | * |
||
| 3 | * Copyright (C) 2010 Mattias Runge |
||
| 4 | * |
||
| 5 | * This program is free software; you can redistribute it and/or modify |
||
| 6 | * it under the terms of the GNU General Public License as published by |
||
| 7 | * the Free Software Foundation; either version 2 of the License, or |
||
| 8 | * (at your option) any later version. |
||
| 9 | * |
||
| 10 | * This program is distributed in the hope that it will be useful, |
||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 13 | * GNU General Public License for more details. |
||
| 14 | * |
||
| 15 | * You should have received a copy of the GNU General Public License along |
||
| 16 | * with this program; if not, write to the Free Software Foundation, Inc., |
||
| 17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
||
| 18 | * |
||
| 19 | */ |
||
| 20 | |||
| 21 | #include "Manager.h" |
||
| 22 | |||
| 23 | #include <iostream> |
||
| 24 | #include <fstream> |
||
| 25 | |||
| 26 | #include <boost/filesystem.hpp> |
||
| 27 | |||
| 1961 | runge | 28 | #include "common/log.h" |
| 29 | |||
| 1594 | runge | 30 | namespace atom { |
| 31 | namespace config { |
||
| 32 | |||
| 1961 | runge | 33 | static const std::string log_module_ = "config"; |
| 1599 | runge | 34 | Manager::Pointer Manager::instance_; |
| 1594 | runge | 35 | |
| 36 | Manager::Manager() : command_line_("Command line options"), configuration_file_("Configuration file options") |
||
| 37 | { |
||
| 1961 | runge | 38 | std::string default_config_file = "/etc/atom/atom.conf"; |
| 39 | |||
| 40 | if (!boost::filesystem::exists(default_config_file)) |
||
| 41 | { |
||
| 42 | default_config_file = "atom.conf"; |
||
| 43 | } |
||
| 1594 | runge | 44 | |
| 1961 | runge | 45 | this->configuration_file_.add_options() |
| 46 | ("MonitorPort", boost::program_options::value<int>()->default_value(1201), "TCP port to open for monitor output") |
||
| 47 | ("CommandPort", boost::program_options::value<int>()->default_value(1202), "TCP port to open for command input") |
||
| 2107 | runge | 48 | ("JsPipePort", boost::program_options::value<int>()->default_value(1203), "TCP port to open for the JsPipe") |
| 1961 | runge | 49 | ("DaemonPort", boost::program_options::value<int>()->default_value(1200), "TCP port to open for canDaemon input/output") |
| 50 | ("MbbPort", boost::program_options::value<int>()->default_value(1212), "TCP port to open for MBB clients") |
||
| 51 | ("LogFile", boost::program_options::value<std::string>(), "File to log output to") |
||
| 52 | ("LogLevel", boost::program_options::value<int>()->default_value(4), "Level of logging") |
||
| 53 | ("LogLevelMask", boost::program_options::value<std::string>(), "Level of logging") |
||
| 54 | ("ScriptPath", boost::program_options::value<std::string>(), "Path to where the scripts are") |
||
| 55 | ("UserScriptPath",boost::program_options::value<std::string>(), "Path to where the user scripts are") |
||
| 56 | ("StoragePath", boost::program_options::value<std::string>(), "Path to where the storage files are") |
||
| 57 | ("ProtocolFile", boost::program_options::value<std::string>(), "File to read the protocol form") |
||
| 58 | ("CanNet", boost::program_options::value<common::StringList>(), "Information on where to locate the CAN networks") |
||
| 59 | ("Legacy", "Start legacy VM environment"); |
||
| 1594 | runge | 60 | |
| 1961 | runge | 61 | this->command_line_.add_options() |
| 62 | ("help,h", "produce help message") |
||
| 63 | ("daemon,d", "start in daemon mode") |
||
| 64 | ("file,f", boost::program_options::value<std::string>()->default_value(default_config_file), "configuration file"); |
||
| 65 | |||
| 66 | this->command_line_.add(this->configuration_file_); |
||
| 1594 | runge | 67 | } |
| 68 | |||
| 69 | Manager::~Manager() |
||
| 70 | { |
||
| 71 | } |
||
| 72 | |||
| 73 | Manager::Pointer Manager::Instance() |
||
| 74 | { |
||
| 1961 | runge | 75 | return Manager::instance_; |
| 1594 | runge | 76 | } |
| 77 | |||
| 1599 | runge | 78 | void Manager::Create() |
| 79 | { |
||
| 1961 | runge | 80 | Manager::instance_ = Manager::Pointer(new Manager()); |
| 1599 | runge | 81 | } |
| 82 | |||
| 1594 | runge | 83 | void Manager::Delete() |
| 84 | { |
||
| 1961 | runge | 85 | Manager::instance_.reset(); |
| 1594 | runge | 86 | } |
| 87 | |||
| 88 | bool Manager::Set(int argument_count, char** argument_vector) |
||
| 89 | { |
||
| 1961 | runge | 90 | try |
| 91 | { |
||
| 92 | boost::program_options::store(boost::program_options::command_line_parser(argument_count, argument_vector).options(this->command_line_).run(), this->variable_map_); |
||
| 93 | } |
||
| 94 | catch (boost::program_options::unknown_option e) |
||
| 95 | { |
||
| 96 | log::Error(log_module_, e.what()); |
||
| 97 | std::cout << this->command_line_ << std::endl; |
||
| 98 | return false; |
||
| 99 | } |
||
| 100 | catch (boost::program_options::invalid_syntax e) |
||
| 101 | { |
||
| 102 | log::Error(log_module_, e.what()); |
||
| 103 | std::cout << this->command_line_ << std::endl; |
||
| 104 | return false; |
||
| 105 | } |
||
| 106 | |||
| 107 | std::ifstream ifs(this->GetAsString("file").data()); |
||
| 108 | |||
| 109 | if (!ifs.is_open()) |
||
| 110 | { |
||
| 111 | log::Error(log_module_, "Could not find %s!", this->GetAsString("file").c_str()); |
||
| 112 | return false; |
||
| 113 | } |
||
| 114 | |||
| 115 | try |
||
| 116 | { |
||
| 117 | boost::program_options::store(boost::program_options::parse_config_file(ifs, this->configuration_file_), this->variable_map_); |
||
| 118 | } |
||
| 119 | catch (boost::program_options::unknown_option e) |
||
| 120 | { |
||
| 121 | ifs.close(); |
||
| 122 | log::Error(log_module_, e.what()); |
||
| 123 | std::cout << this->configuration_file_ << std::endl; |
||
| 124 | return false; |
||
| 125 | } |
||
| 126 | catch (boost::program_options::invalid_syntax e) |
||
| 127 | { |
||
| 128 | log::Error(log_module_, "%s found in %s!", e.what(), this->GetAsString("file").c_str()); |
||
| 129 | std::cout << this->command_line_ << std::endl; |
||
| 130 | return false; |
||
| 131 | } |
||
| 132 | |||
| 133 | ifs.close(); |
||
| 134 | |||
| 135 | if (this->Exist("help")) |
||
| 136 | { |
||
| 137 | std::cout << this->command_line_ << std::endl; |
||
| 138 | return false; |
||
| 139 | } |
||
| 140 | |||
| 1989 | runge | 141 | log::Info(log_module_, "Using %s as configuration file.", this->GetAsString("file").c_str()); |
| 1961 | runge | 142 | |
| 143 | return true; |
||
| 1594 | runge | 144 | } |
| 145 | |||
| 146 | bool Manager::Exist(std::string name) |
||
| 147 | { |
||
| 1961 | runge | 148 | return this->variable_map_.count(name) != 0; |
| 1594 | runge | 149 | } |
| 150 | |||
| 151 | int Manager::GetAsInt(std::string name) |
||
| 152 | { |
||
| 1961 | runge | 153 | return this->variable_map_[name].as<int>(); |
| 1594 | runge | 154 | } |
| 155 | |||
| 156 | std::string Manager::GetAsString(std::string name) |
||
| 157 | { |
||
| 1961 | runge | 158 | return this->variable_map_[name].as<std::string>(); |
| 1594 | runge | 159 | } |
| 160 | |||
| 1642 | runge | 161 | common::StringList Manager::GetAsStringVector(std::string name) |
| 1594 | runge | 162 | { |
| 1961 | runge | 163 | return this->variable_map_[name].as<common::StringList>(); |
| 1594 | runge | 164 | } |
| 165 | |||
| 166 | |||
| 167 | }; // namespace config |
||
| 1675 | arune | 168 | }; // namespace atom |