blob: efb8c97e85695b3eda35740d8403e44de48753d5 [file] [log] [blame]
/**
*
* Copyright (c) 2022-2023 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 "MTROTAHeader.h"
#import "MTRError.h"
#import "MTRError_Internal.h"
#import "NSDataSpanConversion.h"
#import "NSStringSpanConversion.h"
#include <lib/core/OTAImageHeader.h>
@implementation MTROTAHeader
- (instancetype)initWithData:(NSData *)data
{
if (!(self = [super init])) {
return nil;
}
chip::OTAImageHeaderParser parser;
parser.Init();
if (!parser.IsInitialized()) {
return nil;
}
chip::ByteSpan buffer = AsByteSpan(data);
chip::OTAImageHeader header;
CHIP_ERROR err = parser.AccumulateAndDecode(buffer, header);
if (err != CHIP_NO_ERROR) {
parser.Clear();
return nil;
}
_vendorID = @(header.mVendorId);
_productID = @(header.mProductId);
_payloadSize = @(header.mPayloadSize);
_softwareVersion = @(header.mSoftwareVersion);
_softwareVersionString = AsString(header.mSoftwareVersionString);
_releaseNotesURL = AsString(header.mReleaseNotesURL);
_imageDigest = AsData(header.mImageDigest);
_imageDigestType = static_cast<MTROTAImageDigestType>(chip::to_underlying(header.mImageDigestType));
if (header.mMinApplicableVersion.HasValue()) {
_minApplicableVersion = @(header.mMinApplicableVersion.Value());
} else {
_minApplicableVersion = nil;
}
if (header.mMaxApplicableVersion.HasValue()) {
_maxApplicableVersion = @(header.mMaxApplicableVersion.Value());
} else {
_maxApplicableVersion = nil;
}
parser.Clear();
return self;
}
@end
@implementation MTROTAHeaderParser
+ (nullable MTROTAHeader *)headerFromData:(NSData *)data error:(NSError * __autoreleasing *)error
{
auto * header = [[MTROTAHeader alloc] initWithData:data];
if (header == nil && error != nil) {
*error = [MTRError errorForCHIPErrorCode:CHIP_ERROR_INVALID_ARGUMENT];
}
return header;
}
@end