OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CC_SCHEDULER_BEGIN_FRAME_OBSERVER_MAP_H_ |
| 6 #define CC_SCHEDULER_BEGIN_FRAME_OBSERVER_MAP_H_ |
| 7 |
| 8 #include "base/containers/hash_tables.h" |
| 9 #include "base/logging.h" |
| 10 |
| 11 namespace cc { |
| 12 |
| 13 template <class ObserverType, class ObserverDataType> |
| 14 class BeginFrameObserverMap { |
| 15 private: |
| 16 typedef typename base::hash_set<ObserverType*> SetType; |
| 17 typedef typename base::hash_map<ObserverType*, ObserverDataType*> MapType; |
| 18 |
| 19 MapType observers_; |
| 20 |
| 21 volatile size_t const_iterators_; |
| 22 size_t iterators_; |
| 23 MapType observers_to_add_; |
| 24 SetType observers_to_remove_; |
| 25 |
| 26 public: |
| 27 BeginFrameObserverMap() |
| 28 : observers_(), |
| 29 const_iterators_(0), |
| 30 iterators_(0), |
| 31 observers_to_add_(), |
| 32 observers_to_remove_() {} |
| 33 |
| 34 class iterator : public MapType::iterator { |
| 35 public: |
| 36 explicit iterator( |
| 37 typename MapType::iterator it, |
| 38 BeginFrameObserverMap<ObserverType, ObserverDataType>* list) |
| 39 : MapType::iterator(it), list_(list) { |
| 40 list_->iterators_++; |
| 41 } |
| 42 ~iterator() { |
| 43 DCHECK_GT(list_->iterators_, 0U); |
| 44 list_->iterators_--; |
| 45 list_->CompactMaps(); |
| 46 } |
| 47 |
| 48 private: |
| 49 BeginFrameObserverMap<ObserverType, ObserverDataType>* list_; |
| 50 }; |
| 51 |
| 52 class const_iterator : public MapType::const_iterator { |
| 53 public: |
| 54 explicit const_iterator( |
| 55 typename MapType::const_iterator it, |
| 56 const BeginFrameObserverMap<ObserverType, ObserverDataType>* list) |
| 57 : MapType::const_iterator(it), |
| 58 list_(const_cast< |
| 59 BeginFrameObserverMap<ObserverType, ObserverDataType>*>(list)) { |
| 60 list_->const_iterators_++; |
| 61 } |
| 62 ~const_iterator() { |
| 63 DCHECK_GT(list_->const_iterators_, 0U); |
| 64 list_->const_iterators_--; |
| 65 } |
| 66 |
| 67 private: |
| 68 BeginFrameObserverMap<ObserverType, ObserverDataType>* list_; |
| 69 }; |
| 70 |
| 71 void AddObserver(ObserverType* obs) { |
| 72 DCHECK_EQ(const_iterators_, 0U); |
| 73 if (observers_to_add_.count(obs) == 0) { |
| 74 observers_to_add_[obs] = new ObserverDataType(); |
| 75 } |
| 76 CompactMaps(); |
| 77 } |
| 78 |
| 79 void RemoveObserver(ObserverType* obs) { |
| 80 DCHECK_EQ(const_iterators_, 0U); |
| 81 observers_to_remove_.insert(obs); |
| 82 CompactMaps(); |
| 83 } |
| 84 |
| 85 bool HasObservers() const { return !observers_.empty(); } |
| 86 bool HasObserver(ObserverType* const obs) const { |
| 87 return (*this)[obs] != nullptr; |
| 88 } |
| 89 |
| 90 iterator begin() { return iterator(observers_.begin(), this); } |
| 91 iterator end() { return iterator(observers_.end(), this); } |
| 92 |
| 93 const_iterator cbegin() const { |
| 94 return const_iterator(const_cast<const MapType*>(&observers_)->begin(), |
| 95 this); |
| 96 } |
| 97 |
| 98 const_iterator cend() const { |
| 99 return const_iterator(const_cast<const MapType*>(&observers_)->end(), this); |
| 100 } |
| 101 |
| 102 const_iterator begin() const { return cbegin(); } |
| 103 const_iterator end() const { return cend(); } |
| 104 |
| 105 ObserverDataType* operator[](ObserverType* const obs) { |
| 106 { |
| 107 auto it = observers_.find(obs); |
| 108 if (it != observers_.end()) |
| 109 return it->second; |
| 110 } |
| 111 { |
| 112 auto it = observers_to_add_.find(obs); |
| 113 if (it != observers_to_add_.end()) |
| 114 return it->second; |
| 115 } |
| 116 return nullptr; |
| 117 } |
| 118 const ObserverDataType* operator[](ObserverType* const obs) const { |
| 119 { |
| 120 auto it = observers_.find(obs); |
| 121 if (it != observers_.end()) |
| 122 return it->second; |
| 123 } |
| 124 { |
| 125 auto it = observers_to_add_.find(obs); |
| 126 if (it != observers_to_add_.end()) |
| 127 return it->second; |
| 128 } |
| 129 return nullptr; |
| 130 } |
| 131 |
| 132 private: |
| 133 void CompactMaps() { |
| 134 if (iterators_ != 0) |
| 135 return; |
| 136 |
| 137 for (auto it = observers_to_remove_.begin(); |
| 138 it != observers_to_remove_.end(); it++) { |
| 139 delete observers_[*it]; |
| 140 observers_[*it] = nullptr; |
| 141 observers_.erase(*it); |
| 142 } |
| 143 observers_to_remove_.clear(); |
| 144 |
| 145 for (auto it = observers_to_add_.begin(); it != observers_to_add_.end(); |
| 146 it++) { |
| 147 observers_[it->first] = it->second; |
| 148 } |
| 149 observers_to_add_.clear(); |
| 150 } |
| 151 |
| 152 friend class BeginFrameObserverMapTest; |
| 153 }; |
| 154 |
| 155 } // namespace cc |
| 156 |
| 157 #endif // CC_SCHEDULER_BEGIN_FRAME_OBSERVER_MAP_H_ |
OLD | NEW |