Diag-Client-Lib
io_context.cpp
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 
10 
11 namespace boost_support {
12 namespace socket {
13 
15  : io_context_{},
16  exit_request_{false},
17  running_{false},
18  cond_var_{},
19  mutex_{} {}
20 
21 IoContext::IoContext(std::string_view context_name) noexcept
22  : io_context_{},
23  exit_request_{false},
24  running_{false},
25  cond_var_{},
26  context_name_{context_name},
27  thread_{},
28  mutex_{} {
29  // start thread to execute async tasks
30  thread_ = utility::thread::Thread(context_name_, [this]() {
31  std::unique_lock<std::mutex> lck(mutex_);
32  while (!exit_request_) {
33  if (!running_) {
34  cond_var_.wait(lck, [this]() { return exit_request_ || running_; });
35  }
36  if (!exit_request_) {
37  if (running_) {
38  lck.unlock();
39  io_context_.restart();
40  io_context_.run();
41  lck.lock();
42  }
43  }
44  }
45  });
46 }
47 
49  exit_request_ = true;
50  running_ = false;
51  cond_var_.notify_all();
52  thread_.Join();
53 }
54 
55 void IoContext::Initialize() noexcept {
56  std::lock_guard<std::mutex> lock{mutex_};
57  running_ = true;
58  cond_var_.notify_all();
59 }
60 
61 void IoContext::DeInitialize() noexcept {
62  std::lock_guard<std::mutex> lock{mutex_};
63  running_ = false;
64  io_context_.stop();
65  cond_var_.notify_all();
66 }
67 
69 
70 } // namespace socket
71 } // namespace boost_support
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
~IoContext() noexcept
Destruct an instance of IoContext.
Definition: io_context.cpp:48
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
void Join() noexcept
Function to join the running thread.
Definition: thread.h:62