Diag-Client-Lib
dm_conversation_state_impl.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  */
9 
10 namespace diag {
11 namespace client {
12 namespace conversation_state_impl {
14  : conversation_state_{std::make_unique<StateContext<ConversationState>>()} {
15  // create and add state
16  // kIdle
18  std::make_unique<kIdle>(ConversationState::kIdle));
19  // kDiagWaitForRes
20  GetConversationStateContext().AddState(
22  std::make_unique<kDiagWaitForRes>(ConversationState::kDiagWaitForRes));
23  // kDiagStartP2StarTimer
24  GetConversationStateContext().AddState(
26  std::make_unique<kDiagStartP2StarTimer>(ConversationState::kDiagStartP2StarTimer));
27  // kDiagRecvdPendingRes
28  GetConversationStateContext().AddState(
30  std::make_unique<kDiagRecvdPendingRes>(ConversationState::kDiagRecvdPendingRes));
31  // kDiagRecvdFinalRes
32  GetConversationStateContext().AddState(
34  std::make_unique<kDiagRecvdFinalRes>(ConversationState::kDiagRecvdFinalRes));
35  // kDiagSuccess
36  GetConversationStateContext().AddState(
38  std::make_unique<kDiagSuccess>(ConversationState::kDiagSuccess));
39  // transit to idle state
41 }
42 
45  return *conversation_state_;
46 }
47 
49 
50 void kIdle::Start() {}
51 
52 void kIdle::Stop() {}
53 
55 
57 
59 
61 
63 
65  : State<ConversationState>(state) {}
66 
68 
70 
72 
74  : State<ConversationState>(state) {}
75 
77 
79 
81 
83 
85 
87 
89 
91 
93 
95 
97 } // namespace conversation_state_impl
98 } // namespace client
99 } // namespace diag
auto GetConversationStateContext() noexcept -> StateContext< ConversationState > &
std::unique_ptr< StateContext< ConversationState > > conversation_state_