/* * Copyright (C) 2001-2008 Jacek Sieka, arnetheduck on gmail point com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef DCPLUSPLUS_DCPP_SPEAKER_H #define DCPLUSPLUS_DCPP_SPEAKER_H #include "CriticalSection.h" namespace dcpp { template class Speaker { typedef vector ListenerList; typedef typename ListenerList::iterator ListenerIter; public: Speaker() throw() { } virtual ~Speaker() throw() { } template void fire(T0 type) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type); } } template void fire(T0 type, const T1& p1) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1); } } template void fire(T0 type, T1& p1) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1); } } template void fire(T0 type, const T1& p1, const T2& p2) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1, p2); } } template void fire(T0 type, const T1& p1, const T2& p2, const T3& p3) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1, p2, p3); } } template void fire(T0 type, const T1& p1, const T2& p2, const T3& p3, const T4& p4) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1, p2, p3, p4); } } template void fire(T0 type, const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1, p2, p3, p4, p5); } } template void fire(T0 type, const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6) throw() { Lock l(listenerCS); tmp = listeners; for(ListenerIter i=tmp.begin(); i != tmp.end(); ++i ) { (*i)->on(type, p1, p2, p3, p4, p5, p6); } } void addListener(Listener* aListener) { Lock l(listenerCS); if(find(listeners.begin(), listeners.end(), aListener) == listeners.end()) listeners.push_back(aListener); } void removeListener(Listener* aListener) { Lock l(listenerCS); ListenerIter it = find(listeners.begin(), listeners.end(), aListener); if(it != listeners.end()) listeners.erase(it); } void removeListeners() { Lock l(listenerCS); listeners.clear(); } protected: ListenerList listeners; ListenerList tmp; CriticalSection listenerCS; }; } // namespace dcpp #endif // !defined(SPEAKER_H)