| 1 | /*
 | 
|---|
| 2 |  * SetValue.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: Jun 25, 2012
 | 
|---|
| 5 |  *      Author: heber
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef SETVALUE_HPP_
 | 
|---|
| 9 | #define SETVALUE_HPP_
 | 
|---|
| 10 | 
 | 
|---|
| 11 | 
 | 
|---|
| 12 | // include config.h
 | 
|---|
| 13 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 14 | #include <config.h>
 | 
|---|
| 15 | #endif
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #include <boost/function.hpp>
 | 
|---|
| 18 | #include <boost/shared_ptr.hpp>
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include "IndexSet.hpp"
 | 
|---|
| 21 | #include "IndexSetContainer.hpp"
 | 
|---|
| 22 | 
 | 
|---|
| 23 | #include "CodePatterns/Cacheable.hpp"
 | 
|---|
| 24 | #include "CodePatterns/Log.hpp"
 | 
|---|
| 25 | #include "CodePatterns/Observer/Observable.hpp"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | class SetValueTest;
 | 
|---|
| 28 | 
 | 
|---|
| 29 | template <class T>
 | 
|---|
| 30 | class SetValue : public Observable
 | 
|---|
| 31 | {
 | 
|---|
| 32 |   //!> grant unit test access to allow setting static function
 | 
|---|
| 33 |   friend class SetValueTest;
 | 
|---|
| 34 |   //!> grant OrthogonalSummation access to static lookup functions
 | 
|---|
| 35 |   template <class TT> friend class OrthogonalSummation;
 | 
|---|
| 36 |   //!> grant Summation access to static lookup functions
 | 
|---|
| 37 |   template <class TT> friend class Summation;
 | 
|---|
| 38 | public:
 | 
|---|
| 39 |   typedef boost::shared_ptr< SetValue<T> > ptr;
 | 
|---|
| 40 | 
 | 
|---|
| 41 |   SetValue(const IndexSet_ptr &_indices, const T &_value) :
 | 
|---|
| 42 |     Observable("SubsetValue"),
 | 
|---|
| 43 |     value(_value),
 | 
|---|
| 44 |     indices(_indices),
 | 
|---|
| 45 |     contribution(this,boost::bind(&SetValue<T>::calcSum,this),"contribution")
 | 
|---|
| 46 |   {};
 | 
|---|
| 47 | 
 | 
|---|
| 48 |   SetValue & operator+=(const SetValue &other) {
 | 
|---|
| 49 |     if (indices->contains(*other.indices)) {
 | 
|---|
| 50 |       OBSERVE;
 | 
|---|
| 51 |       value += other.value;
 | 
|---|
| 52 |     }
 | 
|---|
| 53 |     return *this;
 | 
|---|
| 54 |   }
 | 
|---|
| 55 | 
 | 
|---|
| 56 |   SetValue & operator-=(const SetValue &other) {
 | 
|---|
| 57 |     if (indices->contains(*other.indices)) {
 | 
|---|
| 58 |       OBSERVE;
 | 
|---|
| 59 |       value -= other.value;
 | 
|---|
| 60 |     }
 | 
|---|
| 61 |     return *this;
 | 
|---|
| 62 |   }
 | 
|---|
| 63 | 
 | 
|---|
| 64 |   const IndexSet_ptr& getIndexSet() const {
 | 
|---|
| 65 |     return indices;
 | 
|---|
| 66 |   }
 | 
|---|
| 67 | 
 | 
|---|
| 68 |   /** Getter for the contribution.
 | 
|---|
| 69 |    *
 | 
|---|
| 70 |    * @return contribution
 | 
|---|
| 71 |    */
 | 
|---|
| 72 |   const T getContribution() const {
 | 
|---|
| 73 |     return *contribution;
 | 
|---|
| 74 |   }
 | 
|---|
| 75 | 
 | 
|---|
| 76 |   /** Getter for the value.
 | 
|---|
| 77 |    *
 | 
|---|
| 78 |    * @return value
 | 
|---|
| 79 |    */
 | 
|---|
| 80 |   const T getValue() const {
 | 
|---|
| 81 |     return value;
 | 
|---|
| 82 |   }
 | 
|---|
| 83 | 
 | 
|---|
| 84 |   /** Setter for the value.
 | 
|---|
| 85 |    *
 | 
|---|
| 86 |    * This function is observed to notify all sets that contain us of a change.
 | 
|---|
| 87 |    *
 | 
|---|
| 88 |    * @param _value value to set value to
 | 
|---|
| 89 |    */
 | 
