blob: 541352b3d31bf914ee11ef75da2be5da58e78c65 [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>
@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
{
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;
}
@end