| /* |
| * |
| * Copyright (c) 2021-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 "MTRBaseDevice.h" |
| #import "MTRCluster_Internal.h" |
| #import "NSDataSpanConversion.h" |
| #import "NSStringSpanConversion.h" |
| |
| using namespace ::chip; |
| |
| @implementation MTRCluster |
| - (instancetype)initWithEndpointID:(NSNumber *)endpointID queue:(dispatch_queue_t)queue; |
| { |
| if (self = [super init]) { |
| // TODO consider range-checking the incoming number to make sure it's |
| // actually in the EndpointId range |
| _endpointID = endpointID; |
| _callbackQueue = queue; |
| } |
| return self; |
| } |
| |
| @end |
| |
| @implementation MTRGenericBaseCluster |
| |
| - (instancetype)initWithDevice:(MTRBaseDevice *)device endpointID:(NSNumber *)endpointID queue:(dispatch_queue_t)queue |
| { |
| if (self = [super initWithEndpointID:endpointID queue:queue]) { |
| _device = device; |
| } |
| return self; |
| } |
| |
| @end |
| |
| @implementation MTRGenericCluster |
| |
| - (instancetype)initWithDevice:(MTRDevice *)device endpointID:(NSNumber *)endpointID queue:(dispatch_queue_t)queue |
| { |
| if (self = [super initWithEndpointID:endpointID queue:queue]) { |
| _device = device; |
| } |
| return self; |
| } |
| |
| @end |
| |
| @implementation MTRWriteParams |
| - (instancetype)init |
| { |
| if (self = [super init]) { |
| _timedWriteTimeout = nil; |
| } |
| return self; |
| } |
| |
| #pragma mark - Copying |
| |
| - (id)copyWithZone:(NSZone * _Nullable)zone |
| { |
| auto other = [[MTRWriteParams alloc] init]; |
| other.timedWriteTimeout = self.timedWriteTimeout; |
| other.dataVersion = self.dataVersion; |
| return other; |
| } |
| |
| #pragma mark - Coding |
| |
| + (BOOL)supportsSecureCoding |
| { |
| return YES; |
| } |
| |
| static NSString * sTimedWriteTimeoutCodingKey = @"sTimedWriteTimeoutKey"; |
| static NSString * sDataVersionCodingKey = @"sDataVersionKey"; |
| |
| - (nullable instancetype)initWithCoder:(NSCoder *)decoder |
| { |
| self = [super init]; |
| |
| if (self == nil) { |
| return nil; |
| } |
| |
| self.timedWriteTimeout = [decoder decodeObjectOfClass:[NSNumber class] forKey:sTimedWriteTimeoutCodingKey]; |
| self.dataVersion = [decoder decodeObjectOfClass:[NSNumber class] forKey:sDataVersionCodingKey]; |
| |
| return self; |
| } |
| |
| - (void)encodeWithCoder:(NSCoder *)coder |
| { |
| if (self.timedWriteTimeout) |
| [coder encodeObject:self.timedWriteTimeout forKey:sTimedWriteTimeoutCodingKey]; |
| if (self.dataVersion) |
| [coder encodeObject:self.dataVersion forKey:sDataVersionCodingKey]; |
| } |
| |
| @end |
| |
| @implementation MTRReadParams |
| - (instancetype)init |
| { |
| if (self = [super init]) { |
| _filterByFabric = YES; |
| _assumeUnknownAttributesReportable = YES; |
| } |
| return self; |
| } |
| |
| #pragma mark - Coding |
| |
| + (BOOL)supportsSecureCoding |
| { |
| return YES; |
| } |
| |
| static NSString * sFilterByFabricCoderKey = @"sFilterByFabricKey"; |
| static NSString * sMinEventNumberCoderKey = @"sMinEventNumberKey"; |
| static NSString * sAssumeUnknownAttributesReportableCoderKey = @"sAssumeUnknownAttributesReportableKey"; |
| |
| - (nullable instancetype)initWithCoder:(NSCoder *)decoder |
| { |
| self = [super init]; |
| |
| if (self == nil) { |
| return nil; |
| } |
| |
| self.filterByFabric = [decoder decodeBoolForKey:sFilterByFabricCoderKey]; |
| self.assumeUnknownAttributesReportable = [decoder decodeBoolForKey:sAssumeUnknownAttributesReportableCoderKey]; |
| self.minEventNumber = [decoder decodeObjectOfClass:[NSNumber class] forKey:sMinEventNumberCoderKey]; |
| |
| return self; |
| } |
| |
| - (void)encodeWithCoder:(NSCoder *)coder |
| { |
| [coder encodeBool:self.filterByFabric forKey:sFilterByFabricCoderKey]; |
| [coder encodeBool:self.assumeUnknownAttributesReportable forKey:sAssumeUnknownAttributesReportableCoderKey]; |
| |
| if (self.minEventNumber) |
| [coder encodeObject:self.minEventNumber forKey:sMinEventNumberCoderKey]; |
| } |
| |
| #pragma mark - Copying |
| |
| - (id)copyWithZone:(NSZone * _Nullable)zone |
| { |
| auto other = [[MTRReadParams alloc] init]; |
| other.filterByFabric = self.filterByFabric; |
| other.minEventNumber = self.minEventNumber; |
| other.assumeUnknownAttributesReportable = self.assumeUnknownAttributesReportable; |
| return other; |
| } |
| |
| #pragma mark - Other |
| |
| - (void)toReadPrepareParams:(chip::app::ReadPrepareParams &)readPrepareParams |
| { |
| readPrepareParams.mIsFabricFiltered = self.filterByFabric; |
| if (self.minEventNumber) { |
| readPrepareParams.mEventNumber.SetValue(static_cast<chip::EventNumber>([self.minEventNumber unsignedLongLongValue])); |
| } |
| } |
| |
| @end |
| |
| @implementation MTRSubscribeParams |
| - (instancetype)initWithMinInterval:(NSNumber *)minInterval maxInterval:(NSNumber *)maxInterval |
| { |
| if (self = [super init]) { |
| _reportEventsUrgently = YES; |
| _replaceExistingSubscriptions = YES; |
| _resubscribeAutomatically = YES; |
| _minInterval = [minInterval copy]; |
| _maxInterval = [maxInterval copy]; |
| } |
| return self; |
| } |
| |
| #pragma mark - Copying |
| - (id)copyWithZone:(NSZone * _Nullable)zone |
| { |
| auto other = [[MTRSubscribeParams alloc] initWithMinInterval:self.minInterval maxInterval:self.maxInterval]; |
| |
| other.filterByFabric = self.filterByFabric; |
| other.minEventNumber = self.minEventNumber; |
| other.assumeUnknownAttributesReportable = self.assumeUnknownAttributesReportable; |
| other.replaceExistingSubscriptions = self.replaceExistingSubscriptions; |
| other.reportEventsUrgently = self.reportEventsUrgently; |
| other.resubscribeAutomatically = self.resubscribeAutomatically; |
| other.minInterval = self.minInterval; |
| other.maxInterval = self.maxInterval; |
| |
| return other; |
| } |
| |
| #pragma mark - Coding |
| + (BOOL)supportsSecureCoding |
| { |
| return YES; |
| } |
| |
| static NSString * sReplaceExistingSubscriptionsCoderKey = @"sFilterByFabricKey"; |
| static NSString * sReportEventsUrgentlyCoderKey = @"sMinEventNumberKey"; |
| static NSString * sResubscribeAutomaticallyCoderKey = @"sAssumeUnknownAttributesReportableKey"; |
| static NSString * sMinIntervalKeyCoderKey = @"sMinIntervalKeyKey"; |
| static NSString * sMaxIntervalKeyCoderKey = @"sMaxIntervalKeyKey"; |
| |
| - (nullable instancetype)initWithCoder:(NSCoder *)decoder |
| { |
| self = [super initWithCoder:decoder]; |
| |
| if (self == nil) { |
| return nil; |
| } |
| |
| self.replaceExistingSubscriptions = [decoder decodeBoolForKey:sReplaceExistingSubscriptionsCoderKey]; |
| self.reportEventsUrgently = [decoder decodeBoolForKey:sReportEventsUrgentlyCoderKey]; |
| self.resubscribeAutomatically = [decoder decodeBoolForKey:sResubscribeAutomaticallyCoderKey]; |
| self.minInterval = [decoder decodeObjectOfClass:[NSNumber class] forKey:sMinIntervalKeyCoderKey]; |
| self.maxInterval = [decoder decodeObjectOfClass:[NSNumber class] forKey:sMaxIntervalKeyCoderKey]; |
| |
| return self; |
| } |
| |
| - (void)encodeWithCoder:(NSCoder *)coder |
| { |
| [super encodeWithCoder:coder]; |
| |
| [coder encodeBool:self.replaceExistingSubscriptions forKey:sReplaceExistingSubscriptionsCoderKey]; |
| [coder encodeBool:self.reportEventsUrgently forKey:sReportEventsUrgentlyCoderKey]; |
| [coder encodeBool:self.resubscribeAutomatically forKey:sResubscribeAutomaticallyCoderKey]; |
| |
| if (self.minInterval) |
| [coder encodeObject:self.minInterval forKey:sMinIntervalKeyCoderKey]; |
| if (self.maxInterval) |
| [coder encodeObject:self.maxInterval forKey:sMaxIntervalKeyCoderKey]; |
| } |
| |
| #pragma mark - Main |
| |
| - (void)toReadPrepareParams:(chip::app::ReadPrepareParams &)readPrepareParams |
| { |
| [super toReadPrepareParams:readPrepareParams]; |
| readPrepareParams.mMinIntervalFloorSeconds = self.minInterval.unsignedShortValue; |
| readPrepareParams.mMaxIntervalCeilingSeconds = self.maxInterval.unsignedShortValue; |
| readPrepareParams.mKeepSubscriptions = !self.replaceExistingSubscriptions; |
| } |
| |
| @end |
| |
| @implementation MTRReadParams (Deprecated) |
| |
| - (void)setFabricFiltered:(nullable NSNumber *)fabricFiltered |
| { |
| if (fabricFiltered == nil) { |
| self.filterByFabric = YES; |
| } else { |
| self.filterByFabric = [fabricFiltered boolValue]; |
| } |
| } |
| |
| - (nullable NSNumber *)fabricFiltered |
| { |
| return @(self.filterByFabric); |
| } |
| |
| @end |
| |
| @implementation MTRSubscribeParams (Deprecated) |
| |
| - (instancetype)init |
| { |
| if (self = [super init]) { |
| _replaceExistingSubscriptions = YES; |
| _resubscribeAutomatically = YES; |
| _minInterval = @(1); |
| _maxInterval = @(0); |
| } |
| return self; |
| } |
| |
| + (instancetype)new |
| { |
| return [[self alloc] init]; |
| } |
| |
| - (void)setKeepPreviousSubscriptions:(nullable NSNumber *)keepPreviousSubscriptions |
| { |
| if (keepPreviousSubscriptions == nil) { |
| self.replaceExistingSubscriptions = YES; |
| } else { |
| self.replaceExistingSubscriptions = ![keepPreviousSubscriptions boolValue]; |
| } |
| } |
| |
| - (nullable NSNumber *)keepPreviousSubscriptions |
| { |
| return @(!self.replaceExistingSubscriptions); |
| } |
| |
| - (void)setAutoResubscribe:(nullable NSNumber *)autoResubscribe |
| { |
| if (autoResubscribe == nil) { |
| self.resubscribeAutomatically = YES; |
| } else { |
| self.resubscribeAutomatically = [autoResubscribe boolValue]; |
| } |
| } |
| |
| - (nullable NSNumber *)autoResubscribe |
| { |
| return @(self.resubscribeAutomatically); |
| } |
| |
| @end |