summaryrefslogtreecommitdiffstats
blob: 71ccaeb7f4db71f1a65887b67e06daab7e2bcd09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "Swift/Controllers/EventController.h"

#include <boost/bind.hpp>
#include <algorithm>

#include "Swiften/Events/MessageEvent.h"
#include "Swiften/Events/SubscriptionRequestEvent.h"

namespace Swift {

EventController::EventController() {
}

void EventController::handleIncomingEvent(boost::shared_ptr<StanzaEvent> sourceEvent) {
	boost::shared_ptr<MessageEvent> messageEvent = boost::dynamic_pointer_cast<MessageEvent>(sourceEvent);
	boost::shared_ptr<SubscriptionRequestEvent> subscriptionEvent = boost::dynamic_pointer_cast<SubscriptionRequestEvent>(sourceEvent);
	if ((messageEvent && messageEvent->isReadable()) || subscriptionEvent) {
		events_.push_back(sourceEvent);
		sourceEvent->onConclusion.connect(boost::bind(&EventController::handleEventConcluded, this, sourceEvent));
		onEventQueueLengthChange(events_.size());
		onEventQueueEventAdded(sourceEvent);
	}
}

void EventController::handleEventConcluded(boost::shared_ptr<StanzaEvent> event) {
	events_.erase(std::remove(events_.begin(), events_.end(), event), events_.end());
	onEventQueueLengthChange(events_.size());
}

}