-
Notifications
You must be signed in to change notification settings - Fork 0
/
just_connect.cpp
215 lines (178 loc) · 5.78 KB
/
just_connect.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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#include "stompconn/connection.hpp"
#include "stompconn/version.hpp"
#include "stomptalk/parser.h"
#include <list>
#include <string_view>
#include <functional>
#include <iostream>
#include <iomanip>
#include <chrono>
#include <stdlib.h>
#ifndef _WIN32
#include <signal.h>
#endif // _WIN32
using namespace std::literals;
namespace u {
std::ostream& output(std::ostream& os)
{
namespace ch = std::chrono;
auto n = ch::system_clock::now();
auto d = n.time_since_epoch();
auto ms = ch::duration_cast<ch::milliseconds>(d).count() % 1000;
auto t = static_cast<std::time_t>(ch::duration_cast<ch::seconds>(d).count());
auto tm = *std::gmtime(&t);
return os << std::put_time(&tm, "%FT%T")
<< '.' << std::setfill('0') << std::setw(3) << ms << 'Z' << ' ';
}
std::ostream& cerr()
{
return output(std::cerr);
}
std::ostream& cout()
{
return output(std::cout);
}
} // namespace u
namespace {
struct event_erase {
void operator()(event_base* ptr) const noexcept {
event_base_free(ptr);
}
void operator()(evdns_base* ptr) const noexcept {
evdns_base_free(ptr, DNS_ERR_SHUTDOWN);
}
};
auto create_queue()
{
u::cout() << "stompconn: v"sv << stompconn::version() << std::endl;
u::cout() << "stomptalk: v"sv << stomptalk_version() << std::endl;
u::cout() << "libevent-"sv << event_get_version() << std::endl;
auto base = event_base_new();
return std::unique_ptr<event_base, event_erase>{base};
}
auto create_dns(event_base* queue)
{
assert(queue);
auto dns = evdns_base_new(queue, EVDNS_BASE_INITIALIZE_NAMESERVERS);
return std::unique_ptr<evdns_base, event_erase>{dns};
}
class justconnect
{
using connection = stompconn::connection;
evdns_base* dns_{};
event_base* queue_{};
connection conn_{ queue_,
[&](auto ef) { on_event(ef); }
};
public:
justconnect(evdns_base* dns, event_base* queue)
: dns_{dns}
, queue_{queue}
{
// прием сообщения об ошибке
// от сервера: кадр ERROR
// https://stomp.github.io/stomp-specification-1.2.html#ERROR
conn_.on_error([](auto frame) {
u::cerr() << frame.dump() << std::endl;
});
}
template<class Rep, class Period>
void connect(const std::string& host,
std::chrono::duration<Rep, Period> timeout, int port = 61613)
{
using namespace std::literals;
u::cout() << "connect to: "sv << host << std::endl;
conn_.connect(dns_, host, port, timeout);
}
void on_event(short ef)
{
if (ef == BEV_EVENT_CONNECTED)
on_connect();
else
on_connection_error(ef);
}
void on_connect()
{
u::cout() << "tcp ok"sv << std::endl;
stompconn::stomplay::logon cmd("/"sv, "stomp"sv, "st321"sv);
cmd.push(stompconn::stomplay::header::heart_beat(1000, 1000));
u::cout() << cmd.dump() << std::endl;
// после отправки cmd приходит в негодность
conn_.send(std::move(cmd), [&](auto frame) {
// полный дамп фремйма
u::cout() << frame.dump() << std::endl;
// выводим интересущие нас заголовки по имени
u::cout() << "+ 1.server: "sv << frame.get("server"sv) << std::endl;
// и по идентификатору
u::cout() << "+ 2.server: "sv << frame.get(st_header_server) << std::endl;
u::cout() << "+ 1.session: "sv << frame.get(st_header_session) << std::endl;
u::cout() << "+ 2.session: "sv << frame.session() << std::endl;
// отключимся через 10 секунд
// после успешной авторизации
logout(std::chrono::seconds(10));
});
}
void on_connection_error(short ef)
{
if (ef == (BEV_EVENT_WRITING|BEV_EVENT_TIMEOUT))
u::cerr() << "unable to connect"sv << std::endl;
if (ef & BEV_EVENT_EOF)
{
u::cerr() << "connection closed"sv << std::endl;
}
if (ef & BEV_EVENT_ERROR)
u::cerr() << "connection error"sv << std::endl;
if (ef == (BEV_EVENT_READING|BEV_EVENT_TIMEOUT))
u::cerr() << "connection timeout"sv << std::endl;
// для примера остановим обработку очереди
// чтобы приложение завершилось
event_base_loopbreak(queue_);
}
template<class T>
void logout(T timeout)
{
conn_.once(timeout, [&]{
try {
// отправим команду на отключение
// сервер разорвет соединение после ответа
conn_.logout([](auto frame) {
u::cout() << frame.dump() << std::endl;
});
}
catch (const std::exception& e)
{
u::cerr() << e.what() << std::endl;
}
});
}
};
}
int main(int argc, char *argv[])
{
// in /etc/hosts
std::string host{"rabbitmq.lan"sv};
if (argc > 1)
host = argv[1];
try
{
#ifdef _WIN32
{
WSADATA w;
::WSAStartup(MAKEWORD(2, 2), &w);
}
#endif // _WIN32
auto q = create_queue();
auto queue = q.get();
auto d = create_dns(queue);
u::cout() << "just connect!"sv << std::endl;
justconnect c{d.get(), queue};
// подключаемся к серверу
c.connect(host, std::chrono::seconds(20));
event_base_dispatch(queue);
}
catch (const std::exception& e)
{
u::cerr() << e.what() << std::endl;
}
return 0;
}