'オブザーバー'のリストを持つオブジェクトがあります。これらのオブザーバーは通知を受け取り、自分自身または他のオブザーバーをオブジェクトに追加またはオブジェクトから削除することで、この変更に対応する場合があります。
これをサポートするための、堅牢で、不必要に遅くない方法が必要です。
class Thing {
public:
class Observer {
public:
virtual void on_change(Thing* thing) = 0;
};
void add_observer(Observer* observer);
void remove_observer(Observer* observer);
void notify_observers();
private:
typedef std::vector<Observer*> Observers;
Observers observers;
};
void Thing::notify_observers() {
/* going backwards through a vector allows the current item to be removed in
the callback, but it can't cope with not-yet-called observers being removed */
for(int i=observers.size()-1; i>=0; i--)
observers[i]->on_change(this);
// OR is there another way using something more iterator-like?
for(Observers::iterator i=...;...;...) {
(*i)->on_change(this); //<-- what if the Observer implementation calls add_ or remove_ during its execution?
}
}
おそらく、add_とremove_によって設定されたフラグを使用して、イテレーターが無効になった場合にリセットし、各オブザーバーに「世代」カウンターを設定して、すでに呼び出しているかどうかを確認できます。