Diag-Client-Lib
state.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 DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_STATE_H
9 #define DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_STATE_H
10 
11 #include <atomic>
12 #include <cstdint>
13 #include <map>
14 #include <memory>
15 #include <mutex>
16 #include <string>
17 #include <utility>
18 
19 namespace utility {
20 namespace state {
21 template<typename EnumState>
22 class State {
23  public:
24  // ctor
25  explicit State(EnumState state) : state_{state} {}
26 
27  // dtor
28  virtual ~State() = default;
29 
30  // start the state
31  virtual void Start() = 0;
32 
33  // Update the state
34  virtual void Stop() = 0;
35 
36  // Handle invoked asynchronously
37  // Todo:: Delete this methods, no used anywhere
38  virtual void HandleMessage() {}
39 
40  // Get the State index
41  auto GetState() const noexcept -> EnumState { return state_; }
42 
43  protected:
44  // state index number
45  EnumState state_;
46 };
47 
48 template<typename EnumState>
49 class StateContext {
50  public:
51  // ctor
53 
54  // dtor
55  ~StateContext() = default;
56 
57  // Add the needed state
58  void AddState(EnumState state, std::unique_ptr<State<EnumState>> state_ptr) {
59  state_map_.insert(
60  std::pair<EnumState, std::unique_ptr<State<EnumState>>>(state, std::move(state_ptr)));
61  }
62 
63  // Get the current state
64  auto GetActiveState() noexcept -> State<EnumState> & {
65  std::lock_guard<std::mutex> const lck{state_lock};
66  return *current_state_;
67  }
68 
69  // Function to transition state to provided state
70  void TransitionTo(EnumState state) {
71  // stop the current state
72  Stop();
73  // Update to new state
74  Update(state);
75  // Start new state
76  Start();
77  }
78 
79  // Get Context
80  auto GetContext() noexcept -> StateContext * { return this; }
81 
82  private:
83  // Start the current state
84  void Start() {
85  if (this->current_state_ != nullptr) { this->current_state_->Start(); }
86  }
87 
88  // Stop the current state
89  void Stop() {
90  if (this->current_state_ != nullptr) { this->current_state_->Stop(); }
91  }
92 
93  // Update to new state
94  void Update(EnumState state) {
95  std::lock_guard<std::mutex> const lck{state_lock};
96  auto it = state_map_.find(state);
97  if (it != state_map_.end()) {
98  this->current_state_ = it->second.get();
99  } else {
100  // failure condition
101  }
102  }
103 
104  // mutex to protect transition
105  std::mutex state_lock;
106 
107  // pointer to store the active state
109  // mapping of state to state ref
110  std::map<EnumState, std::unique_ptr<State<EnumState>>> state_map_;
111 };
112 } // namespace state
113 } // namespace utility
114 #endif // DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_STATE_H
auto GetActiveState() noexcept -> State< EnumState > &
Definition: state.h:64
std::map< EnumState, std::unique_ptr< State< EnumState > > > state_map_
Definition: state.h:110
auto GetContext() noexcept -> StateContext *
Definition: state.h:80
State< EnumState > * current_state_
Definition: state.h:108
void Update(EnumState state)
Definition: state.h:94
void TransitionTo(EnumState state)
Definition: state.h:70
void AddState(EnumState state, std::unique_ptr< State< EnumState >> state_ptr)
Definition: state.h:58
auto GetState() const noexcept -> EnumState
Definition: state.h:41
State(EnumState state)
Definition: state.h:25
EnumState state_
Definition: state.h:45
virtual ~State()=default
virtual void Stop()=0
virtual void HandleMessage()
Definition: state.h:38
virtual void Start()=0