[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 |
|
---|
[4892c3] | 23 | #include "CodePatterns/Range.hpp"
|
---|
[047cad] | 24 | #include "CodePatterns/toString.hpp"
|
---|
[4892c3] | 25 |
|
---|
[3c5ef5] | 26 | #include "VectorFromString.hpp"
|
---|
| 27 |
|
---|
[4892c3] | 28 | class ValueTest;
|
---|
[a9a8f9] | 29 |
|
---|
| 30 | /** This class represents a general value.
|
---|
| 31 | *
|
---|
| 32 | */
|
---|
| 33 | template <class T>
|
---|
| 34 | class Value : virtual public ValueInterface<T>
|
---|
| 35 | {
|
---|
| 36 | //!> unit test needs to have access to internal values
|
---|
[4892c3] | 37 | friend class ValueTest;
|
---|
[3c5ef5] | 38 | friend class ContinuousValueTest;
|
---|
[a9a8f9] | 39 | public:
|
---|
| 40 | Value();
|
---|
| 41 | Value(const Validator<T> &_validator);
|
---|
[4892c3] | 42 | Value(const std::vector<T> &_ValidValues);
|
---|
| 43 | Value(const range<T> &_ValidRange);
|
---|
[a9a8f9] | 44 | virtual ~Value();
|
---|
| 45 |
|
---|
| 46 | // functions for ValueInterface
|
---|
| 47 | bool isValid(const T &_value) const;
|
---|
| 48 | const T & get() const;
|
---|
| 49 | void set(const T & _value);
|
---|
| 50 |
|
---|
[047cad] | 51 | // string functions for ValueInterface
|
---|
| 52 | bool isValidAsString(const std::string _value) const;
|
---|
| 53 | const std::string getAsString() const;
|
---|
| 54 | void setAsString(const std::string _value);
|
---|
| 55 |
|
---|
[a9a8f9] | 56 | // comfortable setter
|
---|
| 57 | void operator=(const T &_value)
|
---|
| 58 | { set(_value); }
|
---|
| 59 |
|
---|
| 60 | // comparator
|
---|
| 61 | bool operator==(const Value<T> &_instance) const;
|
---|
| 62 | bool operator!=(const Value<T> &_instance) const
|
---|
| 63 | { return !((*this)==(_instance)); }
|
---|
| 64 |
|
---|
[4892c3] | 65 | const Validator<T> & getValidator() const;
|
---|
[ad6917] | 66 | Validator<T> & getValidator();
|
---|
[a9a8f9] | 67 |
|
---|
[3c5ef5] | 68 | // comfortable validator functions
|
---|
| 69 | const range<T> & getValidRange() const;
|
---|
| 70 | void setValidRange(const range<T> &_range);
|
---|
| 71 | void appendValidValue(const T &_value);
|
---|
| 72 | const std::vector<T> &getValidValues() const;
|
---|
| 73 |
|
---|
[a9a8f9] | 74 | private:
|
---|
[047cad] | 75 | //!> Internal converter from string to internal type
|
---|
| 76 | static ConvertTo<T> Converter;
|
---|
[a9a8f9] | 77 |
|
---|
| 78 | //!> whether a value has been set or not
|
---|
| 79 | bool ValueSet;
|
---|
| 80 | //!> contained value
|
---|
| 81 | T value;
|
---|
| 82 |
|
---|
| 83 | //!> the validator
|
---|
| 84 | Validator<T> *validator;
|
---|
| 85 | };
|
---|
| 86 |
|
---|
| 87 | #include "Value_impl.hpp"
|
---|
| 88 |
|
---|
| 89 |
|
---|
| 90 | #endif /* VALUE_HPP_ */
|
---|