-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bugfix/missing-isnullable-in-pcc-xml
- Loading branch information
Showing
78 changed files
with
5,219 additions
and
714 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* | ||
* 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" | ||
|
||
using chip::ArgParser::OptionDef; | ||
using chip::ArgParser::OptionSet; | ||
using chip::ArgParser::PrintArgError; | ||
|
||
constexpr uint16_t kOptionDacProviderFilePath = 0xFF01; | ||
|
||
static chip::Credentials::Examples::TestHarnessDACProvider mDacProvider; | ||
|
||
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; | ||
default: | ||
PrintArgError("%s: INTERNAL ERROR: Unhandled option: %s\n", program, name); | ||
retval = false; | ||
break; | ||
} | ||
|
||
return retval; | ||
} | ||
|
||
OptionSet * AppOptions::GetOptions() | ||
{ | ||
static OptionDef optionsDef[] = { | ||
{ "dac_provider", chip::ArgParser::kArgumentRequired, kOptionDacProviderFilePath }, | ||
{}, | ||
}; | ||
|
||
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" | ||
}; | ||
|
||
return &options; | ||
} | ||
|
||
chip::Credentials::DeviceAttestationCredentialsProvider * AppOptions::GetDACProvider() | ||
{ | ||
return &mDacProvider; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* | ||
* 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. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "AppMain.h" | ||
|
||
#include <app/tests/suites/credentials/TestHarnessDACProvider.h> | ||
|
||
class AppOptions | ||
{ | ||
public: | ||
static chip::ArgParser::OptionSet * GetOptions(); | ||
static chip::Credentials::DeviceAttestationCredentialsProvider * GetDACProvider(); | ||
|
||
private: | ||
static bool HandleOptions(const char * program, chip::ArgParser::OptionSet * options, int identifier, const char * name, | ||
const char * value); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* | ||
* 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" | ||
|
||
using chip::ArgParser::OptionDef; | ||
using chip::ArgParser::OptionSet; | ||
using chip::ArgParser::PrintArgError; | ||
|
||
constexpr uint16_t kOptionDacProviderFilePath = 0xFF01; | ||
|
||
static chip::Credentials::Examples::TestHarnessDACProvider mDacProvider; | ||
|
||
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; | ||
default: | ||
PrintArgError("%s: INTERNAL ERROR: Unhandled option: %s\n", program, name); | ||
retval = false; | ||
break; | ||
} | ||
|
||
return retval; | ||
} | ||
|
||
OptionSet * AppOptions::GetOptions() | ||
{ | ||
static OptionDef optionsDef[] = { | ||
{ "dac_provider", chip::ArgParser::kArgumentRequired, kOptionDacProviderFilePath }, | ||
{}, | ||
}; | ||
|
||
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" | ||
}; | ||
|
||
return &options; | ||
} | ||
|
||
chip::Credentials::DeviceAttestationCredentialsProvider * AppOptions::GetDACProvider() | ||
{ | ||
return &mDacProvider; | ||
} |
Oops, something went wrong.