blob: ba6cf8494db9486411a0ee47fa97a2bd1e6b06a4 (
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <boost/bind.hpp>
#include <boost/thread.hpp>
#include <iostream>
#include <Swiften/Client/Client.h>
#include <Swiften/Network/TimerFactory.h>
#include <Swiften/Network/BoostNetworkFactories.h>
#include <Swiften/EventLoop/EventLoop.h>
#include <Swiften/EventLoop/SimpleEventLoop.h>
#include <Swiften/Roster/GetRosterRequest.h>
#include <Swiften/Client/ClientXMLTracer.h>
#include <Swiften/Base/sleep.h>
#include <Swiften/TLS/BlindCertificateTrustChecker.h>
using namespace Swift;
SimpleEventLoop eventLoop;
BoostNetworkFactories networkFactories(&eventLoop);
int numberOfConnectedClients = 0;
int numberOfInstances = 100;
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;
}
|