summaryrefslogtreecommitdiffstats
blob: 49ecd92a8442648f58d5684cb4e653ab7b8f3ad7 (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
59
60
61
62
63
64
65
66
67
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <iostream>

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

#include <Swiften/Base/sleep.h>
#include <Swiften/Client/Client.h>
#include <Swiften/Client/ClientXMLTracer.h>
#include <Swiften/EventLoop/EventLoop.h>
#include <Swiften/EventLoop/SimpleEventLoop.h>
#include <Swiften/Network/BoostNetworkFactories.h>
#include <Swiften/Network/TimerFactory.h>
#include <Swiften/Roster/GetRosterRequest.h>
#include <Swiften/TLS/BlindCertificateTrustChecker.h>

using namespace Swift;

static SimpleEventLoop eventLoop;
static BoostNetworkFactories networkFactories(&eventLoop);
static int numberOfConnectedClients = 0;
static int numberOfInstances = 100;


static void handleConnected() {
	numberOfConnectedClients++;
	std::cout << "Connected " << numberOfConnectedClients << std::endl;
}

int main(int, char**) {
	char* jid = getenv("SWIFT_BENCHTOOL_JID");
	if (!jid) {
		std::cerr << "Please set the SWIFT_BENCHTOOL_JID environment variable" << std::endl;
		return -1;
	}
	char* pass = getenv("SWIFT_BENCHTOOL_PASS");
	if (!pass) {
		std::cerr << "Please set the SWIFT_BENCHTOOL_PASS environment variable" << std::endl;
		return -1;
	}

	BlindCertificateTrustChecker trustChecker;
	std::vector<CoreClient*> clients;
	for (int i = 0; i < numberOfInstances; ++i) {
		CoreClient* client = new Swift::CoreClient(JID(jid), createSafeByteArray(std::string(pass)), &networkFactories);
		client->setCertificateTrustChecker(&trustChecker);
		client->onConnected.connect(&handleConnected);
		clients.push_back(client);
	}
	
	for (size_t i = 0; i < clients.size(); ++i) {
		clients[i]->connect();
	}

	eventLoop.run();

	for (size_t i = 0; i < clients.size(); ++i) {
		delete clients[i];
	}

	return 0;
}