| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- * Copyright 2019 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 "FIRInstallationsStoredRegistrationError.h"
- #import "FIRInstallationsHTTPError.h"
- #import "FIRInstallationsStoredRegistrationParameters.h"
- #import "FIRInstallationsLogger.h"
- NSString *const kFIRInstallationsStoredRegistrationErrorRegistrationParametersKey =
- @"registrationParameters";
- NSString *const kFIRInstallationsStoredRegistrationErrorAPIErrorKey = @"APIError";
- NSString *const kFIRInstallationsStoredRegistrationErrorStorageVersionKey = @"storageVersion";
- NSString *const kFIRInstallationsStoredRegistrationErrorDateKey = @"date";
- NSInteger const kFIRInstallationsStoredRegistrationErrorStorageVersion = 1;
- @implementation FIRInstallationsStoredRegistrationError
- - (instancetype)initWithRegistrationParameters:
- (FIRInstallationsStoredRegistrationParameters *)registrationParameters
- date:(NSDate *)date
- APIError:(NSError *)error {
- self = [super init];
- if (self) {
- _registrationParameters = registrationParameters;
- _date = date;
- _APIError = error;
- }
- return self;
- }
- - (NSInteger)storageVersion {
- return kFIRInstallationsStoredRegistrationErrorStorageVersion;
- }
- #pragma mark - NSSecureCoding
- + (BOOL)supportsSecureCoding {
- return YES;
- }
- - (void)encodeWithCoder:(nonnull NSCoder *)coder {
- [coder encodeObject:self.registrationParameters
- forKey:kFIRInstallationsStoredRegistrationErrorRegistrationParametersKey];
- [coder encodeObject:self.date forKey:kFIRInstallationsStoredRegistrationErrorDateKey];
- [coder encodeObject:self.APIError forKey:kFIRInstallationsStoredRegistrationErrorAPIErrorKey];
- [coder encodeInteger:kFIRInstallationsStoredRegistrationErrorStorageVersion
- forKey:kFIRInstallationsStoredRegistrationErrorStorageVersionKey];
- }
- - (nullable instancetype)initWithCoder:(nonnull NSCoder *)coder {
- NSInteger storageVersion =
- [coder decodeIntegerForKey:kFIRInstallationsStoredRegistrationErrorStorageVersionKey];
- if (storageVersion > self.storageVersion) {
- FIRLogWarning(kFIRLoggerInstallations,
- kFIRInstallationsMessageCodeRegistrationErrorCoderVersionMismatch,
- @"FIRInstallationsStoredRegistrationError was encoded by a newer coder version "
- @"%ld. Current coder version is %ld. Some installation data may be lost.",
- (long)storageVersion, (long)self.storageVersion);
- }
- FIRInstallationsStoredRegistrationParameters *registrationParameters =
- [coder decodeObjectOfClass:[FIRInstallationsStoredRegistrationParameters class]
- forKey:kFIRInstallationsStoredRegistrationErrorRegistrationParametersKey];
- NSDate *date = [coder decodeObjectOfClass:[NSDate class]
- forKey:kFIRInstallationsStoredRegistrationErrorDateKey];
- NSSet<Class> *allowedErrorClasses =
- [NSSet setWithArray:@ [[FIRInstallationsHTTPError class], [NSError class]]];
- NSError *APIError =
- [coder decodeObjectOfClasses:allowedErrorClasses
- forKey:kFIRInstallationsStoredRegistrationErrorAPIErrorKey];
- if (registrationParameters == nil || APIError == nil) {
- FIRLogWarning(kFIRLoggerInstallations,
- kFIRInstallationsMessageCodeRegistrationErrorFailedToDecode,
- @"Failed to decode FIRInstallationsStoredRegistrationError.");
- return nil;
- }
- return [self initWithRegistrationParameters:registrationParameters date:date APIError:APIError];
- }
- @end
|