Diag-Client-Lib
io_context.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2 * Copyright (C) 2024 Avijit Dey
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_IO_CONTEXT_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_IO_CONTEXT_H_
10 
11 #include <boost/asio.hpp>
12 #include <string_view>
13 
14 #include "utility/thread.h"
15 
16 namespace boost_support {
17 namespace socket {
18 
22 class IoContext final {
23  public:
27  using Context = boost::asio::io_context;
28 
29  public:
33  IoContext() noexcept;
34 
38  IoContext(std::string_view context_name) noexcept;
39 
43  IoContext(const IoContext &other) noexcept = delete;
44  IoContext &operator=(const IoContext &other) noexcept = delete;
45 
49  IoContext(IoContext &&other) noexcept = delete;
50  IoContext &operator=(IoContext &&other) noexcept = delete;
51 
55  ~IoContext() noexcept;
56 
60  void Initialize() noexcept;
61 
65  void DeInitialize() noexcept;
66 
71  Context &GetContext() noexcept;
72 
73  private:
78 
82  std::atomic_bool exit_request_;
83 
87  std::atomic_bool running_;
88 
92  std::condition_variable cond_var_;
93 
97  std::string context_name_;
98 
102  utility::thread::Thread thread_;
103 
107  std::mutex mutex_;
108 };
109 } // namespace socket
110 } // namespace boost_support
111 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_IO_CONTEXT_H_
Wrapper class to hold boost io context required for io object( sockets)
Definition: io_context.h:22
void DeInitialize() noexcept
De-initialize the context.
Definition: io_context.cpp:61
boost::asio::io_context Context
Type alias for boost context.
Definition: io_context.h:27
std::atomic_bool exit_request_
Flag to terminate the thread.
Definition: io_context.h:82
std::mutex mutex_
mutex to lock critical section
Definition: io_context.h:107
void Initialize() noexcept
Initialize the context.
Definition: io_context.cpp:55
IoContext() noexcept
Default constructs an instance of IoContext.
Definition: io_context.cpp:14
Context io_context_
boost io context
Definition: io_context.h:77
std::string context_name_
The name of context.
Definition: io_context.h:97
Context & GetContext() noexcept
Function to get the io context reference.
Definition: io_context.cpp:68
utility::thread::Thread thread_
The thread itself.
Definition: io_context.h:102
std::condition_variable cond_var_
Conditional variable to block the thread.
Definition: io_context.h:92
std::atomic_bool running_
Flag to start the thread.
Definition: io_context.h:87