| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /*
- * 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 <TargetConditionals.h>
- #if TARGET_OS_IOS || TARGET_OS_TV || TARGET_OS_VISION
- #import <UIKit/UIKit.h>
- #import "FirebaseCore/Extension/FirebaseCoreInternal.h"
- #import "FirebaseInAppMessaging/Sources/Analytics/FIRIAMClearcutLogStorage.h"
- #import "FirebaseInAppMessaging/Sources/FIRCore+InAppMessaging.h"
- #import "FirebaseInAppMessaging/Sources/Private/Util/FIRIAMTimeFetcher.h"
- @implementation FIRIAMClearcutLogRecord
- static NSString *const kEventTimestampKey = @"event_ts_seconds";
- static NSString *const kEventExtensionJson = @"extension_js";
- + (BOOL)supportsSecureCoding {
- return YES;
- }
- - (instancetype)initWithExtensionJsonString:(NSString *)jsonString
- eventTimestampInSeconds:(NSInteger)eventTimestampInSeconds {
- self = [super init];
- if (self != nil) {
- _eventTimestampInSeconds = eventTimestampInSeconds;
- _eventExtensionJsonString = jsonString;
- }
- return self;
- }
- - (id)initWithCoder:(NSCoder *)decoder {
- self = [super init];
- if (self != nil) {
- _eventTimestampInSeconds = [decoder decodeIntegerForKey:kEventTimestampKey];
- _eventExtensionJsonString = [decoder decodeObjectOfClass:[NSString class]
- forKey:kEventExtensionJson];
- }
- return self;
- }
- - (void)encodeWithCoder:(NSCoder *)encoder {
- [encoder encodeInteger:self.eventTimestampInSeconds forKey:kEventTimestampKey];
- [encoder encodeObject:self.eventExtensionJsonString forKey:kEventExtensionJson];
- }
- @end
- @interface FIRIAMClearcutLogStorage ()
- @property(nonatomic) NSInteger recordExpiresInSeconds;
- @property(nonatomic) NSMutableArray<FIRIAMClearcutLogRecord *> *records;
- @property(nonatomic) id<FIRIAMTimeFetcher> timeFetcher;
- @end
- // We keep all the records in memory and flush them into files upon receiving
- // applicationDidEnterBackground notifications.
- @implementation FIRIAMClearcutLogStorage
- + (NSString *)determineCacheFilePath {
- static NSString *logCachePath;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- NSString *libraryDirPath =
- NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
- logCachePath =
- [NSString stringWithFormat:@"%@/firebase-iam-clearcut-retry-records", libraryDirPath];
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM230001",
- @"Persistent file path for clearcut log records is %@", logCachePath);
- });
- return logCachePath;
- }
- - (instancetype)initWithExpireAfterInSeconds:(NSInteger)expireInSeconds
- withTimeFetcher:(id<FIRIAMTimeFetcher>)timeFetcher
- cachePath:(nullable NSString *)cachePath {
- if (self = [super init]) {
- _records = [[NSMutableArray alloc] init];
- _timeFetcher = timeFetcher;
- _recordExpiresInSeconds = expireInSeconds;
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(appWillBecomeInactive:)
- name:UIApplicationWillResignActiveNotification
- object:nil];
- if (@available(iOS 13.0, tvOS 13.0, *)) {
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(appWillBecomeInactive:)
- name:UISceneWillDeactivateNotification
- object:nil];
- }
- @try {
- [self loadFromCachePath:cachePath];
- } @catch (NSException *exception) {
- FIRLogWarning(kFIRLoggerInAppMessaging, @"I-IAM230004",
- @"Non-fatal exception in loading persisted clearcut log records: %@.",
- exception);
- }
- }
- return self;
- }
- - (instancetype)initWithExpireAfterInSeconds:(NSInteger)expireInSeconds
- withTimeFetcher:(id<FIRIAMTimeFetcher>)timeFetcher {
- return [self initWithExpireAfterInSeconds:expireInSeconds
- withTimeFetcher:timeFetcher
- cachePath:nil];
- }
- - (void)appWillBecomeInactive:(NSNotification *)notification {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0ul), ^{
- [self saveIntoCacheWithPath:nil];
- });
- }
- - (void)dealloc {
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- - (void)pushRecords:(NSArray<FIRIAMClearcutLogRecord *> *)newRecords {
- @synchronized(self) {
- [self.records addObjectsFromArray:newRecords];
- }
- }
- - (NSArray<FIRIAMClearcutLogRecord *> *)popStillValidRecordsForUpTo:(NSInteger)upTo {
- NSMutableArray<FIRIAMClearcutLogRecord *> *resultArray = [[NSMutableArray alloc] init];
- NSInteger nowInSeconds = (NSInteger)[self.timeFetcher currentTimestampInSeconds];
- NSInteger next = 0;
- @synchronized(self) {
- while (resultArray.count < upTo && next < self.records.count) {
- FIRIAMClearcutLogRecord *nextRecord = self.records[next++];
- if (nextRecord.eventTimestampInSeconds > nowInSeconds - self.recordExpiresInSeconds) {
- // record not expired yet
- [resultArray addObject:nextRecord];
- }
- }
- [self.records removeObjectsInRange:NSMakeRange(0, next)];
- }
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM230005",
- @"Returning %d clearcut retry records from popStillValidRecords",
- (int)resultArray.count);
- return resultArray;
- }
- - (void)loadFromCachePath:(NSString *)cacheFilePath {
- NSString *filePath = cacheFilePath == nil ? [self.class determineCacheFilePath] : cacheFilePath;
- NSTimeInterval start = [self.timeFetcher currentTimestampInSeconds];
- id fetchedClearcutRetryRecords;
- NSData *data = [NSData dataWithContentsOfFile:filePath];
- if (data) {
- if (@available(macOS 10.13, iOS 11.0, tvOS 11.0, *)) {
- fetchedClearcutRetryRecords = [NSKeyedUnarchiver
- unarchivedObjectOfClasses:[NSSet setWithObjects:[FIRIAMClearcutLogRecord class],
- [NSMutableArray class], nil]
- fromData:data
- error:nil];
- } else {
- // Fallback on earlier versions
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- fetchedClearcutRetryRecords = [NSKeyedUnarchiver unarchiveObjectWithFile:filePath];
- #pragma clang diagnostic pop
- }
- }
- if (fetchedClearcutRetryRecords) {
- @synchronized(self) {
- self.records = (NSMutableArray<FIRIAMClearcutLogRecord *> *)fetchedClearcutRetryRecords;
- }
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM230002",
- @"Loaded %d clearcut log records from file in %lf seconds", (int)self.records.count,
- (double)[self.timeFetcher currentTimestampInSeconds] - start);
- }
- }
- - (BOOL)saveIntoCacheWithPath:(NSString *)cacheFilePath {
- NSString *filePath = cacheFilePath == nil ? [self.class determineCacheFilePath] : cacheFilePath;
- @synchronized(self) {
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- BOOL saveResult = [NSKeyedArchiver archiveRootObject:self.records toFile:filePath];
- #pragma clang diagnostic pop
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM230003",
- @"Saving %d clearcut log records into file is %@", (int)self.records.count,
- saveResult ? @"successful" : @"failure");
- return saveResult;
- }
- }
- @end
- #endif // TARGET_OS_IOS || TARGET_OS_TV || TARGET_OS_VISION
|