blob: fc493afb507c91f5325c2d632783b5da04cd5343 [file] [log] [blame]
/**
*
* Copyright (c) 2020 Project CHIP Authors
*
* 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.
*/
#import "MTRManualSetupPayloadParser.h"
#import "MTRError_Internal.h"
#import "MTRLogging.h"
#import "MTRMemory.h"
#import "MTRSetupPayload_Internal.h"
#import <setup_payload/ManualSetupPayloadParser.h>
#import <setup_payload/SetupPayload.h>
@implementation MTRManualSetupPayloadParser {
NSString * _decimalStringRepresentation;
chip::ManualSetupPayloadParser * _chipManualSetupPayloadParser;
}
- (id)initWithDecimalStringRepresentation:(NSString *)decimalStringRepresentation
{
if (self = [super init]) {
[MTRMemory ensureInit];
_decimalStringRepresentation = decimalStringRepresentation;
_chipManualSetupPayloadParser = new chip::ManualSetupPayloadParser(std::string([decimalStringRepresentation UTF8String]));
}
return self;
}
- (MTRSetupPayload *)populatePayload:(NSError * __autoreleasing *)error
{
chip::SetupPayload cPlusPluspayload;
MTRSetupPayload * payload;
if (_chipManualSetupPayloadParser) {
CHIP_ERROR chipError = _chipManualSetupPayloadParser->populatePayload(cPlusPluspayload);
if (chipError == CHIP_NO_ERROR) {
payload = [[MTRSetupPayload alloc] initWithSetupPayload:cPlusPluspayload];
} else if (error) {
*error = [MTRError errorForCHIPErrorCode:chipError];
}
} else {
// Memory init has failed
if (error) {
*error = [MTRError errorForCHIPErrorCode:CHIP_ERROR_NO_MEMORY];
}
}
return payload;
}
- (void)dealloc
{
delete _chipManualSetupPayloadParser;
_chipManualSetupPayloadParser = nullptr;
}
@end