OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
network/context.hpp
1#pragma once
2
3#if defined(_WIN32)
4#if !defined(WIN32_LEAN_AND_MEAN)
5#define WIN32_LEAN_AND_MEAN
6#endif
7#if !defined(NOMINMAX)
8#define NOMINMAX
9#endif
10#if !defined(UNICODE)
11#define UNICODE 1
12#endif
13#if !defined(_UNICODE)
14#define _UNICODE 1
15#endif
16// clang-format off
17#include <winsock2.h>
18#include <windows.h>
19// clang-format on
20#endif
21
23
24#include <boost/asio/executor_work_guard.hpp>
25#include <boost/asio/io_context.hpp>
26#include <boost/asio/strand.hpp>
27
28#include <memory>
29
30namespace ossia::net
31{
32using strand_type
33 = decltype(boost::asio::make_strand(std::declval<boost::asio::io_context&>()));
34struct network_context
35{
36 boost::asio::io_context context;
37
38 void run()
39 {
40 auto wg = boost::asio::make_work_guard(context);
41#if defined(__cpp_exceptions)
42 try
43 {
44 context.run();
45 }
46 catch(std::exception& e)
47 {
48 ossia::logger().error("Error while processing network events: {}", e.what());
49 }
50 catch(...)
51 {
52 ossia::logger().error("Error while processing network events.");
53 }
54#else
55 context.run();
56#endif
57 context.restart();
58 }
59};
60using network_context_ptr = std::shared_ptr<network_context>;
61}
spdlog::logger & logger() noexcept
Where the errors will be logged. Default is stderr.
Definition context.cpp:118