| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /*
- * Copyright 2018 Google
- *
- * 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 <GoogleDataTransport/GDTCOREvent.h>
- #import <GoogleDataTransport/GDTCORAssert.h>
- #import <GoogleDataTransport/GDTCORStoredEvent.h>
- #import "GDTCORLibrary/Private/GDTCOREvent_Private.h"
- @implementation GDTCOREvent
- - (nullable instancetype)initWithMappingID:(NSString *)mappingID target:(NSInteger)target {
- GDTCORAssert(mappingID.length > 0, @"Please give a valid mapping ID");
- GDTCORAssert(target > 0, @"A target cannot be negative or 0");
- if (mappingID == nil || mappingID.length == 0 || target <= 0) {
- return nil;
- }
- self = [super init];
- if (self) {
- _mappingID = mappingID;
- _target = target;
- _qosTier = GDTCOREventQosDefault;
- }
- return self;
- }
- - (instancetype)copy {
- GDTCOREvent *copy = [[GDTCOREvent alloc] initWithMappingID:_mappingID target:_target];
- copy.dataObject = _dataObject;
- copy.dataObjectTransportBytes = _dataObjectTransportBytes;
- copy.qosTier = _qosTier;
- copy.clockSnapshot = _clockSnapshot;
- copy.customPrioritizationParams = _customPrioritizationParams;
- return copy;
- }
- - (NSUInteger)hash {
- // This loses some precision, but it's probably fine.
- NSUInteger mappingIDHash = [_mappingID hash];
- NSUInteger timeHash = [_clockSnapshot hash];
- NSUInteger dataObjectTransportBytesHash = [_dataObjectTransportBytes hash];
- return mappingIDHash ^ _target ^ dataObjectTransportBytesHash ^ _qosTier ^ timeHash;
- }
- - (BOOL)isEqual:(id)object {
- return [self hash] == [object hash];
- }
- - (void)setDataObject:(id<GDTCOREventDataObject>)dataObject {
- // If you're looking here because of a performance issue in -transportBytes slowing the assignment
- // of -dataObject, one way to address this is to add a queue to this class,
- // dispatch_(barrier_ if concurrent)async here, and implement the getter with a dispatch_sync.
- if (dataObject != _dataObject) {
- _dataObject = dataObject;
- _dataObjectTransportBytes = [dataObject transportBytes];
- }
- }
- - (GDTCORStoredEvent *)storedEventWithDataFuture:(GDTCORDataFuture *)dataFuture {
- return [[GDTCORStoredEvent alloc] initWithEvent:self dataFuture:dataFuture];
- }
- #pragma mark - NSSecureCoding and NSCoding Protocols
- /** NSCoding key for mappingID property. */
- static NSString *mappingIDKey = @"_mappingID";
- /** NSCoding key for target property. */
- static NSString *targetKey = @"_target";
- /** NSCoding key for dataObjectTransportBytes property. */
- static NSString *dataObjectTransportBytesKey = @"_dataObjectTransportBytesKey";
- /** NSCoding key for qosTier property. */
- static NSString *qosTierKey = @"_qosTier";
- /** NSCoding key for clockSnapshot property. */
- static NSString *clockSnapshotKey = @"_clockSnapshot";
- + (BOOL)supportsSecureCoding {
- return YES;
- }
- - (id)initWithCoder:(NSCoder *)aDecoder {
- NSString *mappingID = [aDecoder decodeObjectOfClass:[NSObject class] forKey:mappingIDKey];
- NSInteger target = [aDecoder decodeIntegerForKey:targetKey];
- self = [self initWithMappingID:mappingID target:target];
- if (self) {
- _dataObjectTransportBytes = [aDecoder decodeObjectOfClass:[NSData class]
- forKey:dataObjectTransportBytesKey];
- _qosTier = [aDecoder decodeIntegerForKey:qosTierKey];
- _clockSnapshot = [aDecoder decodeObjectOfClass:[GDTCORClock class] forKey:clockSnapshotKey];
- }
- return self;
- }
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [aCoder encodeObject:_mappingID forKey:mappingIDKey];
- [aCoder encodeInteger:_target forKey:targetKey];
- [aCoder encodeObject:_dataObjectTransportBytes forKey:dataObjectTransportBytesKey];
- [aCoder encodeInteger:_qosTier forKey:qosTierKey];
- [aCoder encodeObject:_clockSnapshot forKey:clockSnapshotKey];
- }
- @end
|