| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- * Copyright 2017 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 "FIRFirestoreSettings.h"
- #import "Firestore/Source/Util/FSTUsageValidation.h"
- NS_ASSUME_NONNULL_BEGIN
- static NSString *const kDefaultHost = @"firestore.googleapis.com";
- static const BOOL kDefaultSSLEnabled = YES;
- static const BOOL kDefaultPersistenceEnabled = YES;
- static const int64_t kDefaultCacheSizeBytes = 100 * 1024 * 1024;
- static const int64_t kMinimumCacheSizeBytes = 1 * 1024 * 1024;
- static const BOOL kDefaultTimestampsInSnapshotsEnabled = YES;
- @implementation FIRFirestoreSettings
- - (instancetype)init {
- if (self = [super init]) {
- _host = kDefaultHost;
- _sslEnabled = kDefaultSSLEnabled;
- _dispatchQueue = dispatch_get_main_queue();
- _persistenceEnabled = kDefaultPersistenceEnabled;
- _timestampsInSnapshotsEnabled = kDefaultTimestampsInSnapshotsEnabled;
- _cacheSizeBytes = kDefaultCacheSizeBytes;
- }
- return self;
- }
- - (BOOL)isEqual:(id)other {
- if (self == other) {
- return YES;
- } else if (![other isKindOfClass:[FIRFirestoreSettings class]]) {
- return NO;
- }
- FIRFirestoreSettings *otherSettings = (FIRFirestoreSettings *)other;
- return [self.host isEqual:otherSettings.host] &&
- self.isSSLEnabled == otherSettings.isSSLEnabled &&
- self.dispatchQueue == otherSettings.dispatchQueue &&
- self.isPersistenceEnabled == otherSettings.isPersistenceEnabled &&
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- self.timestampsInSnapshotsEnabled == otherSettings.timestampsInSnapshotsEnabled &&
- #pragma clang diagnostic pop
- self.cacheSizeBytes == otherSettings.cacheSizeBytes;
- }
- - (NSUInteger)hash {
- NSUInteger result = [self.host hash];
- result = 31 * result + (self.isSSLEnabled ? 1231 : 1237);
- // Ignore the dispatchQueue to avoid having to deal with sizeof(dispatch_queue_t).
- result = 31 * result + (self.isPersistenceEnabled ? 1231 : 1237);
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- result = 31 * result + (self.timestampsInSnapshotsEnabled ? 1231 : 1237);
- #pragma clang diagnostic pop
- result = 31 * result + (NSUInteger)self.cacheSizeBytes;
- return result;
- }
- - (id)copyWithZone:(nullable NSZone *)zone {
- FIRFirestoreSettings *copy = [[FIRFirestoreSettings alloc] init];
- copy.host = _host;
- copy.sslEnabled = _sslEnabled;
- copy.dispatchQueue = _dispatchQueue;
- copy.persistenceEnabled = _persistenceEnabled;
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- copy.timestampsInSnapshotsEnabled = _timestampsInSnapshotsEnabled;
- #pragma clang diagnostic pop
- copy.cacheSizeBytes = _cacheSizeBytes;
- return copy;
- }
- - (void)setHost:(NSString *)host {
- if (!host) {
- FSTThrowInvalidArgument(
- @"host setting may not be nil. You should generally just use the default value "
- "(which is %@)",
- kDefaultHost);
- }
- _host = [host mutableCopy];
- }
- - (void)setDispatchQueue:(dispatch_queue_t)dispatchQueue {
- if (!dispatchQueue) {
- FSTThrowInvalidArgument(
- @"dispatch queue setting may not be nil. Create a new dispatch queue with "
- "dispatch_queue_create(\"com.example.MyQueue\", NULL) or just use the default "
- "(which is the main queue, returned from dispatch_get_main_queue())");
- }
- _dispatchQueue = dispatchQueue;
- }
- - (void)setCacheSizeBytes:(int64_t)cacheSizeBytes {
- if (cacheSizeBytes != kFIRFirestoreCacheSizeUnlimited &&
- cacheSizeBytes < kMinimumCacheSizeBytes) {
- FSTThrowInvalidArgument(@"Cache size must be set to at least %i bytes", kMinimumCacheSizeBytes);
- }
- _cacheSizeBytes = cacheSizeBytes;
- }
- @end
- NS_ASSUME_NONNULL_END
|