[a9a8f9] | 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 |
|
---|
[f10b0c] | 23 | #include "StreamOperators.hpp"
|
---|
| 24 |
|
---|
[4892c3] | 25 | #include "CodePatterns/Range.hpp"
|
---|
[047cad] | 26 | #include "CodePatterns/toString.hpp"
|
---|
[4892c3] | 27 |
|
---|
| 28 | class ValueTest;
|
---|
[6c05d8] | 29 | template <class T>
|
---|
| 30 | class Parameter;
|
---|
[a9a8f9] | 31 |
|
---|
[bf72ec] | 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 |
|
---|
[a9a8f9] | 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
|
---|
[4892c3] | 59 | friend class ValueTest;
|
---|
[3c5ef5] | 60 | friend class ContinuousValueTest;
|
---|
[6c05d8] | 61 | friend class Parameter<T>;
|
---|
[a9a8f9] | 62 | public:
|
---|
| 63 | Value();
|
---|
| 64 | Value(const Validator<T> &_validator);
|
---|
[4892c3] | 65 | Value(const std::vector<T> &_ValidValues);
|
---|
| 66 | Value(const range<T> &_ValidRange);
|
---|
[a9a8f9] | 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);
|
---|
[95f965] | 73 | bool isSet() const;
|
---|
[a9a8f9] | 74 |
|
---|
[047cad] | 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 |
|
---|
[a9a8f9] | 80 | // comfortable setter
|
---|
[f10b0c] | 81 | Value<T> &operator=(const T &_value)
|
---|
| 82 | { set(_value); return *this; }
|
---|
[a9a8f9] | 83 |
|
---|
| 84 | // comparator
|
---|
| 85 | bool operator==(const Value<T> &_instance) const;
|
---|
| 86 | bool operator!=(const Value<T> &_instance) const
|
---|
| 87 | { return !((*this)==(_instance)); }
|
---|
| 88 |
|
---|
[4892c3] | 89 | const Validator<T> & getValidator() const;
|
---|
[ad6917] | 90 | Validator<T> & getValidator();
|
---|
[a9a8f9] | 91 |
|
---|
[3c5ef5] | 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 |
|
---|
[a9a8f9] | 98 | private:
|
---|
[047cad] | 99 | //!> Internal converter from string to internal type
|
---|
| 100 | static ConvertTo<T> Converter;
|
---|
[a9a8f9] | 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_ */
|
---|