diff options
| author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) | 
| commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
| tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /Swiften/EventLoop/SimpleEventLoop.cpp | |
| download | swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 | |
Import.
Diffstat (limited to 'Swiften/EventLoop/SimpleEventLoop.cpp')
| -rw-r--r-- | Swiften/EventLoop/SimpleEventLoop.cpp | 48 | 
1 files changed, 48 insertions, 0 deletions
| diff --git a/Swiften/EventLoop/SimpleEventLoop.cpp b/Swiften/EventLoop/SimpleEventLoop.cpp new file mode 100644 index 0000000..96ad774 --- /dev/null +++ b/Swiften/EventLoop/SimpleEventLoop.cpp @@ -0,0 +1,48 @@ +#include "Swiften/EventLoop/SimpleEventLoop.h" + +#include <boost/bind.hpp> + +#include "Swiften/Base/foreach.h" + + +namespace Swift { + +void nop() {} + +SimpleEventLoop::SimpleEventLoop() : isRunning_(true) { +} + +void SimpleEventLoop::run() { +	while (isRunning_) { +		std::vector<Event> events; +		{ +			boost::unique_lock<boost::mutex> lock(eventsMutex_); +			while (events_.size() == 0) { +				eventsAvailable_.wait(lock); +			} +			events.swap(events_); +		} +		foreach(const Event& event, events) { +			handleEvent(event); +		} +	} +} + +void SimpleEventLoop::stop() { +	postEvent(boost::bind(&SimpleEventLoop::doStop, this), 0); +} + +void SimpleEventLoop::doStop() { +  isRunning_ = false; +} + +void SimpleEventLoop::post(const Event& event) { +	{ +		boost::lock_guard<boost::mutex> lock(eventsMutex_); +		events_.push_back(event); +	} +	eventsAvailable_.notify_one(); +} + + +} | 
 Swift
 Swift