-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontroller.cpp
More file actions
131 lines (107 loc) · 2.97 KB
/
Copy pathcontroller.cpp
File metadata and controls
131 lines (107 loc) · 2.97 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include "controller.h"
#include <algorithm>
#include "service-config.h"
#include <iostream>
#include <assert.h>
using namespace std;
namespace openrc {
void ControllerOutput::Append(const string& value)
{
_body.append(value);
}
string ToLower(const string& text)
{
string textLower = text;
transform(textLower.begin(), textLower.end(), textLower.begin(), ::tolower);
return textLower;
}
ControllerMethod& ControllerMethod::operator ()(class IController* obj,
SessionWeak session,
const ControllerArguments& arguments,
ControllerOutput& contents)
{
obj->BindCurrentMethod(this);
this->Execute(obj, session, arguments, contents);
obj->UnBindCurrentMethod(this);
return (*this);
}
IController::IController(const string& name, const string& description)
: _name(name)
, _description(description)
, _enable(true)
, _currentMethod(nullptr)
{
_enable = ServiceConfig::Instance().GetBoolean(_name, "enable", true);
}
ControllerMethodRef IController::FindMethod(const string& name)
{
auto it = _methods.find(ToLower(name));
if(it != _methods.end())
{
return it->second;
}
return nullptr;
}
void IController::RegisterMethod(ControllerMethodRef method)
{
_methods.insert(make_pair(ToLower(method->GetName()), method));
}
void IController::BindCurrentMethod(ControllerMethodRef method)
{
//assert(_currentMethod == nullptr);
//_currentMethod = method;
}
void IController::UnBindCurrentMethod(ControllerMethodRef method)
{
//assert(_currentMethod == method);
//_currentMethod = nullptr;
}
//
map<string, IController*> ControllerManager::_controllers
#ifndef _MSC_VER
__attribute__ ((init_priority (101)))
#endif
;
void ControllerManager::RegisterController(IController* controller)
{
//controller->Construct();
_controllers.insert(make_pair(ToLower(controller->ClassName()), controller));
//controller->RegisterMethods();
cout << "Register ControlGetCurrentMethodler: " << controller->ClassName() << endl;
}
void ControllerManager::ConstructControllers()
{
for(auto& pair : _controllers)
{
IController* controller = pair.second;
controller->Construct();
}
cout << "Contruct controllers." << endl;
}
IController* ControllerManager::FindController(const string& name)
{
auto it = _controllers.find(ToLower(name));
if(it != _controllers.end())
{
IController* controller = it->second;
return controller->IsEnable() ? controller : nullptr;
}
return nullptr;
}
IController* ControllerManager::GetController(const string& name)
{
auto it = _controllers.find(ToLower(name));
if(it != _controllers.end())
{
IController* controller = it->second;
return controller;
}
return nullptr;
}
const std::map<string, IController*>& ControllerManager::GetControllers()
{
return _controllers;
}
//ControllerManager& ControllerManager::Instance()
//{}
} // End http.