-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandMonitor.h
85 lines (64 loc) · 2.25 KB
/
CommandMonitor.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#pragma once
#include"RxMonitor/IncludeExtLibs.h"
#include"RxMonitor/Export.h"
namespace Reactor
{
// ---------------------------------------------------------------
// CommandMonitorPolicy
// ---------------------------------------------------------------
class DLL_STATE CommandMonitorPolicy
{
public:
CommandMonitorPolicy() {}
virtual ~CommandMonitorPolicy() {}
static CommandMonitorPolicy Default()
{
return CommandMonitorPolicy();
}
};
class CommandMonitor;
FORWARD_CLASS_TRAITS(CommandMonitor)
// ---------------------------------------------------------------
// CommandMonitorState
// ---------------------------------------------------------------
class DLL_STATE CommandMonitorState
{
public:
CommandMonitorState();
virtual ~CommandMonitorState();
bool IsInitialized() const;
CommandControllerAction<int>::Ptr GetOrCreateController(CommandMonitorPtr parent);
private:
CommandControllerAction<int>::Ptr controller_;
};
// ---------------------------------------------------------------
// CommandMonitor
// ---------------------------------------------------------------
class DLL_STATE CommandMonitor
: public Templates::SupervisorSingleton<CommandMonitor>
, public RxData::ObjectObserver<Reactor::CommandController::Ptr>
, public RxObserverNew<int>
, public Templates::ContextObject<CommandMonitorPolicy, CommandMonitorState>
, public ENABLE_SHARED_FROM_THIS(CommandMonitor)
{
public:
CommandMonitor();
virtual ~CommandMonitor();
CLASS_TRAITS(CommandMonitor)
CommandMonitor::Ptr GetPtr();
virtual bool Initialize();
virtual bool IsInitialized() const;
// ------------------------------------------------
// ObjectObserver interface
// ------------------------------------------------
virtual bool OnObjectCreated(Reactor::CommandController::Ptr data);
virtual bool OnObjectDeleted(Reactor::CommandController::Ptr data);
virtual bool OnObjectModified(Reactor::CommandController::Ptr);
// ------------------------------------------------
// RxEventsReturn interface
// ------------------------------------------------
virtual bool OnComplete();
virtual bool OnNext(int);
virtual bool OnError(GeneralException);
};
}