| [e09d67] | 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 | 
 | 
|---|
| [a7d753] | 19 | #include "CodePatterns/toString.hpp"
 | 
|---|
 | 20 | 
 | 
|---|
 | 21 | #include "ValueInterface.hpp"
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | class DiscreteValueTest;
 | 
|---|
 | 24 | 
 | 
|---|
| [e09d67] | 25 | /** This class represents a discrete value.
 | 
|---|
 | 26 |  *
 | 
|---|
 | 27 |  */
 | 
|---|
 | 28 | template <class T>
 | 
|---|
| [498ddd] | 29 | class DiscreteValue : virtual public ValueInterface
 | 
|---|
| [e09d67] | 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
 | 
|---|
| [a7d753] | 39 |   bool isValid(const std::string _value) const;
 | 
|---|
 | 40 |   const std::string get() const;
 | 
|---|
 | 41 |   void set(const std::string _value);
 | 
|---|
| [e09d67] | 42 | 
 | 
|---|
| [498ddd] | 43 |   // comparator
 | 
|---|
 | 44 |   bool operator==(const DiscreteValue<T> &_instance) const;
 | 
|---|
 | 45 |   bool operator!=(const DiscreteValue<T> &_instance) const
 | 
|---|
 | 46 |       { return !((*this)==(_instance)); }
 | 
|---|
 | 47 | 
 | 
|---|
| [a7d753] | 48 |   // setter/getter for valid values
 | 
|---|
| [e09d67] | 49 |   void appendValidValue(const T &_value);
 | 
|---|
 | 50 |   const std::vector<T> &getValidValues() const;
 | 
|---|
 | 51 | 
 | 
|---|
| [a7d753] | 52 |   // internal getter and setter
 | 
|---|
 | 53 |   bool isValidValue(const T &_value) const;
 | 
|---|
 | 54 |   void setValue(const T &_value);
 | 
|---|
 | 55 |   const T & getValue() const;
 | 
|---|
| [e09d67] | 56 |   const size_t getIndexOfValue() const { return value; }
 | 
|---|
 | 57 | 
 | 
|---|
 | 58 | private:
 | 
|---|
 | 59 |   const size_t findIndexOfValue(const T &_value) const;
 | 
|---|
 | 60 | 
 | 
|---|
| [a7d753] | 61 | private:
 | 
|---|
 | 62 |   //!> Internal converter from string to internal type
 | 
|---|
 | 63 |   static ConvertTo<T> Converter;
 | 
|---|
 | 64 | 
 | 
|---|
| [e09d67] | 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_ */
 | 
|---|