forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppOptions.cpp
138 lines (120 loc) · 4.55 KB
/
AppOptions.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
*
* Copyright (c) 2022 Project CHIP Authors
* All rights reserved.
*
* 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 "AppOptions.h"
#include <app/server/CommissioningWindowManager.h>
#include <app/server/Server.h>
#include <string>
using namespace chip::ArgParser;
using chip::ArgParser::OptionDef;
using chip::ArgParser::OptionSet;
using chip::ArgParser::PrintArgError;
constexpr uint16_t kOptionDacProviderFilePath = 0xFF01;
constexpr uint16_t kOptionMinCommissioningTimeout = 0xFF02;
constexpr uint16_t kOptionEndUserSupportFilePath = 0xFF03;
constexpr uint16_t kOptionNetworkDiagnosticsFilePath = 0xFF04;
constexpr uint16_t kOptionCrashFilePath = 0xFF05;
static chip::Credentials::Examples::TestHarnessDACProvider mDacProvider;
static chip::Optional<std::string> sEndUserSupportLogFilePath;
static chip::Optional<std::string> sNetworkDiagnosticsLogFilePath;
static chip::Optional<std::string> sCrashLogFilePath;
bool AppOptions::IsEmptyString(const char * value)
{
return (value == nullptr || strlen(value) == 0);
}
bool AppOptions::HandleOptions(const char * program, OptionSet * options, int identifier, const char * name, const char * value)
{
bool retval = true;
switch (identifier)
{
case kOptionDacProviderFilePath:
mDacProvider.Init(value);
break;
case kOptionMinCommissioningTimeout: {
auto & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager();
commissionMgr.OverrideMinCommissioningTimeout(chip::System::Clock::Seconds16(static_cast<uint16_t>(atoi(value))));
break;
}
case kOptionEndUserSupportFilePath: {
if (!IsEmptyString(value))
{
sEndUserSupportLogFilePath.SetValue(value);
}
break;
}
case kOptionNetworkDiagnosticsFilePath: {
if (!IsEmptyString(value))
{
sNetworkDiagnosticsLogFilePath.SetValue(value);
}
break;
}
case kOptionCrashFilePath: {
if (!IsEmptyString(value))
{
sCrashLogFilePath.SetValue(value);
}
break;
}
default:
PrintArgError("%s: INTERNAL ERROR: Unhandled option: %s\n", program, name);
retval = false;
break;
}
return retval;
}
OptionSet * AppOptions::GetOptions()
{
static OptionDef optionsDef[] = {
{ "dac_provider", kArgumentRequired, kOptionDacProviderFilePath },
{ "min_commissioning_timeout", kArgumentRequired, kOptionMinCommissioningTimeout },
{ "end_user_support_log", kArgumentRequired, kOptionEndUserSupportFilePath },
{ "network_diagnostics_log", kArgumentRequired, kOptionNetworkDiagnosticsFilePath },
{ "crash_log", kArgumentRequired, kOptionCrashFilePath },
{},
};
static OptionSet options = {
AppOptions::HandleOptions, optionsDef, "PROGRAM OPTIONS",
" --dac_provider <filepath>\n"
" A json file with data used by the example dac provider to validate device attestation procedure.\n"
" --min_commissioning_timeout <value>\n"
" The minimum time in seconds during which commissioning session establishment is allowed by the Node.\n"
" --end_user_support_log <value>\n"
" The end user support log file to be used for diagnostic logs transfer.\n"
" --network_diagnostics_log <value>\n"
" The network diagnostics log file to be used for diagnostic logs transfer.\n"
" --crash_log <value>\n"
" The crash log file to be used for diagnostic logs transfer.\n"
};
return &options;
}
chip::Credentials::DeviceAttestationCredentialsProvider * AppOptions::GetDACProvider()
{
return &mDacProvider;
}
chip::Optional<std::string> AppOptions::GetEndUserSupportLogFilePath()
{
return sEndUserSupportLogFilePath;
}
chip::Optional<std::string> AppOptions::GetNetworkDiagnosticsLogFilePath()
{
return sNetworkDiagnosticsLogFilePath;
}
chip::Optional<std::string> AppOptions::GetCrashLogFilePath()
{
return sCrashLogFilePath;
}