59 lines
2.5 KiB
Objective-C
59 lines
2.5 KiB
Objective-C
//
|
|
// TAAutoTrackEvent.m
|
|
// ThinkingSDK
|
|
//
|
|
// Created by Yangxiongon 2022/6/15.
|
|
//
|
|
|
|
#import "TAAutoTrackEvent.h"
|
|
#import "ThinkingAnalyticsSDKPrivate.h"
|
|
#import "TDPresetProperties+TDDisProperties.h"
|
|
|
|
@implementation TAAutoTrackEvent
|
|
|
|
- (NSMutableDictionary *)jsonObject {
|
|
NSMutableDictionary *dict = [super jsonObject];
|
|
// Reprocess the duration of automatic collection events, mainly app_start, app_end
|
|
// app_start app_end events are collected by the automatic collection management class. There are the following problems: the automatic collection management class and the timeTracker event duration management class are processed by listening to appLifeCycle notifications, so they are not at a precise and unified time point. There will be small errors that need to be eliminated.
|
|
// After testing, the error is less than 0.01s.
|
|
CGFloat minDuration = 0.01;
|
|
if (![TDPresetProperties disableDuration]) {
|
|
if (self.foregroundDuration > minDuration) {
|
|
self.properties[@"#duration"] = @([NSString stringWithFormat:@"%.3f", self.foregroundDuration].floatValue);
|
|
}
|
|
}
|
|
if (![TDPresetProperties disableBackgroundDuration]) {
|
|
if (self.backgroundDuration > minDuration) {
|
|
self.properties[@"#background_duration"] = @([NSString stringWithFormat:@"%.3f", self.backgroundDuration].floatValue);
|
|
}
|
|
}
|
|
|
|
return dict;
|
|
}
|
|
|
|
- (ThinkingAnalyticsAutoTrackEventType)autoTrackEventType {
|
|
if ([self.eventName isEqualToString:TD_APP_START_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppStart;
|
|
} else if ([self.eventName isEqualToString:TD_APP_START_BACKGROUND_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppStart;
|
|
} else if ([self.eventName isEqualToString:TD_APP_END_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppEnd;
|
|
} else if ([self.eventName isEqualToString:TD_APP_VIEW_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppViewScreen;
|
|
} else if ([self.eventName isEqualToString:TD_APP_CLICK_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppClick;
|
|
} else if ([self.eventName isEqualToString:TD_APP_CRASH_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppViewCrash;
|
|
} else if ([self.eventName isEqualToString:TD_APP_INSTALL_EVENT]) {
|
|
return ThinkingAnalyticsEventTypeAppInstall;
|
|
} else {
|
|
return ThinkingAnalyticsEventTypeNone;
|
|
}
|
|
}
|
|
|
|
- (void)ta_validateKey:(NSString *)key value:(id)value error:(NSError *__autoreleasing _Nullable *)error {
|
|
[TAPropertyValidator validateAutoTrackEventPropertyKey:key value:value error:error];
|
|
}
|
|
|
|
@end
|