Diag-Client-Lib
thread.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 
9 #ifndef DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_THREAD_H
10 #define DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_THREAD_H
11 
12 #include <pthread.h>
13 
14 #include <string>
15 #include <thread>
16 
17 namespace utility {
18 namespace thread {
19 
20 class Thread final {
21  public:
25  Thread() noexcept = default;
26 
35  template<typename Callable, typename... Args>
36  Thread(std::string const &thread_name, Callable &&callable, Args &&...args) noexcept
37  : thread_{std::forward<Callable>(callable), std::forward<Args>(args)...} {
38  // Set thread name
39  pthread_setname_np(thread_.native_handle(), thread_name.c_str());
40  }
41 
45  Thread(const Thread &other) noexcept = delete;
46  Thread &operator=(const Thread &other) noexcept = delete;
47 
51  Thread(Thread &&other) noexcept = default;
52  Thread &operator=(Thread &&other) noexcept = default;
53 
57  ~Thread() noexcept { Join(); }
58 
62  void Join() noexcept {
63  if (thread_.joinable()) { thread_.join(); }
64  }
65 
66  private:
67  std::thread thread_{};
68 };
69 
70 } // namespace thread
71 } // namespace utility
72 #endif // DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_THREAD_H
Thread & operator=(Thread &&other) noexcept=default
Thread(const Thread &other) noexcept=delete
Deleted copy assignment and copy constructor.
Thread() noexcept=default
Default constructor.
Thread(Thread &&other) noexcept=default
Defaulted move assignment and move constructor.
~Thread() noexcept
Destructor.
Definition: thread.h:57
std::thread thread_
Definition: thread.h:67
Thread & operator=(const Thread &other) noexcept=delete
void Join() noexcept
Function to join the running thread.
Definition: thread.h:62