mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
401 lines
11 KiB
C++
401 lines
11 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include <algorithm>
|
|
#include <array>
|
|
#include <chrono>
|
|
#include <cmath>
|
|
#include <cstdlib>
|
|
#include <limits>
|
|
#include <numeric>
|
|
#include <random>
|
|
#include <string_view>
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
#include <fmt/format.h>
|
|
#include <fmt/ranges.h>
|
|
#include <wpi/Synchronization.h>
|
|
#include <wpi/print.h>
|
|
#include <wpi/timestamp.h>
|
|
|
|
#include "networktables/DoubleArrayTopic.h"
|
|
#include "networktables/NetworkTableInstance.h"
|
|
#include "ntcore.h"
|
|
#include "ntcore_c.h"
|
|
#include "ntcore_cpp.h"
|
|
|
|
void bench();
|
|
void bench2();
|
|
void stress();
|
|
void stress2();
|
|
void latency();
|
|
|
|
int main(int argc, char* argv[]) {
|
|
if (argc == 2 && std::string_view{argv[1]} == "bench") {
|
|
bench();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
if (argc == 2 && std::string_view{argv[1]} == "bench2") {
|
|
bench2();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
if (argc == 2 && std::string_view{argv[1]} == "stress") {
|
|
stress();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
if (argc == 2 && std::string_view{argv[1]} == "stress2") {
|
|
stress2();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
if (argc == 2 && std::string_view{argv[1]} == "latency") {
|
|
latency();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
auto myValue = nt::GetEntry(nt::GetDefaultInstance(), "MyValue");
|
|
|
|
nt::SetEntryValue(myValue, nt::Value::MakeString("Hello World"));
|
|
|
|
wpi::print("{}\n", nt::GetEntryValue(myValue).GetString());
|
|
}
|
|
|
|
void PrintTimes(std::vector<int64_t>& times) {
|
|
std::sort(times.begin(), times.end());
|
|
int64_t min = times[0];
|
|
int64_t max = times[times.size() - 1];
|
|
double mean =
|
|
static_cast<double>(std::accumulate(times.begin(), times.end(), 0)) /
|
|
times.size();
|
|
double sq_sum =
|
|
std::inner_product(times.begin(), times.end(), times.begin(), 0);
|
|
double stdev = std::sqrt(sq_sum / times.size() - mean * mean);
|
|
|
|
wpi::print("min: {} max: {}, mean: {}, stdev: {}\n", min, max, mean, stdev);
|
|
wpi::print("min 10: {}\n", fmt::join(times.begin(), times.begin() + 10, ","));
|
|
wpi::print("max 10: {}\n", fmt::join(times.end() - 10, times.end(), ","));
|
|
}
|
|
|
|
// benchmark
|
|
void bench() {
|
|
// set up instances
|
|
auto client = nt::CreateInstance();
|
|
auto server = nt::CreateInstance();
|
|
|
|
// connect client and server
|
|
nt::StartServer(server, "bench.json", "127.0.0.1", 10000);
|
|
nt::StartClient(client, "client");
|
|
nt::SetServer(client, "127.0.0.1", 10000);
|
|
|
|
using namespace std::chrono_literals;
|
|
std::this_thread::sleep_for(1s);
|
|
|
|
// add "typical" set of subscribers on client and server
|
|
nt::SubscribeMultiple(client, {{std::string_view{}}});
|
|
nt::Subscribe(nt::GetTopic(client, "highrate"), NT_DOUBLE, "double",
|
|
{.sendAll = true, .keepDuplicates = true});
|
|
nt::SubscribeMultiple(server, {{std::string_view{}}});
|
|
auto pub = nt::Publish(nt::GetTopic(server, "highrate"), NT_DOUBLE, "double");
|
|
nt::SetDouble(pub, 0);
|
|
|
|
// warm up
|
|
for (int i = 1; i <= 10000; ++i) {
|
|
nt::SetDouble(pub, i * 0.01);
|
|
if (i % 2000 == 0) {
|
|
std::this_thread::sleep_for(0.02s);
|
|
}
|
|
}
|
|
|
|
std::vector<int64_t> flushTimes;
|
|
flushTimes.reserve(100);
|
|
|
|
std::vector<int64_t> times;
|
|
times.reserve(100001);
|
|
|
|
// benchmark
|
|
auto start = std::chrono::high_resolution_clock::now();
|
|
int64_t now = nt::Now();
|
|
for (int i = 1; i <= 100000; ++i) {
|
|
nt::SetDouble(pub, i * 0.01, now);
|
|
int64_t prev = now;
|
|
now = nt::Now();
|
|
times.emplace_back(now - prev);
|
|
if (i % 2000 == 0) {
|
|
nt::Flush(server);
|
|
flushTimes.emplace_back(nt::Now() - now);
|
|
std::this_thread::sleep_for(0.02s);
|
|
now = nt::Now();
|
|
}
|
|
}
|
|
auto stop = std::chrono::high_resolution_clock::now();
|
|
|
|
wpi::print("total time: {}us\n",
|
|
std::chrono::duration_cast<std::chrono::microseconds>(stop - start)
|
|
.count());
|
|
PrintTimes(times);
|
|
wpi::print("-- Flush --\n");
|
|
PrintTimes(flushTimes);
|
|
}
|
|
|
|
void bench2() {
|
|
// set up instances
|
|
auto client1 = nt::CreateInstance();
|
|
auto client2 = nt::CreateInstance();
|
|
auto server = nt::CreateInstance();
|
|
|
|
// connect client and server
|
|
nt::StartServer(server, "bench2.json", "127.0.0.1", 10000);
|
|
nt::StartClient(client1, "client1");
|
|
nt::StartClient(client2, "client2");
|
|
nt::SetServer(client1, "127.0.0.1", 10000);
|
|
nt::SetServer(client2, "127.0.0.1", 10000);
|
|
|
|
using namespace std::chrono_literals;
|
|
std::this_thread::sleep_for(1s);
|
|
|
|
// add "typical" set of subscribers on client and server
|
|
nt::SubscribeMultiple(client1, {{std::string_view{}}});
|
|
nt::SubscribeMultiple(client2, {{std::string_view{}}});
|
|
nt::SubscribeMultiple(server, {{std::string_view{}}});
|
|
|
|
// create 1000 entries
|
|
std::array<NT_Entry, 1000> pubs;
|
|
for (int i = 0; i < 1000; ++i) {
|
|
pubs[i] = nt::GetEntry(
|
|
nt::GetTopic(server,
|
|
fmt::format("/some/long/name/with/lots/of/slashes/{}", i)),
|
|
NT_DOUBLE_ARRAY, "double[]");
|
|
}
|
|
|
|
// warm up
|
|
for (int i = 1; i <= 100; ++i) {
|
|
for (auto pub : pubs) {
|
|
double vals[3] = {i * 0.01, i * 0.02, i * 0.03};
|
|
nt::SetDoubleArray(pub, vals);
|
|
}
|
|
nt::FlushLocal(server);
|
|
std::this_thread::sleep_for(0.02s);
|
|
}
|
|
|
|
std::vector<int64_t> flushTimes;
|
|
flushTimes.reserve(1001);
|
|
|
|
std::vector<int64_t> times;
|
|
times.reserve(1001);
|
|
|
|
// benchmark
|
|
auto start = std::chrono::high_resolution_clock::now();
|
|
int64_t now = nt::Now();
|
|
for (int i = 1; i <= 1000; ++i) {
|
|
for (auto pub : pubs) {
|
|
double vals[3] = {i * 0.01, i * 0.02, i * 0.03};
|
|
nt::SetDoubleArray(pub, vals);
|
|
}
|
|
int64_t prev = now;
|
|
now = nt::Now();
|
|
times.emplace_back(now - prev);
|
|
nt::FlushLocal(server);
|
|
nt::Flush(server);
|
|
flushTimes.emplace_back(nt::Now() - now);
|
|
std::this_thread::sleep_for(0.02s);
|
|
now = nt::Now();
|
|
}
|
|
auto stop = std::chrono::high_resolution_clock::now();
|
|
|
|
wpi::print("total time: {}us\n",
|
|
std::chrono::duration_cast<std::chrono::microseconds>(stop - start)
|
|
.count());
|
|
PrintTimes(times);
|
|
wpi::print("-- Flush --\n");
|
|
PrintTimes(flushTimes);
|
|
}
|
|
|
|
static std::random_device r;
|
|
static std::mt19937 gen(r());
|
|
static std::uniform_real_distribution<double> dist;
|
|
|
|
void stress() {
|
|
auto server = nt::CreateInstance();
|
|
nt::StartServer(server, "stress.json", "127.0.0.1", 10000);
|
|
nt::SubscribeMultiple(server, {{std::string_view{}}});
|
|
|
|
using namespace std::chrono_literals;
|
|
|
|
for (int count = 0; count < 10; ++count) {
|
|
std::thread{[] {
|
|
auto client = nt::CreateInstance();
|
|
nt::SubscribeMultiple(client, {{std::string_view{}}});
|
|
for (int i = 0; i < 300; ++i) {
|
|
// sleep a random amount of time
|
|
std::this_thread::sleep_for(0.1s * dist(gen));
|
|
|
|
// connect
|
|
nt::StartClient(client, "client");
|
|
nt::SetServer(client, "127.0.0.1", 10000);
|
|
|
|
// sleep a random amount of time
|
|
std::this_thread::sleep_for(0.1s * dist(gen));
|
|
|
|
// disconnect
|
|
nt::StopClient(client);
|
|
}
|
|
nt::DestroyInstance(client);
|
|
}}.detach();
|
|
|
|
std::thread{[server, count] {
|
|
for (int n = 0; n < 300; ++n) {
|
|
// sleep a random amount of time
|
|
std::this_thread::sleep_for(0.01s * dist(gen));
|
|
|
|
// create publishers
|
|
NT_Publisher pub[30];
|
|
for (int i = 0; i < 30; ++i) {
|
|
pub[i] =
|
|
nt::Publish(nt::GetTopic(server, fmt::format("{}_{}", count, i)),
|
|
NT_DOUBLE, "double", {});
|
|
}
|
|
|
|
// publish values
|
|
for (int i = 0; i < 200; ++i) {
|
|
// sleep a random amount of time between each value set
|
|
std::this_thread::sleep_for(0.001s * dist(gen));
|
|
for (int i = 0; i < 30; ++i) {
|
|
nt::SetDouble(pub[i], dist(gen));
|
|
}
|
|
nt::FlushLocal(server);
|
|
}
|
|
|
|
// sleep a random amount of time
|
|
std::this_thread::sleep_for(0.1s * dist(gen));
|
|
|
|
// remove publishers
|
|
for (int i = 0; i < 30; ++i) {
|
|
nt::Unpublish(pub[i]);
|
|
}
|
|
}
|
|
}}.detach();
|
|
}
|
|
|
|
std::this_thread::sleep_for(100s);
|
|
}
|
|
|
|
void stress2() {
|
|
using namespace std::chrono_literals;
|
|
|
|
auto testTopicName = "testTopic";
|
|
auto count = 1000;
|
|
std::atomic_bool isDone{false};
|
|
nt::PubSubOptions pubSubOptions{
|
|
.periodic = std::numeric_limits<double>::min(),
|
|
.sendAll = true,
|
|
.keepDuplicates = true};
|
|
auto server = nt::NetworkTableInstance::Create();
|
|
server.StartServer();
|
|
auto serverTopic = server.GetDoubleArrayTopic(testTopicName);
|
|
auto subscriber = serverTopic.Subscribe({}, pubSubOptions);
|
|
std::atomic_int receivedCount{0};
|
|
server.AddListener(subscriber, NT_EVENT_VALUE_REMOTE, [&](auto event) {
|
|
if (receivedCount.fetch_add(1) == count) {
|
|
isDone = true;
|
|
}
|
|
// Warnings about duplicate pubs occur if I either introduce this short
|
|
// delay...
|
|
std::this_thread::sleep_for(1ms);
|
|
// ...or a little IO
|
|
// System.out.println("Got %d: %s"
|
|
// .formatted(receivedCount.get(), Arrays.toString(
|
|
// event.valueData.value.getDoubleArray())));
|
|
});
|
|
|
|
auto client = nt::NetworkTableInstance::Create();
|
|
client.SetServer("localhost");
|
|
auto clientName = "test client";
|
|
client.StartClient(clientName);
|
|
std::this_thread::sleep_for(2s); // Startup time.
|
|
int sentCount = 0;
|
|
while (sentCount < count) {
|
|
auto clientTopic = client.GetDoubleArrayTopic(testTopicName);
|
|
{
|
|
auto publisher = clientTopic.Publish(pubSubOptions);
|
|
publisher.Set(
|
|
{{static_cast<double>(sentCount), static_cast<double>(sentCount),
|
|
static_cast<double>(sentCount)}});
|
|
// client.Flush();
|
|
sentCount++;
|
|
}
|
|
std::this_thread::yield();
|
|
}
|
|
|
|
std::this_thread::sleep_for(10s);
|
|
fmt::print("isDone: {}", isDone.load());
|
|
}
|
|
|
|
void latency() {
|
|
// set up instances
|
|
auto client1 = nt::CreateInstance();
|
|
auto client2 = nt::CreateInstance();
|
|
auto server = nt::CreateInstance();
|
|
|
|
// connect client and server
|
|
nt::StartServer(server, "latency.json", "127.0.0.1", 10000);
|
|
nt::StartClient(client1, "client1");
|
|
nt::SetServer(client1, "127.0.0.1", 10000);
|
|
nt::StartClient(client2, "client2");
|
|
nt::SetServer(client2, "127.0.0.1", 10000);
|
|
|
|
using namespace std::chrono_literals;
|
|
std::this_thread::sleep_for(1s);
|
|
|
|
// create publishers and subscribers
|
|
auto pub =
|
|
nt::Publish(nt::GetTopic(client1, "highrate"), NT_DOUBLE, "double");
|
|
nt::SubscribeMultiple(server, {{std::string_view{}}});
|
|
auto sub =
|
|
nt::Subscribe(nt::GetTopic(server, "highrate"), NT_DOUBLE, "double");
|
|
auto sub2 =
|
|
nt::Subscribe(nt::GetTopic(client2, "highrate"), NT_DOUBLE, "double");
|
|
|
|
std::this_thread::sleep_for(1s);
|
|
|
|
nt::SetDouble(pub, 0);
|
|
#if 0
|
|
// warm up
|
|
for (int i = 1; i <= 10000; ++i) {
|
|
nt::SetDouble(pub, i * 0.01);
|
|
if (i % 2000 == 0) {
|
|
std::this_thread::sleep_for(0.02s);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
std::vector<int64_t> times;
|
|
times.reserve(1001);
|
|
|
|
// benchmark client to server
|
|
for (int i = 1; i <= 1000; ++i) {
|
|
int64_t sendTime = nt::Now();
|
|
nt::SetDouble(pub, i, sendTime);
|
|
nt::Flush(client1);
|
|
while (nt::GetDouble(sub, 0) != i) {
|
|
wpi::WaitForObject(sub);
|
|
}
|
|
times.emplace_back(nt::Now() - sendTime);
|
|
}
|
|
PrintTimes(times);
|
|
|
|
// benchmark client to client
|
|
times.resize(0);
|
|
for (int i = 2001; i <= 3000; ++i) {
|
|
int64_t sendTime = nt::Now();
|
|
nt::SetDouble(pub, i, sendTime);
|
|
nt::Flush(client1);
|
|
while (nt::GetDouble(sub2, 0) != i) {
|
|
wpi::WaitForObject(sub2);
|
|
}
|
|
times.emplace_back(nt::Now() - sendTime);
|
|
}
|
|
|
|
PrintTimes(times);
|
|
}
|