summaryrefslogtreecommitdiffstats
blob: 97d760d4238f7940c3699039a8ac2523a195bf95 (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 <thread>

#include <boost/bind.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 (auto& client : clients) {
        client->connect();
    }

    eventLoop.run();

    for (auto& client : clients) {
        delete client;
    }

    return 0;
}