|---|
| 90 |   void setValue(const T& _value) {
 | 
|---|
| 91 |     OBSERVE;
 | 
|---|
| 92 |     value = _value;
 | 
|---|
| 93 |   }
 | 
|---|
| 94 | 
 | 
|---|
| 95 | private:
 | 
|---|
| 96 |   // prohibit copies
 | 
|---|
| 97 |   SetValue(const SetValue<T> &_value);
 | 
|---|
| 98 | 
 | 
|---|
| 99 | private:
 | 
|---|
| 100 |   //!> static lookup function to get to the subsets
 | 
|---|
| 101 |   static boost::function< IndexSetContainer::ptr & (const IndexSet_ptr &)> lookupSubset;
 | 
|---|
| 102 | 
 | 
|---|
| 103 |   //!> static lookup function to get the SetValue for a specific IndexSet
 | 
|---|
| 104 |   static boost::function< typename SetValue<T>::ptr & (const IndexSet_ptr &)> lookupValue;
 | 
|---|
| 105 | 
 | 
|---|
| 106 |   /** Calculates the contribution for this subset.
 | 
|---|
| 107 |    *
 | 
|---|
| 108 |    * Internal function that is bound to the cacheable
 | 
|---|
| 109 |    *
 | 
|---|
| 110 |    * @return
 | 
|---|
| 111 |    */
 | 
|---|
| 112 |   const T calcSum() {
 | 
|---|
| 113 |     LOG(1, "INFO: Summing up contribution for " << *indices << ".");
 | 
|---|
| 114 |     // we initialize with value
 | 
|---|
| 115 |     T result = getValue();
 | 
|---|
| 116 |     // then subtract contributions from all subsets
 | 
|---|
| 117 |     const IndexSetContainer::ptr &container = lookupSubset(indices);
 | 
|---|
| 118 |     if (container) {
 | 
|---|
| 119 |       const IndexSetContainer::Container_t &subsets = container->getContainer();
 | 
|---|
| 120 |       for (IndexSetContainer::Container_t::const_iterator iter = subsets.begin();
 | 
|---|
| 121 |           iter != subsets.end(); ++iter) {
 | 
|---|
| 122 |         LOG(2, "INFO: Current subset is " << **iter << ".");
 | 
|---|
| 123 |         // NOTE: our subset is not contained in the number of subsets
 | 
|---|
| 124 |         typename SetValue<T>::ptr ptr = lookupValue(*iter);
 | 
|---|
| 125 |         if (ptr)
 | 
|---|
| 126 |           result -= ptr->getContribution();
 | 
|---|
| 127 |         else
 | 
|---|
| 128 |           ELOG(1, "Cannot find " << **iter << " via lookup.");
 | 
|---|
| 129 |       }
 | 
|---|
| 130 |     } else {
 | 
|---|
| 131 |       ELOG(1, "Cannot find subsets for " << *indices << " via lookup.");
 | 
|---|
| 132 |     }
 | 
|---|
| 133 |     return result;
 | 
|---|
| 134 |   }
 | 
|---|
| 135 | 
 | 
|---|
| 136 | private:
 | 
|---|
| 137 |   //!> value associated with this IndexSet
 | 
|---|
| 138 |   T value;
 | 
|---|
| 139 | 
 | 
|---|
| 140 |   //!> shared_ptr to the index set
 | 
|---|
| 141 |   IndexSet_ptr indices;
 | 
|---|
| 142 | 
 | 
|---|
| 143 |   //!> stores the (orthogonal) contribution for this SubsetValue
 | 
|---|
| 144 |   Cacheable<T> contribution;
 | 
|---|
| 145 | };
 | 
|---|
| 146 | 
 | 
|---|
| 147 | template <class T>
 | 
|---|
| 148 | boost::function< IndexSetContainer::ptr & (const IndexSet_ptr &)> SetValue<T>::lookupSubset = NULL;
 | 
|---|
| 149 | 
 | 
|---|
| 150 | template <class T>
 | 
|---|
| 151 | boost::function< typename SetValue<T>::ptr & (const IndexSet_ptr &)> SetValue<T>::lookupValue = NULL;
 | 
|---|
| 152 | 
 | 
|---|
| 153 | #endif /* SETVALUE_HPP_ */
 | 
|---|