-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy pathTraceControlJsonRpc.cpp
122 lines (99 loc) · 4.1 KB
/
TraceControlJsonRpc.cpp
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
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
*
* Copyright 2020 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "Module.h"
#include "TraceControl.h"
#include <interfaces/json/JsonData_TraceControl.h>
namespace WPEFramework {
namespace Plugin {
using namespace JsonData::TraceControl;
// Registration
//
void TraceControl::RegisterAll()
{
Register<StatusParamsData,StatusResultData>(_T("status"), &TraceControl::endpoint_status, this);
Register<TraceInfo,void>(_T("set"), &TraceControl::endpoint_set, this);
}
void TraceControl::UnregisterAll()
{
Unregister(_T("set"));
Unregister(_T("status"));
}
JsonData::TraceControl::StateType TraceControl::TranslateState(TraceControl::state state)
{
JsonData::TraceControl::StateType newState = JsonData::TraceControl::StateType::DISABLED;
switch (state)
{
case TraceControl::state::ENABLED:
newState = JsonData::TraceControl::StateType::ENABLED;
break;
case TraceControl::state::DISABLED:
newState = JsonData::TraceControl::StateType::DISABLED;
break;
case TraceControl::state::TRISTATED:
newState = JsonData::TraceControl::StateType::TRISTATED;
break;
}
return newState;
}
// API implementation
//
// Method: status - Retrieves general information
// Return codes:
// - ERROR_NONE: Success
uint32_t TraceControl::endpoint_status(const StatusParamsData& params, StatusResultData& response)
{
uint32_t result = Core::ERROR_NONE;
response.Console = _config.Console;
response.Remote.Port = _config.Remote.Port;
response.Remote.Binding = _config.Remote.Binding;
Observer::ModuleIterator index(_observer.Modules());
while (index.Next() == true) {
string moduleName(Core::ToString(index.Module()));
Observer::ModuleIterator::CategoryIterator categories(index.Categories());
if ((params.Module.IsSet() == false) || ((params.Module.IsSet() == true) && (moduleName == params.Module.Value()))) {
while (categories.Next()) {
string categoryName(Core::ToString(categories.Category()));
if ((params.Category.IsSet() == false) || ((params.Category.IsSet() == true) && (categoryName == params.Category.Value()))) {
Data::Trace trace = Data::Trace(moduleName, categoryName, categories.State());
JsonData::TraceControl::TraceInfo traceResponse;
traceResponse.Module = trace.Module;
traceResponse.Category = trace.Category;
traceResponse.State = TranslateState(trace.State);
response.Settings.Add(traceResponse);
}
}
}
}
_observer.Relinquish();
return result;
}
// Method: set - Sets traces
// Return codes:
// - ERROR_NONE: Success
uint32_t TraceControl::endpoint_set(const TraceInfo& params)
{
uint32_t result = Core::ERROR_NONE;
_observer.Set((params.State.Value() == JsonData::TraceControl::StateType::ENABLED),
(params.Module.IsSet() == true ? params.Module.Value() : std::string(EMPTY_STRING)),
(params.Category.IsSet() == true ? params.Category.Value() : std::string(EMPTY_STRING)));
_observer.Relinquish();
return result;
}
} // namespace Plugin
}