Changeset c8d1952


Ignore:
Timestamp:
Mar 19, 2010, 4:55:28 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
91379c
Parents:
239987d
git-author:
Tillmann Crueger <crueger@…> (03/19/10 16:24:47)
git-committer:
Tillmann Crueger <crueger@…> (03/19/10 16:55:28)
Message:

Made the cacheable always recalculate when the owner is in the process of updating
(cherry picked from commit 6234ef6106a5d0b8c1d29976e4e4304c66bb5c8b)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Patterns/Cacheable.hpp

    r239987d rc8d1952  
    2525    public:
    2626      State(Cacheable *_owner) :
    27         owner(_owner),
    28         busy(false)
    29         {}
    30       virtual T& getValue()=0;
     27        busy(false),
     28        owner(_owner)
     29        {}
     30      virtual T getValue()=0;
    3131      virtual void invalidate()=0;
    3232      virtual bool isValid()=0;
     
    4646        {}
    4747
    48       virtual T& getValue(){
     48      virtual T getValue(){
    4949        // set the state to valid
    5050        State::owner->switchState(State::owner->validState);
     
    7272        {}
    7373
    74       virtual T& getValue(){
     74      virtual T getValue(){
    7575        return content;
    7676      }
     
    100100        {}
    101101
    102       virtual T& getValue(){
     102      virtual T getValue(){
    103103        ASSERT(0,"Cannot get a value from a Cacheable after it's Observable has died");
    104104        // we have to return a grossly invalid reference, because no value can be produced anymore
     
    128128
    129129    const bool isValid() const;
    130     const T& operator*() const;
     130    const T operator*() const;
    131131
    132132    // methods implemented for base-class Observer
     
    173173
    174174  template<typename T>
    175   const T& Cacheable<T>::operator*() const{
    176     return state->getValue();
     175  const T Cacheable<T>::operator*() const{
     176    // we can only use the cacheable when the owner is not changing at the moment
     177    if(!owner->isBlocked()){
     178      return state->getValue();
     179    }
     180    else{
     181      return recalcMethod();
     182    }
    177183  }
    178184
     
    215221
    216222    const bool isValid() const;
    217     const T& operator*() const;
     223    const T operator*() const;
    218224
    219225    // methods implemented for base-class Observer
     
    231237
    232238  template<typename T>
    233   const T& Cacheable<T>::operator*() const{
     239  const T Cacheable<T>::operator*() const{
    234240    return recalcMethod();
    235241  }
Note: See TracChangeset for help on using the changeset viewer.