- Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathFIRIAMClearcutLogStorage.m
202 lines (173 loc) · 7.59 KB
/
FIRIAMClearcutLogStorage.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
* 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"
@implementationFIRIAMClearcutLogRecord
staticNSString *constkEventTimestampKey = @"event_ts_seconds";
staticNSString *constkEventExtensionJson = @"extension_js";
+ (BOOL)supportsSecureCoding {
returnYES;
}
- (instancetype)initWithExtensionJsonString:(NSString *)jsonString
eventTimestampInSeconds:(NSInteger)eventTimestampInSeconds {
self = [superinit];
if (self != nil) {
_eventTimestampInSeconds = eventTimestampInSeconds;
_eventExtensionJsonString = jsonString;
}
return self;
}
- (id)initWithCoder:(NSCoder *)decoder {
self = [superinit];
if (self != nil) {
_eventTimestampInSeconds = [decoder decodeIntegerForKey:kEventTimestampKey];
_eventExtensionJsonString = [decoder decodeObjectOfClass:[NSStringclass]
forKey:kEventExtensionJson];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)encoder {
[encoder encodeInteger:self.eventTimestampInSeconds forKey:kEventTimestampKey];
[encoder encodeObject:self.eventExtensionJsonString forKey:kEventExtensionJson];
}
@end
@interfaceFIRIAMClearcutLogStorage ()
@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.
@implementationFIRIAMClearcutLogStorage
+ (NSString *)determineCacheFilePath {
staticNSString *logCachePath;
staticdispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
NSString *libraryDirPath =
NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
logCachePath =
[NSStringstringWithFormat:@"%@/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 = [superinit]) {
_records = [[NSMutableArrayalloc] init];
_timeFetcher = timeFetcher;
_recordExpiresInSeconds = expireInSeconds;
[[NSNotificationCenterdefaultCenter] addObserver:self
selector:@selector(appWillBecomeInactive:)
name:UIApplicationWillResignActiveNotification
object:nil];
if (@available(iOS 13.0, tvOS 13.0, *)) {
[[NSNotificationCenterdefaultCenter] addObserver:self
selector:@selector(appWillBecomeInactive:)
name:UISceneWillDeactivateNotification
object:nil];
}
@try {
[selfloadFromCachePath: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 [selfinitWithExpireAfterInSeconds:expireInSeconds
withTimeFetcher:timeFetcher
cachePath:nil];
}
- (void)appWillBecomeInactive:(NSNotification *)notification {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0ul), ^{
[selfsaveIntoCacheWithPath:nil];
});
}
- (void)dealloc {
[[NSNotificationCenterdefaultCenter] removeObserver:self];
}
- (void)pushRecords:(NSArray<FIRIAMClearcutLogRecord *> *)newRecords {
@synchronized(self) {
[self.records addObjectsFromArray:newRecords];
}
}
- (NSArray<FIRIAMClearcutLogRecord *> *)popStillValidRecordsForUpTo:(NSInteger)upTo {
NSMutableArray<FIRIAMClearcutLogRecord *> *resultArray = [[NSMutableArrayalloc] 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 = [NSDatadataWithContentsOfFile:filePath];
if (data) {
fetchedClearcutRetryRecords = [NSKeyedUnarchiver
unarchivedObjectOfClasses:[NSSetsetWithObjects:[FIRIAMClearcutLogRecord class],
[NSMutableArrayclass], nil]
fromData:data
error:nil];
}
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 = [NSKeyedArchiverarchiveRootObject: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