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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
// pub_speed_test.cpp
//
// Paho C++ sample client application to do a simple test of the speed at
// which messages can be published.
//
/*******************************************************************************
* Copyright (c) 2013-2023 Frank Pagliughi <fpagliughi@mindspring.com>
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v20.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Frank Pagliughi - initial implementation and documentation
*******************************************************************************/
#include <atomic>
#include <chrono>
#include <cstdlib>
#include <cstring>
#include <future>
#include <iostream>
#include <string>
#include <thread>
#include "mqtt/async_client.h"
#include "mqtt/thread_queue.h"
using namespace std;
using namespace std::chrono;
const std::string DFLT_SERVER_ADDRESS{"mqtt://localhost:1883"};
const size_t DFLT_PAYLOAD_SIZE = 1024;
const int DFLT_N_MSG = 1000, DFLT_QOS = 1;
const string TOPIC{"test/speed"};
const char* LWT_PAYLOAD = "pub_speed_test died unexpectedly.";
// Queue for passing tokens to the wait thread
mqtt::thread_queue<mqtt::delivery_token_ptr> que;
// Get the current time on the steady clock
steady_clock::time_point now() { return steady_clock::now(); }
// Convert a duration to a count of milliseconds
template <class Rep, class Period>
int64_t msec(const std::chrono::duration<Rep, Period>& dur)
{
return (int64_t)duration_cast<milliseconds>(dur).count();
}
// --------------------------------------------------------------------------
// Thread function will wait for all the tokens to complete.
// Any exceptions thrown from here will be caught in main().
void token_wait_func()
{
while (true) {
mqtt::delivery_token_ptr tok = que.get();
if (!tok)
break;
// cout.put('x');
tok->wait();
}
}
// --------------------------------------------------------------------------
int main(int argc, char* argv[])
{
string address = (argc > 1) ? string(argv[1]) : DFLT_SERVER_ADDRESS;
int nMsg = (argc > 2) ? atoi(argv[2]) : DFLT_N_MSG;
size_t msgSz = (size_t)((argc > 3) ? atol(argv[3]) : DFLT_PAYLOAD_SIZE);
int qos = (argc > 4) ? atoi(argv[4]) : DFLT_QOS;
cout << "Initializing for server '" << address << "'..." << flush;
mqtt::async_client cli(address, "");
mqtt::message willmsg(TOPIC, LWT_PAYLOAD, 1, true);
mqtt::will_options will(willmsg);
mqtt::connect_options connOpts;
connOpts.set_clean_session(true);
connOpts.set_will(will);
// Create a payload
mqtt::binary payload;
for (size_t i = 0; i < msgSz; ++i) payload.push_back('a' + i % 26);
cout << "OK" << endl;
try {
// Create the message (move payload into it)
auto msg = mqtt::make_message(TOPIC, std::move(payload), qos, false);
// Connect to the broker
cout << "\nConnecting..." << flush;
auto start = now();
cli.connect(connOpts)->wait();
auto end = now();
cout << "OK" << endl;
cout << "Connected in " << msec(end - start) << "ms" << endl;
auto fut = std::async(launch::async, token_wait_func);
// Publish the messages
cout << "\nPublishing " << nMsg << " messages..." << flush;
start = now();
for (int i = 0; i < nMsg; ++i) {
auto dtok = cli.publish(msg);
// cout.put('^');
que.put(std::move(dtok));
}
auto pubend = now();
que.put(mqtt::delivery_token_ptr());
// Wait for all the tokens to complete
fut.get();
end = now();
cout << "OK" << endl;
auto ms = msec(pubend - start);
cout << "Published in " << ms << "ms " << (nMsg / ms) << "k msg/sec" << endl;
ms = msec(end - start);
cout << "Acknowledged in " << ms << "ms " << (nMsg / ms) << "k msg/sec" << endl;
// Disconnect
cout << "\nDisconnecting..." << flush;
start = now();
cli.disconnect(seconds(10))->wait();
end = now();
cout << "OK" << endl;
cout << "Disconnected in " << msec(end - start) << "ms" << endl;
}
catch (const mqtt::exception& exc) {
que.put(mqtt::delivery_token_ptr{});
cerr << exc.what() << endl;
return 1;
}
return 0;
}
|