[c68409] | 1 | /*
|
---|
| 2 | * DiscreteValue.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Sep 28, 2011
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef DISCRETEVALUE_HPP_
|
---|
| 9 | #define DISCRETEVALUE_HPP_
|
---|
| 10 |
|
---|
| 11 | // include config.h
|
---|
| 12 | #ifdef HAVE_CONFIG_H
|
---|
| 13 | #include <config.h>
|
---|
| 14 | #endif
|
---|
| 15 |
|
---|
| 16 | #include <string>
|
---|
| 17 | #include <vector>
|
---|
| 18 |
|
---|
| 19 | #include "CodePatterns/toString.hpp"
|
---|
| 20 |
|
---|
| 21 | #include "ValueInterface.hpp"
|
---|
| 22 |
|
---|
| 23 | class DiscreteValueTest;
|
---|
| 24 |
|
---|
| 25 | /** This class represents a discrete value.
|
---|
| 26 | *
|
---|
| 27 | */
|
---|
| 28 | template <class T>
|
---|
| 29 | class DiscreteValue : virtual public ValueInterface<T>
|
---|
| 30 | {
|
---|
| 31 | //!> unit test needs to have access to internal values
|
---|
| 32 | friend class DiscreteValueTest;
|
---|
| 33 | public:
|
---|
| 34 | DiscreteValue();
|
---|
| 35 | DiscreteValue(const std::vector<T> &_ValidValues);
|
---|
| 36 | virtual ~DiscreteValue();
|
---|
| 37 |
|
---|
| 38 | // functions for ValueInterface
|
---|
| 39 | bool isValid(const std::string _value) const;
|
---|
| 40 | const T & get() const;
|
---|
| 41 | void set(const T & _value);
|
---|
| 42 |
|
---|
| 43 | // comparator
|
---|
| 44 | bool operator==(const DiscreteValue<T> &_instance) const;
|
---|
| 45 | bool operator!=(const DiscreteValue<T> &_instance) const
|
---|
| 46 | { return !((*this)==(_instance)); }
|
---|
| 47 |
|
---|
| 48 | // setter/getter for valid values
|
---|
| 49 | void appendValidValue(const T &_value);
|
---|
| 50 | const std::vector<T> &getValidValues() const;
|
---|
| 51 |
|
---|
| 52 | // internal getter and setter
|
---|
| 53 | bool isValidValue(const T &_value) const;
|
---|
| 54 | void setValue(const T &_value);
|
---|
| 55 | const T & getValue() const;
|
---|
| 56 | const size_t getIndexOfValue() const { return value; }
|
---|
| 57 |
|
---|
| 58 | private:
|
---|
| 59 | const size_t findIndexOfValue(const T &_value) const;
|
---|
| 60 |
|
---|
| 61 | private:
|
---|
| 62 | //!> Internal converter from string to internal type
|
---|
| 63 | static ConvertTo<T> Converter;
|
---|
| 64 |
|
---|
| 65 | //!> Typedef for the vector of valid values.
|
---|
| 66 | typedef std::vector<T> ValidRange;
|
---|
| 67 |
|
---|
| 68 | //!> whether a value has been set or not
|
---|
| 69 | bool ValueSet;
|
---|
| 70 |
|
---|
| 71 | //!> we only store the index within the \a ValidValues for the value
|
---|
| 72 | size_t value;
|
---|
| 73 | //!> list of valid values
|
---|
| 74 | std::vector<T> ValidValues;
|
---|
| 75 | };
|
---|
| 76 |
|
---|
| 77 | #include "DiscreteValue_impl.hpp"
|
---|
| 78 |
|
---|
| 79 | #endif /* DISCRETEVALUE_HPP_ */
|
---|