blob: eab28487a1d1bf79ca97e12e7014d625c29d38cc (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#ifndef SWIFTEN_IQRouter_H
#define SWIFTEN_IQRouter_H
#include <boost/shared_ptr.hpp>
#include <vector>
#include "Swiften/Base/String.h"
#include "Swiften/Elements/IQ.h"
namespace Swift {
class IQChannel;
class IQHandler;
class IQRouter {
public:
IQRouter(IQChannel* channel);
~IQRouter();
void addHandler(IQHandler* handler);
void removeHandler(IQHandler* handler);
void addHandler(boost::shared_ptr<IQHandler> handler);
void removeHandler(boost::shared_ptr<IQHandler> handler);
void sendIQ(boost::shared_ptr<IQ> iq);
String getNewIQID();
bool isAvailable();
private:
void handleIQ(boost::shared_ptr<IQ> iq);
void processPendingRemoves();
private:
IQChannel* channel_;
std::vector< boost::shared_ptr<IQHandler> > handlers_;
std::vector< boost::shared_ptr<IQHandler> > queuedRemoves_;
bool queueRemoves_;
};
}
#endif
|