1 | /*
|
---|
2 | * Value.hpp
|
---|
3 | *
|
---|
4 | * Created on: Apr 13, 2012
|
---|
5 | * Author: ankele
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef VALUE_HPP_
|
---|
9 | #define VALUE_HPP_
|
---|
10 |
|
---|
11 |
|
---|
12 | // include config.h
|
---|
13 | #ifdef HAVE_CONFIG_H
|
---|
14 | #include <config.h>
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | #include <string>
|
---|
18 | #include <vector>
|
---|
19 |
|
---|
20 | #include "ValueInterface.hpp"
|
---|
21 | #include "Validators/Validator.hpp"
|
---|
22 |
|
---|
23 | #include "StreamOperators.hpp"
|
---|
24 |
|
---|
25 | #include "CodePatterns/Range.hpp"
|
---|
26 | #include "CodePatterns/toString.hpp"
|
---|
27 |
|
---|
28 | class ValueTest;
|
---|
29 | template <class T>
|
---|
30 | class Parameter;
|
---|
31 |
|
---|
32 | /** Converter for a string to a std::vector of any class
|
---|
33 | * We use default conversion via stringstream as suggested by [Stroustrup].
|
---|
34 | * \param _&_object reference to object to convert.
|
---|
35 | * \return converted \a _object of templated type
|
---|
36 | */
|
---|
37 | template <class T>
|
---|
38 | struct ConvertTo< std::vector<T> > {
|
---|
39 | std::vector<T> operator()(std::string _object) {
|
---|
40 | std::vector<T> returnobjects;
|
---|
41 | std::stringstream s;
|
---|
42 | T object;
|
---|
43 | s << _object;
|
---|
44 | while (s.good()) {
|
---|
45 | s >> object;
|
---|
46 | returnobjects.push_back(object);
|
---|
47 | }
|
---|
48 | return returnobjects;
|
---|
49 | }
|
---|
50 | };
|
---|
51 |
|
---|
52 | /** This class represents a general value.
|
---|
53 | *
|
---|
54 | */
|
---|
55 | template <class T>
|
---|
56 | class Value : virtual public ValueInterface<T>
|
---|
57 | {
|
---|
58 | //!> unit test needs to have access to internal values
|
---|
59 | friend class ValueTest;
|
---|
60 | friend class ContinuousValueTest;
|
---|
61 | friend class Parameter<T>;
|
---|
62 | public:
|
---|
63 | Value();
|
---|
64 | Value(const Validator<T> &_validator);
|
---|
65 | Value(const std::vector<T> &_ValidValues);
|
---|
66 | Value(const range<T> &_ValidRange);
|
---|
67 | virtual ~Value();
|
---|
68 |
|
---|
69 | // functions for ValueInterface
|
---|
70 | bool isValid(const T &_value) const;
|
---|
71 | const T & get() const;
|
---|
72 | void set(const T & _value);
|
---|
73 | bool isSet() const;
|
---|
74 |
|
---|
75 | // string functions for ValueInterface
|
---|
76 | bool isValidAsString(const std::string _value) const;
|
---|
77 | const std::string getAsString() const;
|
---|
78 | void setAsString(const std::string _value);
|
---|
79 |
|
---|
80 | // comfortable setter
|
---|
81 | Value<T> &operator=(const T &_value)
|
---|
82 | { set(_value); return *this; }
|
---|
83 |
|
---|
84 | // comparator
|
---|
85 | bool operator==(const Value<T> &_instance) const;
|
---|
86 | bool operator!=(const Value<T> &_instance) const
|
---|
87 | { return !((*this)==(_instance)); }
|
---|
88 |
|
---|
89 | const Validator<T> & getValidator() const;
|
---|
90 | Validator<T> & getValidator();
|
---|
91 |
|
---|
92 | // comfortable validator functions
|
---|
93 | const range<T> & getValidRange() const;
|
---|
94 | void setValidRange(const range<T> &_range);
|
---|
95 | void appendValidValue(const T &_value);
|
---|
96 | const std::vector<T> &getValidValues() const;
|
---|
97 |
|
---|
98 | private:
|
---|
99 | //!> Internal converter from string to internal type
|
---|
100 | static ConvertTo<T> Converter;
|
---|
101 |
|
---|
102 | //!> whether a value has been set or not
|
---|
103 | bool ValueSet;
|
---|
104 | //!> contained value
|
---|
105 | T value;
|
---|
106 |
|
---|
107 | //!> the validator
|
---|
108 | Validator<T> *validator;
|
---|
109 | };
|
---|
110 |
|
---|
111 | #include "Value_impl.hpp"
|
---|
112 |
|
---|
113 |
|
---|
114 | #endif /* VALUE_HPP_ */
|
---|