blob: f8c85e52269dbb6f11fbf1830b96e2593142ba97 [file] [log] [blame]
/**
*
* Copyright (c) 2020-2022 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 <Foundation/Foundation.h>
#import "DiscoveredNodeData.h"
#include <lib/dnssd/Resolver.h>
@interface DiscoveredNodeData ()
@property (nonatomic) VideoPlayer * connectableVideoPlayer;
@end
@implementation DiscoveredNodeData
- (DiscoveredNodeData *)initWithDeviceName:(NSString *)deviceName vendorId:(uint16_t)vendorId productId:(uint16_t)productId
{
self = [super init];
if (self) {
_deviceName = deviceName;
_vendorId = vendorId;
_productId = productId;
}
return self;
}
- (NSString *)description
{
if ([self isPreCommissioned]) {
return [NSString
stringWithFormat:@"%@ with Product ID: %d and Vendor ID: %d [Pre-Commissioned]", _deviceName, _productId, _vendorId];
} else {
return [NSString stringWithFormat:@"%@ with Product ID: %d and Vendor ID: %d", _deviceName, _productId, _vendorId];
}
}
- (BOOL)isEqualToDiscoveredNodeData:(DiscoveredNodeData *)other
{
return [self.instanceName isEqualToString:other.instanceName];
}
- (BOOL)isEqual:(id)other
{
if (other == nil) {
return NO;
}
if (self == other) {
return YES;
}
if (![other isKindOfClass:[DiscoveredNodeData class]]) {
return NO;
}
return [self isEqualToDiscoveredNodeData:(DiscoveredNodeData *) other];
}
- (NSUInteger)hash
{
const NSUInteger prime = 31;
NSUInteger result = 1;
result = prime * result + [self.instanceName hash];
return result;
}
- (void)setConnectableVideoPlayer:(VideoPlayer * _Nonnull)videoPlayer
{
_connectableVideoPlayer = videoPlayer;
}
- (bool)isPreCommissioned
{
return _connectableVideoPlayer != nil;
}
- (VideoPlayer *)getConnectableVideoPlayer
{
return _connectableVideoPlayer;
}
@end