summaryrefslogtreecommitdiffstats
blob: 4cba31f2f37c747ccbf763b70be9ece34fb3dd0e (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
48
49
50
51
52
53
54
55
56
57
58
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <iostream>

#include <boost/bind.hpp>

#include <Swiften/Swiften.h>

using namespace Swift;
using namespace boost;

class EchoBot {
	public:
		EchoBot(NetworkFactories* networkFactories) {
			client = new Client("echobot@wonderland.lit", "mypass", networkFactories);
			client->setAlwaysTrustCertificates();
			client->onConnected.connect(bind(&EchoBot::handleConnected, this));
			client->onMessageReceived.connect(
					bind(&EchoBot::handleMessageReceived, this, _1));
			tracer = new ClientXMLTracer(client);
			client->connect();
		}

		~EchoBot() {
			delete tracer;
			delete client;
		}
	
	private:
		void handleConnected() {
			std::cout << "Connected" << std::endl;
		}

		void handleMessageReceived(Message::ref message) {
			// Echo back the incoming message
			message->setTo(message->getFrom());
			message->setFrom(JID());
			client->sendMessage(message);
		}
	
	private:
		Client* client;
		ClientXMLTracer* tracer;
};

int main(int, char**) {
	SimpleEventLoop eventLoop;
	BoostNetworkFactories networkFactories(&eventLoop);

	EchoBot bot(&networkFactories);

	eventLoop.run();
	return 0;
}