[df32ee] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * ActionTraits.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: Oct 26, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | #include "Actions/ActionTraits.hpp"
|
---|
| 16 |
|
---|
[e4afb4] | 17 | #include "Helpers/Assert.hpp"
|
---|
| 18 |
|
---|
| 19 | #include <iostream>
|
---|
| 20 | #include <sstream>
|
---|
[df32ee] | 21 | #include <string>
|
---|
[e4afb4] | 22 | #include <typeinfo>
|
---|
[df32ee] | 23 |
|
---|
[e4afb4] | 24 | /** Copy constructor for base class ActionTraits.
|
---|
| 25 | * \param &_Traits source ActionTraits class to copy
|
---|
[df32ee] | 26 | */
|
---|
[e4afb4] | 27 | ActionTraits::ActionTraits(const std::string &_token) :
|
---|
| 28 | OptionTrait(_token,
|
---|
| 29 | &typeid(void),
|
---|
| 30 | "this is an invisible action",
|
---|
| 31 | "",
|
---|
| 32 | ""
|
---|
| 33 | )
|
---|
| 34 | {
|
---|
[c38826] | 35 | //std::cout << "ActionTraits::ActionTraits(string &) with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl;
|
---|
[e4afb4] | 36 | }
|
---|
[df32ee] | 37 |
|
---|
[e4afb4] | 38 | /** Copy constructor for base class ActionTraits.
|
---|
| 39 | * we have to make our own copy in order to avoid references and deep-copy everything.
|
---|
| 40 | * \param &_Traits source ActionTraits class to copy
|
---|
[df32ee] | 41 | */
|
---|
[e4afb4] | 42 | ActionTraits::ActionTraits(const ActionTraits &_Traits) :
|
---|
| 43 | OptionTrait(_Traits.getName(),
|
---|
| 44 | _Traits.getType(),
|
---|
| 45 | _Traits.getDescription(),
|
---|
| 46 | _Traits.hasDefaultValue() ? _Traits.getDefaultValue() : "",
|
---|
| 47 | _Traits.hasShortForm() ? _Traits.getShortForm() : ""
|
---|
[b59da6] | 48 | ),
|
---|
| 49 | MenuTitle(_Traits.MenuTitle),
|
---|
| 50 | MenuPosition(_Traits.MenuPosition)
|
---|
[e4afb4] | 51 | {
|
---|
| 52 | for (options_const_iterator iter = _Traits.Options.begin(); iter != _Traits.Options.end(); ++iter) {
|
---|
| 53 | Options.insert(
|
---|
| 54 | std::pair< std::string, OptionTrait *> (
|
---|
| 55 | iter->first,
|
---|
| 56 | new OptionTrait(iter->second->getName(),iter->second->getType(),iter->second->getDescription(), iter->second->getDefaultValue(), iter->second->getShortForm())
|
---|
| 57 | )
|
---|
| 58 | );
|
---|
| 59 | }
|
---|
[c38826] | 60 | //std::cout << "ActionTraits::ActionTraits(ActionTraits &) with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl;
|
---|
[e4afb4] | 61 | }
|
---|
[df32ee] | 62 |
|
---|
[e4afb4] | 63 | /** Copy constructor for base class ActionTraits.
|
---|
| 64 | * we have to make our own copy in order to avoid references and deep-copy everything.
|
---|
| 65 | * \param &_Traits source OptionTrait class to copy
|
---|
[df32ee] | 66 | */
|
---|
[b59da6] | 67 | ActionTraits::ActionTraits(const OptionTrait &_Traits, const std::string _MenuTitle, const int _MenuPosition) :
|
---|
| 68 | OptionTrait(_Traits),
|
---|
| 69 | MenuTitle(_MenuTitle),
|
---|
| 70 | MenuPosition(_MenuPosition)
|
---|
[df32ee] | 71 | {
|
---|
[c38826] | 72 | //std::cout << "ActionTraits::ActionTraits(OptionTrait &) with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl;
|
---|
[df32ee] | 73 | }
|
---|
| 74 |
|
---|
[e4afb4] | 75 | /** Constructor for base class ActionTraits.
|
---|
| 76 | * Deletes all present Options.
|
---|
[df32ee] | 77 | */
|
---|
[e4afb4] | 78 | ActionTraits::~ActionTraits()
|
---|
[df32ee] | 79 | {
|
---|
[e4afb4] | 80 | for (options_iterator iter = Options.begin(); !Options.empty(); iter = Options.begin()) {
|
---|
| 81 | delete (iter->second);
|
---|
| 82 | Options.erase(iter);
|
---|
| 83 | }
|
---|
[df32ee] | 84 | }
|
---|
| 85 |
|
---|
[e4afb4] | 86 |
|
---|
[53be34] | 87 | /** Returns menu title for this ActionTrait.
|
---|
| 88 | * \return ActionTraits::MenuTitle as std::string
|
---|
| 89 | */
|
---|
[e4afb4] | 90 | const std::string& ActionTraits::getMenuName() const
|
---|
[53be34] | 91 | {
|
---|
| 92 | return MenuTitle;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | /** Returns menu title for this ActionTrait.
|
---|
| 96 | * \return ActionTraits::MenuPosition as std::string
|
---|
| 97 | */
|
---|
[b59da6] | 98 | int ActionTraits::getMenuPosition() const
|
---|
[53be34] | 99 | {
|
---|
| 100 | return MenuPosition;
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | /** Returns Description for the given option of this ActionTrait.
|
---|
[e4afb4] | 104 | * \param &token token of option
|
---|
| 105 | * \return reference to OptionTrait
|
---|
[53be34] | 106 | */
|
---|
[e4afb4] | 107 | OptionTrait const & ActionTraits::getOption(const std::string &token) const
|
---|
[53be34] | 108 | {
|
---|
[e4afb4] | 109 | ASSERT(Options.find(token) != Options.end(),
|
---|
| 110 | "ActionTraits::getOption() - Option not found!");
|
---|
| 111 | return *(Options.find(token)->second);
|
---|
[53be34] | 112 | }
|
---|
| 113 |
|
---|
[e4afb4] | 114 | /** States whether given option (token) is present or not.
|
---|
| 115 | * \param &token name of option
|
---|
| 116 | * \return true - option present, false - not
|
---|
[df32ee] | 117 | */
|
---|
[e4afb4] | 118 | bool ActionTraits::hasOption(const std::string &token) const
|
---|
[df32ee] | 119 | {
|
---|
[e4afb4] | 120 | return (Options.find(token) != Options.end());
|
---|
[df32ee] | 121 | }
|
---|
| 122 |
|
---|
[e4afb4] | 123 | /** States whether this Action has options at all.
|
---|
| 124 | * \return true - options present, false - no options
|
---|
[df32ee] | 125 | */
|
---|
[e4afb4] | 126 | bool ActionTraits::hasOptions() const
|
---|
[df32ee] | 127 | {
|
---|
[e4afb4] | 128 | return (Options.begin() != Options.end());
|
---|
[df32ee] | 129 | }
|
---|
| 130 |
|
---|
[53be34] | 131 | /** Forward iterator from beginning of list of options.
|
---|
| 132 | * \return iterator
|
---|
| 133 | */
|
---|
| 134 | ActionTraits::options_iterator ActionTraits::getBeginIter()
|
---|
| 135 | {
|
---|
[e4afb4] | 136 | return Options.begin();
|
---|
[53be34] | 137 | }
|
---|
| 138 |
|
---|
| 139 | /** Forward iterator at end of list of options.
|
---|
| 140 | * \return iterator
|
---|
| 141 | */
|
---|
| 142 | ActionTraits::options_iterator ActionTraits::getEndIter()
|
---|
| 143 | {
|
---|
[e4afb4] | 144 | return Options.end();
|
---|
[53be34] | 145 | }
|
---|
| 146 |
|
---|
| 147 | /** Constant forward iterator from beginning of list of options.
|
---|
| 148 | * \return constant iterator
|
---|
| 149 | */
|
---|
| 150 | ActionTraits::options_const_iterator ActionTraits::getBeginIter() const
|
---|
| 151 | {
|
---|
[e4afb4] | 152 | return Options.begin();
|
---|
[53be34] | 153 | }
|
---|
| 154 |
|
---|
| 155 | /** Constant forward iterator at end of list of options.
|
---|
| 156 | * \return constant iterator
|
---|
| 157 | */
|
---|
| 158 | ActionTraits::options_const_iterator ActionTraits::getEndIter() const
|
---|
| 159 | {
|
---|
[e4afb4] | 160 | return Options.end();
|
---|
[53be34] | 161 | }
|
---|
| 162 |
|
---|
| 163 |
|
---|