-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.h
88 lines (73 loc) · 2.05 KB
/
utils.h
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
#pragma once
#include <boost/asio.hpp>
#include <chrono>
#include <cstdint>
#ifdef NDEBUG
const bool DEBUG = false;
#else
const bool DEBUG = true;
#endif
using port_t = uint16_t;
std::pair<std::string, std::string>
extractHostAndPort(const std::string & address) {
std::string::size_type colonPosition = address.rfind(':');
if (colonPosition == std::string::npos) {
throw std::invalid_argument(
"the argument ('" + address +
"') is not a valid address. Colon character not found."
);
}
return {address.substr(0, colonPosition), address.substr(colonPosition + 1)};
}
void installSignalHandler(int signal, void (*handler)(int), int flags) {
struct sigaction action {};
sigset_t blockMask;
sigemptyset(&blockMask);
action.sa_handler = handler;
action.sa_mask = blockMask;
action.sa_flags = flags;
if (sigaction(signal, &action, nullptr)) {
throw RobotsException("Error: could not install SIGINT handler.");
}
}
template <typename E, typename R>
requires(
(std::same_as<E, boost::asio::ip::udp::endpoint> &&
std::same_as<R, boost::asio::ip::udp::resolver>) ||
(std::same_as<E, boost::asio::ip::tcp::endpoint> &&
std::same_as<R, boost::asio::ip::tcp::resolver>)
) E
resolveAddress(
R & resolver, const std::string & address,
const std::string & programName
) {
try {
auto [addressStr, portStr] = extractHostAndPort(address);
return *resolver.resolve(addressStr, portStr);
} catch (std::exception & e) {
throw RobotsException(
"Error: " + std::string(e.what()) + "\nRun " + programName +
" --help for usage.\n"
);
}
}
void debug(const std::string & message) {
if (DEBUG) {
std::cerr << message;
}
}
class Random {
static const uint64_t constant = 48271;
static const uint64_t modulo = (1ULL << 31) - 1; // 2147483647
uint64_t seed;
public:
Random() : seed(static_cast<uint64_t>(
std::chrono::system_clock::now().time_since_epoch().count()
)) {
}
explicit Random(uint64_t newSeed) : seed(newSeed) {
}
uint64_t next() {
return (seed = seed * constant % modulo);
}
};