source: src/Parameters/Value_impl.hpp@ 9b5eb0

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 9b5eb0 was 047cad, checked in by Michael Ankele <ankele@…>, 13 years ago

added string functions to ValueInterface

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/*
2 * Value_impl.hpp
3 *
4 * Created on: Apr 13, 2012
5 * Author: ankele
6 */
7
8#ifndef VALUE_IMPL_HPP_
9#define VALUE_IMPL_HPP_
10
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17
18#include <boost/any.hpp>
19
20#include "CodePatterns/Assert.hpp"
21
22#include "CodePatterns/Log.hpp"
23
24#include "Validators/DiscreteValidator.hpp"
25#include "Validators/RangeValidator.hpp"
26
27// static member
28template <class T> ConvertTo<T> Value<T>::Converter;
29
30/** Constructor of class Value.
31 */
32template <class T>
33Value<T>::Value() :
34 ValueSet(false),
35 validator(NULL)
36{}
37
38/** Constructor of class Value with a validator.
39 *
40 * @param _validator general validator to use
41 */
42template <class T>
43Value<T>::Value(const Validator<T> &_validator) :
44 ValueSet(false),
45 validator(_validator.clone())
46{}
47
48/** Constructor of class Value with a discrete validator.
49 *
50 * @param _ValidValues vector with all valid values
51 */
52template <class T>
53Value<T>::Value(const std::vector<T> &_ValidValues) :
54 ValueSet(false),
55 validator(NULL)
56{
57 validator = new DiscreteValidator<T>(_ValidValues);
58}
59
60/** Constructor of class Value with a range validator.
61 *
62 * @param _ValidRange range of valid values
63 */
64template <class T>
65Value<T>::Value(const range<T> &_ValidRange) :
66 ValueSet(false),
67 validator(NULL)
68{
69 validator = new RangeValidator<T>(_ValidRange);
70}
71
72/** Destructor of class Value.
73 */
74template <class T>
75Value<T>::~Value()
76{
77 if (validator)
78 delete(validator);
79}
80
81/** Checks whether \a _value is a valid value.
82 * \param _value value to check for validity.
83 * \return true - \a _value is valid, false - is not
84 */
85template <class T>
86bool Value<T>::isValid(const T & _value) const
87{
88 if (validator)
89 return (*validator)(_value);
90 return true;
91}
92
93/** Compares this discrete value against another \a _instance.
94 *
95 * @param _instance other value to compare to
96 * @return true - if value and valid ranges are the same, false - else
97 */
98template <class T>
99bool Value<T>::operator==(const Value<T> &_instance) const
100{
101 bool status = true;
102 status = status && (*validator == *_instance.validator);
103 status = status && (ValueSet == _instance.ValueSet);
104 if (ValueSet && _instance.ValueSet)
105 status = status && (value == _instance.value);
106 return status;
107}
108
109
110/** Getter of value
111 *
112 * @return value
113 */
114template <class T>
115const T & Value<T>::get() const
116{
117 ASSERT(ValueSet,
118 "Value<T>::get() - value has never been set.");
119 return value;
120}
121
122/** Setter of value
123 *
124 * @param _value new value
125 */
126template <class T>
127void Value<T>::set(const T & _value)
128{
129 ASSERT(isValid(_value),
130 "Value<T>::setValue() - trying to set invalid value "+toString(_value)+".");
131 if (!ValueSet)
132 ValueSet = true;
133 value = _value;
134}
135
136
137
138/** Checks whether \a _value is a valid value.
139 * \param _value value to check for validity.
140 * \return true - \a _value is valid, false - is not
141 */
142template <class T>
143bool Value<T>::isValidAsString(const std::string _value) const
144{
145 const T castvalue = Converter(_value);
146// LOG(0, "Converted value reads " << castvalue <<".");
147 return isValid(castvalue);
148}
149
150/** Getter of value, returning string.
151 *
152 * @return string value
153 */
154template <class T>
155const std::string Value<T>::getAsString() const
156{
157 ASSERT(ValueSet,
158 "Value<T>::getAsString() - requesting unset value.");
159 return toString(value);
160}
161
162/** Setter of value for string
163 *
164 * @param _value string containing new value
165 */
166template <class T>
167void Value<T>::setAsString(const std::string _value)
168{
169 const T castvalue = Converter(_value);
170// LOG(0, "Converted value reads " << castvalue <<".");
171 set(castvalue);
172// LOG(0, "STATUS: Value is now set to " << value << ".");
173}
174
175/** Returns the validator as a const reference.
176 *
177 * @return the validator
178 */
179template <class T>
180const Validator<T> &Value<T>::getValidator() const
181{
182 return *validator;
183}
184
185/** Returns the validator.
186 *
187 * @return the validator
188 */
189template <class T>
190Validator<T> &Value<T>::getValidator()
191{
192 return *validator;
193}
194
195
196
197#endif /* VALUE_IMPL_HPP_ */
Note: See TracBrowser for help on using the repository browser.