-
Notifications
You must be signed in to change notification settings - Fork 706
/
Copy pathbt_recorder.cpp
105 lines (85 loc) · 2.33 KB
/
bt_recorder.cpp
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
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <signal.h>
#include <fstream>
#include "cppzmq/zmq.hpp"
#include "behaviortree_cpp/flatbuffers/BT_logger_generated.h"
// http://zguide.zeromq.org/cpp:interrupt
static bool s_interrupted = false;
static void s_signal_handler(int)
{
s_interrupted = true;
}
static void CatchSignals(void)
{
#ifdef _WIN32
signal(SIGINT, s_signal_handler);
signal(SIGTERM, s_signal_handler);
#else
struct sigaction action;
action.sa_handler = s_signal_handler;
action.sa_flags = 0;
sigemptyset(&action.sa_mask);
sigaction(SIGINT, &action, nullptr);
sigaction(SIGTERM, &action, nullptr);
#endif
}
int main(int argc, char* argv[])
{
if(argc != 2)
{
printf("Wrong number of arguments\nUsage: %s [filename]\n", argv[0]);
return 1;
}
// register CTRL+C signal handler
CatchSignals();
zmq::context_t context(1);
// Socket to talk to server
std::cout << "Trying to connect to [tcp://localhost:1666]\n" << std::endl;
zmq::socket_t subscriber(context, ZMQ_SUB);
subscriber.connect("tcp://localhost:1666");
// Subscribe to everything
subscriber.set(zmq::sockopt::subscribe, "");
printf("----------- Started -----------------\n");
bool first_message = true;
std::ofstream file_os;
while(!s_interrupted)
{
zmq::message_t update;
zmq::message_t msg;
try
{
auto ret = subscriber.recv(update, zmq::recv_flags::none);
(void)ret;
}
catch(zmq::error_t& e)
{
if(!s_interrupted)
{
std::cout << "subscriber.recv() failed with exception: " << e.what() << std::endl;
return -1;
}
}
if(!s_interrupted)
{
char* data_ptr = static_cast<char*>(update.data());
const uint32_t header_size = flatbuffers::ReadScalar<uint32_t>(data_ptr);
if(first_message)
{
printf("First message received\n");
first_message = false;
file_os.open(argv[1], std::ofstream::binary | std::ofstream::out);
file_os.write(data_ptr, 4 + header_size);
}
data_ptr += 4 + header_size;
const uint32_t transition_count = flatbuffers::ReadScalar<uint32_t>(data_ptr);
data_ptr += sizeof(uint32_t);
file_os.write(data_ptr, 12 * transition_count);
}
}
subscriber.close();
printf("Results saved to file\n");
file_os.close();
return 0;
}