[89] | 1 | // %pacpus:license{
|
---|
| 2 | // This file is part of the PACPUS framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
| 4 | // %pacpus:license}
|
---|
| 5 | /// @version $Id: ComponentBase.cpp 76 2013-01-10 17:05:10Z kurdejma $
|
---|
| 6 |
|
---|
| 7 | #include <Pacpus/kernel/ComponentBase.h>
|
---|
[182] | 8 |
|
---|
[89] | 9 | #include <Pacpus/kernel/ComponentManager.h>
|
---|
| 10 | #include <Pacpus/kernel/Log.h>
|
---|
[201] | 11 | #include <Pacpus/kernel/PacpusException.h>
|
---|
[89] | 12 |
|
---|
[281] | 13 | #include <boost/bind/bind.hpp>
|
---|
| 14 | #include <boost/exception/detail/exception_ptr.hpp>
|
---|
| 15 | #include <boost/exception/diagnostic_information.hpp>
|
---|
| 16 | #include <boost/exception/exception.hpp>
|
---|
[176] | 17 | #include <boost/program_options/parsers.hpp>
|
---|
| 18 | #include <boost/program_options/variables_map.hpp>
|
---|
[202] | 19 | #include <ostream>
|
---|
[176] | 20 | #include <string>
|
---|
| 21 | #include <vector>
|
---|
| 22 |
|
---|
| 23 | namespace po = boost::program_options;
|
---|
[89] | 24 | using namespace pacpus;
|
---|
[176] | 25 | using namespace std;
|
---|
[89] | 26 |
|
---|
[292] | 27 | //vector<string> convertAttributesToArgumentVector(QDomNamedNodeMap const& attributes);
|
---|
[176] | 28 |
|
---|
[272] | 29 | namespace std
|
---|
| 30 | {
|
---|
[202] | 31 |
|
---|
| 32 | template <typename _Elem, typename _Traits>
|
---|
[292] | 33 | std::basic_ostream<_Elem, _Traits>& operator<<(std::basic_ostream<_Elem, _Traits>& os, boost::program_options::variables_map const& vm)
|
---|
[202] | 34 | {
|
---|
[231] | 35 | for (po::variables_map::const_iterator i = vm.begin(); i != vm.end(); ++i) {
|
---|
[202] | 36 | const po::variable_value & v = i->second;
|
---|
| 37 | if (v.empty()) {
|
---|
| 38 | continue;
|
---|
| 39 | }
|
---|
| 40 | const type_info & type = v.value().type();
|
---|
| 41 | if (type == typeid(string)) {
|
---|
| 42 | const string & val = v.as<string>();
|
---|
| 43 | os << i->first << "=" << val;
|
---|
| 44 | } else if (type == typeid(long)) {
|
---|
| 45 | int val = v.as<long>();
|
---|
| 46 | os << i->first << "=" << val;
|
---|
| 47 | } else if (type == typeid(int)) {
|
---|
| 48 | int val = v.as<int>();
|
---|
| 49 | os << i->first << "=" << val;
|
---|
| 50 | } else if (type == typeid(unsigned long)) {
|
---|
| 51 | int val = v.as<unsigned long>();
|
---|
| 52 | os << i->first << "=" << val;
|
---|
| 53 | } else if (type == typeid(unsigned int)) {
|
---|
| 54 | int val = v.as<unsigned int>();
|
---|
| 55 | os << i->first << "=" << val;
|
---|
| 56 | } else if (type == typeid(double)) {
|
---|
| 57 | int val = v.as<double>();
|
---|
| 58 | os << i->first << "=" << val;
|
---|
| 59 | } else if (type == typeid(float)) {
|
---|
| 60 | int val = v.as<float>();
|
---|
| 61 | os << i->first << "=" << val;
|
---|
| 62 | } else if (type == typeid(bool)) {
|
---|
| 63 | int val = v.as<bool>();
|
---|
| 64 | os << i->first << "=" << val;
|
---|
[263] | 65 | } else {
|
---|
| 66 | // unknown value type
|
---|
| 67 | os << i->first;
|
---|
| 68 | }
|
---|
[204] | 69 | os << "\n";
|
---|
[202] | 70 | }
|
---|
| 71 | return os;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | } // namespace std
|
---|
| 75 |
|
---|
[89] | 76 | DECLARE_STATIC_LOGGER("pacpus.core.ComponentBase");
|
---|
| 77 |
|
---|
[288] | 78 | ComponentBase::ComponentBase(QString const& componentName)
|
---|
[182] | 79 | : m_componentName(componentName)
|
---|
| 80 | , m_isActive(false)
|
---|
| 81 | , mIsRecording(true)
|
---|
| 82 | , m_manager(NULL)
|
---|
| 83 | , m_ui(NULL)
|
---|
| 84 | , m_componentState(NOT_MONITORED)
|
---|
| 85 | , mOptionsDescription("Component parameters")
|
---|
[89] | 86 | {
|
---|
| 87 | LOG_TRACE("constructor");
|
---|
[292] | 88 |
|
---|
[89] | 89 | // Get a pointer on the instance of ComponentManager.
|
---|
[152] | 90 | m_manager = ComponentManager::getInstance();
|
---|
[176] | 91 | LOG_INFO("component " << getName() << " was created");
|
---|
| 92 |
|
---|
[179] | 93 | addParameters()
|
---|
| 94 | ("name", po::value<string>(&mName)->required(), "component name")
|
---|
| 95 | ("type", po::value<string>(&mTypeName)->required(), "component type")
|
---|
| 96 | ("ui", po::value<bool>(&mHasGui)->default_value(false), "whether to show GUI")
|
---|
| 97 | ("verbose", po::value<bool>(&mVerbose)->default_value(false), "set output verbose")
|
---|
| 98 | ("verbosity-level", po::value<int>(&mVerbosityLevel)->default_value(0), "set verbosity level")
|
---|
| 99 | ("recording", po::value<bool>(&mIsRecording)->default_value(false), "whether to record data")
|
---|
[176] | 100 | ;
|
---|
[89] | 101 | }
|
---|
| 102 |
|
---|
| 103 | ComponentBase::~ComponentBase()
|
---|
| 104 | {
|
---|
| 105 | LOG_TRACE("destructor");
|
---|
| 106 | }
|
---|
| 107 |
|
---|
[152] | 108 | bool ComponentBase::isActive() const
|
---|
| 109 | {
|
---|
| 110 | return m_isActive;
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | void ComponentBase::setActive(bool isActive)
|
---|
| 114 | {
|
---|
| 115 | m_isActive = isActive;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | bool ComponentBase::isRecording() const
|
---|
| 119 | {
|
---|
[177] | 120 | return mIsRecording;
|
---|
[152] | 121 | }
|
---|
| 122 |
|
---|
| 123 | void ComponentBase::setRecording(bool isRecording)
|
---|
| 124 | {
|
---|
[177] | 125 | mIsRecording = isRecording;
|
---|
[152] | 126 | }
|
---|
| 127 |
|
---|
| 128 | const XmlComponentConfig ComponentBase::xmlParameters() const
|
---|
| 129 | {
|
---|
| 130 | return param;
|
---|
| 131 | }
|
---|
| 132 |
|
---|
[288] | 133 | //void ComponentBase::startComponentWithException(boost::exception_ptr& error)
|
---|
| 134 | //{
|
---|
| 135 | // try {
|
---|
| 136 | // startActivity();
|
---|
| 137 | // error = boost::exception_ptr();
|
---|
| 138 | // } catch (...) {
|
---|
| 139 | // error = boost::current_exception();
|
---|
| 140 | // }
|
---|
| 141 | //}
|
---|
| 142 | //
|
---|
| 143 | //void ComponentBase::startComponentInThread()
|
---|
| 144 | //{
|
---|
| 145 | // boost::exception_ptr error;
|
---|
| 146 | // boost::thread t(
|
---|
| 147 | // boost::bind(
|
---|
| 148 | // &ComponentBase::startComponentWithException,
|
---|
| 149 | // this,
|
---|
| 150 | // boost::ref(error)
|
---|
| 151 | // )
|
---|
| 152 | // );
|
---|
| 153 | // t.join();
|
---|
| 154 | // if (error) {
|
---|
| 155 | // try {
|
---|
| 156 | // boost::rethrow_exception(error);
|
---|
| 157 | // } catch (boost::exception& e) {
|
---|
| 158 | // LOG_FATAL("[" << getName() << "]" << "\tboost::exception thrown: " << boost::diagnostic_information(e));
|
---|
| 159 | // //throw;
|
---|
| 160 | // }
|
---|
| 161 | // }
|
---|
| 162 | //}
|
---|
[281] | 163 |
|
---|
[89] | 164 | int ComponentBase::startComponent()
|
---|
| 165 | {
|
---|
[152] | 166 | if (isActive()) {
|
---|
| 167 | LOG_DEBUG("component already started, cannot (re-)start");
|
---|
| 168 | return false;
|
---|
| 169 | }
|
---|
| 170 |
|
---|
| 171 | setActive(true);
|
---|
[288] | 172 | //boost::thread worker(&ComponentBase::startComponentInThread, this);
|
---|
| 173 | startActivity();
|
---|
| 174 | //moveToThread(&mThread);
|
---|
| 175 | //mThread.start();
|
---|
[89] | 176 | return true;
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | int ComponentBase::stopComponent()
|
---|
| 180 | {
|
---|
[152] | 181 | if (!isActive()) {
|
---|
| 182 | LOG_DEBUG("component already stopped, cannot (re-)stop");
|
---|
| 183 | return false;
|
---|
| 184 | }
|
---|
| 185 |
|
---|
| 186 | setActive(false);
|
---|
[89] | 187 | stopActivity();
|
---|
[288] | 188 | //QMetaObject::invokeMethod(&mThread, "quit");
|
---|
[89] | 189 | return true;
|
---|
| 190 | }
|
---|
| 191 |
|
---|
| 192 | void ComponentBase::setState(const COMPONENT_STATE state)
|
---|
| 193 | {
|
---|
[152] | 194 | m_componentState = state;
|
---|
[89] | 195 | }
|
---|
| 196 |
|
---|
| 197 | // FIXME: this should be const.
|
---|
| 198 | ComponentBase::COMPONENT_STATE ComponentBase::getState()
|
---|
| 199 | {
|
---|
[152] | 200 | COMPONENT_STATE state = m_componentState;
|
---|
| 201 | if (ComponentBase::NOT_MONITORED != m_componentState) {
|
---|
| 202 | m_componentState = ComponentBase::MONITOR_NOK;
|
---|
[89] | 203 | }
|
---|
| 204 | return state;
|
---|
| 205 | }
|
---|
| 206 |
|
---|
[152] | 207 | ComponentBase::COMPONENT_CONFIGURATION ComponentBase::configurationState() const
|
---|
| 208 | {
|
---|
| 209 | return m_configurationState;
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | void ComponentBase::setConfigurationState(COMPONENT_CONFIGURATION state)
|
---|
| 213 | {
|
---|
| 214 | m_configurationState = state;
|
---|
| 215 | }
|
---|
| 216 |
|
---|
[89] | 217 | bool ComponentBase::isConfigured() const
|
---|
| 218 | {
|
---|
[152] | 219 | return (m_configurationState == CONFIGURED_OK);
|
---|
[89] | 220 | }
|
---|
| 221 |
|
---|
| 222 | QString ComponentBase::getName() const
|
---|
| 223 | {
|
---|
[152] | 224 | return m_componentName;
|
---|
[89] | 225 | }
|
---|
| 226 |
|
---|
[152] | 227 | ComponentBase::InputsMap & ComponentBase::inputs()
|
---|
[89] | 228 | {
|
---|
[152] | 229 | return m_inputs;
|
---|
| 230 | }
|
---|
[89] | 231 |
|
---|
[152] | 232 | const ComponentBase::InputsMap & ComponentBase::inputs() const
|
---|
| 233 | {
|
---|
| 234 | return m_inputs;
|
---|
[89] | 235 | }
|
---|
| 236 |
|
---|
[152] | 237 | ComponentBase::OutputsMap & ComponentBase::outputs()
|
---|
[89] | 238 | {
|
---|
[152] | 239 | return m_outputs;
|
---|
| 240 | }
|
---|
[89] | 241 |
|
---|
[152] | 242 | const ComponentBase::OutputsMap & ComponentBase::outputs() const
|
---|
| 243 | {
|
---|
| 244 | return m_outputs;
|
---|
[89] | 245 | }
|
---|
[120] | 246 |
|
---|
[290] | 247 | InputInterfaceBase* ComponentBase::getInput(QString inputName) const
|
---|
[120] | 248 | {
|
---|
[152] | 249 | if (inputs().contains(inputName)) {
|
---|
[290] | 250 | return inputs()[inputName].get();
|
---|
[152] | 251 | }
|
---|
[176] | 252 | LOG_WARN("Component " << getName() << " does not contain input " << inputName);
|
---|
[152] | 253 | return NULL;
|
---|
[120] | 254 | }
|
---|
| 255 |
|
---|
[290] | 256 | OutputInterfaceBase* ComponentBase::getOutput(QString outputName) const
|
---|
[120] | 257 | {
|
---|
[152] | 258 | if (outputs().contains(outputName)) {
|
---|
[290] | 259 | return outputs()[outputName].get();
|
---|
[152] | 260 | }
|
---|
[206] | 261 | LOG_WARN("Component " << getName() << " does not contain output " << outputName);
|
---|
[152] | 262 | return NULL;
|
---|
[120] | 263 | }
|
---|
[176] | 264 |
|
---|
[181] | 265 | bool ComponentBase::hasGui() const
|
---|
| 266 | {
|
---|
| 267 | return mHasGui;
|
---|
| 268 | }
|
---|
| 269 |
|
---|
| 270 | bool ComponentBase::isOutputVerbose() const
|
---|
| 271 | {
|
---|
| 272 | return mVerbose || (getVerbosityLevel() > 0);
|
---|
| 273 | }
|
---|
| 274 |
|
---|
| 275 | int ComponentBase::getVerbosityLevel() const
|
---|
| 276 | {
|
---|
| 277 | return mVerbosityLevel;
|
---|
| 278 | }
|
---|
| 279 |
|
---|
[176] | 280 | po::options_description_easy_init ComponentBase::addParameters()
|
---|
| 281 | {
|
---|
| 282 | return mOptionsDescription.add_options();
|
---|
| 283 | }
|
---|
| 284 |
|
---|
[270] | 285 | class DomElementParser
|
---|
[286] | 286 | : boost::noncopyable
|
---|
[176] | 287 | {
|
---|
[270] | 288 | public:
|
---|
| 289 | DomElementParser(QDomElement const& args);
|
---|
| 290 |
|
---|
| 291 | /** Sets options descriptions to use. */
|
---|
| 292 | DomElementParser& options(const boost::program_options::options_description& desc);
|
---|
| 293 |
|
---|
| 294 | /** Parses the options and returns the result of parsing.
|
---|
| 295 | Throws on error.
|
---|
| 296 | */
|
---|
| 297 | boost::program_options::basic_parsed_options<char> run();
|
---|
| 298 |
|
---|
| 299 | /** Specifies that unregistered options are allowed and should
|
---|
| 300 | be passed though. For each command like token that looks
|
---|
| 301 | like an option but does not contain a recognized name, an
|
---|
| 302 | instance of basic_option<charT> will be added to result,
|
---|
| 303 | with 'unrecognized' field set to 'true'. It's possible to
|
---|
| 304 | collect all unrecognized options with the 'collect_unrecognized'
|
---|
| 305 | funciton.
|
---|
| 306 | */
|
---|
| 307 | DomElementParser& allow_unregistered();
|
---|
| 308 |
|
---|
| 309 | private:
|
---|
| 310 | boost::program_options::basic_parsed_options<char> parseDomElement(
|
---|
| 311 | const QDomElement& dom_element,
|
---|
| 312 | const boost::program_options::options_description& desc,
|
---|
| 313 | bool allow_unregistered = false);
|
---|
| 314 |
|
---|
| 315 | private:
|
---|
[286] | 316 | boost::program_options::options_description const* m_desc;
|
---|
| 317 | QDomElement const& m_dom_element;
|
---|
[270] | 318 | bool m_allow_unregistered;
|
---|
| 319 | };
|
---|
| 320 |
|
---|
| 321 | DomElementParser::DomElementParser(const QDomElement& dom_element)
|
---|
| 322 | : m_dom_element(dom_element)
|
---|
| 323 | , m_allow_unregistered(false)
|
---|
| 324 | {
|
---|
| 325 | }
|
---|
| 326 |
|
---|
| 327 | DomElementParser& DomElementParser::options(const boost::program_options::options_description& desc)
|
---|
| 328 | {
|
---|
| 329 | m_desc = &desc;
|
---|
| 330 | return *this;
|
---|
| 331 | }
|
---|
| 332 |
|
---|
| 333 | DomElementParser& DomElementParser::allow_unregistered()
|
---|
| 334 | {
|
---|
| 335 | m_allow_unregistered = true;
|
---|
| 336 | return *this;
|
---|
| 337 | }
|
---|
| 338 |
|
---|
| 339 | #include <boost/iterator/iterator_facade.hpp>
|
---|
| 340 | #include <boost/program_options/errors.hpp>
|
---|
| 341 |
|
---|
| 342 | namespace detail
|
---|
| 343 | {
|
---|
| 344 | template <typename charT>
|
---|
| 345 | class basic_dom_element_iterator
|
---|
| 346 | : public boost::iterator_facade<
|
---|
| 347 | basic_dom_element_iterator<charT>
|
---|
| 348 | , const boost::program_options::option
|
---|
| 349 | , boost::random_access_traversal_tag
|
---|
| 350 | >
|
---|
| 351 | {
|
---|
| 352 | public:
|
---|
| 353 | typedef boost::program_options::option ValueType;
|
---|
[276] | 354 | typedef basic_dom_element_iterator<charT> self_type;
|
---|
| 355 | typedef typename self_type::iterator_facade_ base_type;
|
---|
| 356 | typedef typename self_type::difference_type difference_type;
|
---|
[270] | 357 |
|
---|
[278] | 358 | basic_dom_element_iterator<charT>(QDomElement const& dom_element)
|
---|
[270] | 359 | : m_dom_element(NULL)
|
---|
| 360 | , m_at_eof(true)
|
---|
[278] | 361 | , m_i(dom_element.attributes().size())
|
---|
[270] | 362 | {
|
---|
| 363 | }
|
---|
| 364 |
|
---|
[278] | 365 | basic_dom_element_iterator<charT>(QDomElement const& dom_element,
|
---|
| 366 | std::set<std::string> const& allowed_options,
|
---|
[270] | 367 | bool allow_unregistered = false)
|
---|
| 368 | : m_dom_element(&dom_element)
|
---|
| 369 | , m_allowed_options(allowed_options)
|
---|
[271] | 370 | , m_allow_unregistered(allow_unregistered)
|
---|
[270] | 371 | , m_i(0)
|
---|
| 372 | {
|
---|
| 373 | m_attrs = m_dom_element->attributes();
|
---|
| 374 | m_at_eof = !(m_i < m_attrs.size());
|
---|
| 375 | if (!m_at_eof) {
|
---|
| 376 | get();
|
---|
| 377 | }
|
---|
| 378 | }
|
---|
| 379 |
|
---|
[271] | 380 | private:
|
---|
| 381 | friend class ::boost::iterator_core_access;
|
---|
[270] | 382 |
|
---|
| 383 | bool equal(const basic_dom_element_iterator<charT>& other) const
|
---|
| 384 | {
|
---|
| 385 | if (m_at_eof && other.m_at_eof) {
|
---|
| 386 | return true;
|
---|
| 387 | }
|
---|
| 388 | return false;
|
---|
| 389 | }
|
---|
| 390 |
|
---|
| 391 | void increment()
|
---|
| 392 | {
|
---|
| 393 | ++m_i;
|
---|
| 394 | m_at_eof = !(m_i < m_attrs.size());
|
---|
| 395 | if (!m_at_eof) {
|
---|
| 396 | get();
|
---|
| 397 | }
|
---|
| 398 | }
|
---|
| 399 |
|
---|
| 400 | const ValueType& dereference() const
|
---|
| 401 | {
|
---|
| 402 | return m_value;
|
---|
| 403 | }
|
---|
| 404 |
|
---|
[274] | 405 | void advance(size_t n)
|
---|
| 406 | {
|
---|
| 407 | m_i += n;
|
---|
| 408 | m_at_eof = !(m_i < m_attrs.size());
|
---|
| 409 | if (!m_at_eof) {
|
---|
| 410 | get();
|
---|
| 411 | }
|
---|
| 412 | }
|
---|
| 413 |
|
---|
[270] | 414 | difference_type distance_to(const basic_dom_element_iterator<charT>& other) const
|
---|
| 415 | {
|
---|
| 416 | return other.m_i - this->m_i;
|
---|
| 417 | }
|
---|
| 418 |
|
---|
| 419 | private:
|
---|
| 420 | ValueType& value()
|
---|
| 421 | {
|
---|
| 422 | return m_value;
|
---|
| 423 | }
|
---|
| 424 |
|
---|
| 425 | void get()
|
---|
| 426 | {
|
---|
| 427 | using namespace boost::program_options;
|
---|
| 428 |
|
---|
| 429 | QDomNode node = m_attrs.item(m_i);
|
---|
| 430 | QDomAttr attr = node.toAttr();
|
---|
| 431 |
|
---|
| 432 | string name = attr.name().toStdString();
|
---|
| 433 | string value = attr.value().toStdString();
|
---|
| 434 |
|
---|
| 435 | bool registered = allowed_option(name);
|
---|
| 436 | if (!registered && !m_allow_unregistered) {
|
---|
| 437 | boost::throw_exception(unknown_option(name));
|
---|
| 438 | }
|
---|
| 439 |
|
---|
| 440 | this->value().string_key = name;
|
---|
| 441 | this->value().value.clear();
|
---|
| 442 | this->value().value.push_back(value);
|
---|
| 443 | this->value().unregistered = !registered;
|
---|
[275] | 444 | //this->value().original_tokens.push_back(name);
|
---|
| 445 | //this->value().original_tokens.push_back(value);
|
---|
[270] | 446 | }
|
---|
| 447 |
|
---|
| 448 | bool allowed_option(const std::string& s) const
|
---|
| 449 | {
|
---|
[278] | 450 | set<string>::const_iterator it = m_allowed_options.find(s);
|
---|
| 451 | if (it != m_allowed_options.end()) {
|
---|
[270] | 452 | return true;
|
---|
| 453 | }
|
---|
| 454 | return false;
|
---|
| 455 | }
|
---|
| 456 |
|
---|
| 457 | private:
|
---|
| 458 | const QDomElement* m_dom_element;
|
---|
| 459 | std::set<std::string> m_allowed_options;
|
---|
| 460 | bool m_allow_unregistered;
|
---|
| 461 |
|
---|
| 462 | QDomNamedNodeMap m_attrs;
|
---|
| 463 | int m_i;
|
---|
| 464 | bool m_at_eof;
|
---|
| 465 | ValueType m_value;
|
---|
| 466 | };
|
---|
| 467 |
|
---|
| 468 | typedef basic_dom_element_iterator<char> dom_element_iterator;
|
---|
| 469 | typedef basic_dom_element_iterator<wchar_t> wdom_element_iterator;
|
---|
| 470 |
|
---|
| 471 | }
|
---|
| 472 |
|
---|
| 473 | boost::program_options::basic_parsed_options<char> DomElementParser::run()
|
---|
| 474 | {
|
---|
| 475 | assert(m_desc);
|
---|
| 476 | return parseDomElement(m_dom_element, *m_desc, m_allow_unregistered);
|
---|
| 477 | }
|
---|
| 478 |
|
---|
| 479 | boost::program_options::basic_parsed_options<char> DomElementParser::parseDomElement(
|
---|
| 480 | const QDomElement& dom_element,
|
---|
| 481 | const boost::program_options::options_description& desc,
|
---|
| 482 | bool allow_unregistered)
|
---|
| 483 | {
|
---|
[271] | 484 | // TODO: use XPath paths
|
---|
| 485 |
|
---|
[270] | 486 | typedef char charT;
|
---|
| 487 |
|
---|
| 488 | using boost::program_options::error;
|
---|
| 489 | using boost::shared_ptr;
|
---|
| 490 | using namespace boost::program_options;
|
---|
| 491 | using ::detail::basic_dom_element_iterator;
|
---|
| 492 |
|
---|
| 493 | set<string> allowed_options;
|
---|
| 494 |
|
---|
| 495 | const vector<shared_ptr<option_description> >& options = desc.options();
|
---|
| 496 | for (unsigned i = 0; i < options.size(); ++i) {
|
---|
| 497 | const option_description& d = *options[i];
|
---|
| 498 |
|
---|
| 499 | if (d.long_name().empty()) {
|
---|
| 500 | boost::throw_exception(
|
---|
| 501 | error("abbreviated option names are not permitted when parsing DOM elements"));
|
---|
| 502 | }
|
---|
| 503 |
|
---|
| 504 | allowed_options.insert(d.long_name());
|
---|
| 505 | }
|
---|
| 506 |
|
---|
| 507 | // Parser returns char strings
|
---|
| 508 | parsed_options result(&desc);
|
---|
| 509 | copy(basic_dom_element_iterator<charT>(dom_element, allowed_options, allow_unregistered),
|
---|
[278] | 510 | basic_dom_element_iterator<charT>(dom_element),
|
---|
[270] | 511 | back_inserter(result.options));
|
---|
| 512 |
|
---|
| 513 | // Convert char strings into desired type.
|
---|
| 514 | return basic_parsed_options<charT>(result);
|
---|
| 515 | }
|
---|
| 516 |
|
---|
| 517 | DomElementParser parseDomElement();
|
---|
| 518 |
|
---|
| 519 | /** Creates instance of 'command_line_parser', passes parameters to it,
|
---|
| 520 | and returns the result of calling the 'run' method.
|
---|
| 521 | */
|
---|
| 522 | boost::program_options::basic_parsed_options<char>
|
---|
| 523 | parseDomElement(QDomElement const& domElement, const boost::program_options::options_description&);
|
---|
| 524 |
|
---|
| 525 | boost::program_options::basic_parsed_options<char>
|
---|
| 526 | parseDomElement(QDomElement const& domElement, const boost::program_options::options_description& desc)
|
---|
| 527 | {
|
---|
| 528 | return DomElementParser(domElement)
|
---|
| 529 | .options(desc)
|
---|
| 530 | .run();
|
---|
| 531 | }
|
---|
| 532 |
|
---|
| 533 | void ComponentBase::parseParameters(XmlComponentConfig const& cfg)
|
---|
| 534 | {
|
---|
[176] | 535 | LOG_INFO("Parsing parameters...");
|
---|
| 536 | LOG_INFO(mOptionsDescription);
|
---|
| 537 |
|
---|
[201] | 538 | po::variables_map vm;
|
---|
[176] | 539 | try {
|
---|
| 540 | po::store(
|
---|
[270] | 541 | DomElementParser(cfg.getDomElement())
|
---|
[176] | 542 | .options(mOptionsDescription)
|
---|
[180] | 543 | .allow_unregistered() // FIXME: temporary only, at term all the components specify all parameters
|
---|
[176] | 544 | .run()
|
---|
| 545 | , vm);
|
---|
| 546 | po::notify(vm);
|
---|
[270] | 547 | } catch (po::error& e) {
|
---|
[201] | 548 | LOG_WARN(e.what());
|
---|
[280] | 549 | BOOST_THROW_EXCEPTION(PacpusException(e.what()));
|
---|
[176] | 550 | }
|
---|
| 551 |
|
---|
[204] | 552 | LOG_INFO("Parsed parameter values:\n" << vm);
|
---|
[176] | 553 | }
|
---|
| 554 |
|
---|
[292] | 555 | //vector<string> convertAttributesToArgumentVector(const QDomNamedNodeMap & attributes)
|
---|
| 556 | //{
|
---|
| 557 | // vector<string> xargs;
|
---|
| 558 | // xargs.reserve(attributes.size());
|
---|
| 559 | //
|
---|
| 560 | // for (int i = 0; i < attributes.size(); ++i) {
|
---|
| 561 | // QDomAttr parameter = attributes.item(i).toAttr();
|
---|
| 562 | // if (parameter.isNull()) {
|
---|
| 563 | // LOG_WARN("node is not a parameter");
|
---|
| 564 | // continue;
|
---|
| 565 | // }
|
---|
| 566 | //
|
---|
| 567 | // QString arg = QString("--") + parameter.name() + "=";
|
---|
| 568 | //
|
---|
| 569 | // bool shouldAddQuotes = parameter.value().contains(' ');
|
---|
| 570 | // if (shouldAddQuotes) {
|
---|
| 571 | // arg += '\"';
|
---|
| 572 | // arg += parameter.value();
|
---|
| 573 | // arg += '\"';
|
---|
| 574 | // } else {
|
---|
| 575 | // arg += parameter.value();
|
---|
| 576 | // }
|
---|
| 577 | //
|
---|
| 578 | // LOG_DEBUG("parameter: " << arg);
|
---|
| 579 | // xargs.push_back(arg.toStdString());
|
---|
| 580 | // }
|
---|
| 581 | //
|
---|
| 582 | // return xargs;
|
---|
| 583 | //}
|
---|