950ce888e2
[ADDED] Crashlytics, Localytics. [IMPROVED] Async TestFlight takeOff. [REMOVED] TestFlight token hidden. [FIXED] Warnings, mostly to do with sign conversions. [ADDED] Warning messages whenever site's password changes, allowing the user to cancel the operation. [ADDED] Make password counter resettable by holding down on the counter increment button.
58 lines
1.9 KiB
Objective-C
58 lines
1.9 KiB
Objective-C
//
|
|
// LocalyticsDatabase.h
|
|
// LocalyticsDemo
|
|
//
|
|
// Created by jkaufman on 5/26/11.
|
|
// Copyright 2011 Localytics. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <sqlite3.h>
|
|
|
|
#define MAX_DATABASE_SIZE 500000 // The maximum allowed disk size of the primary database file at open, in bytes
|
|
#define VACUUM_THRESHOLD 0.8 // The database is vacuumed after its size exceeds this proportion of the maximum.
|
|
|
|
@interface LocalyticsDatabase : NSObject {
|
|
sqlite3 *_databaseConnection;
|
|
}
|
|
|
|
+ (LocalyticsDatabase *)sharedLocalyticsDatabase;
|
|
|
|
- (NSUInteger)databaseSize;
|
|
- (int)eventCount;
|
|
- (NSTimeInterval)createdTimestamp;
|
|
|
|
- (BOOL)beginTransaction:(NSString *)name;
|
|
- (BOOL)releaseTransaction:(NSString *)name;
|
|
- (BOOL)rollbackTransaction:(NSString *)name;
|
|
|
|
- (BOOL)incrementLastUploadNumber:(int *)uploadNumber;
|
|
- (BOOL)incrementLastSessionNumber:(int *)sessionNumber;
|
|
|
|
- (BOOL)addEventWithBlobString:(NSString *)blob;
|
|
- (BOOL)addCloseEventWithBlobString:(NSString *)blob;
|
|
- (BOOL)addFlowEventWithBlobString:(NSString *)blob;
|
|
- (BOOL)removeLastCloseAndFlowEvents;
|
|
|
|
- (BOOL)addHeaderWithSequenceNumber:(int)number blobString:(NSString *)blob rowId:(sqlite3_int64 *)insertedRowId;
|
|
- (int)unstagedEventCount;
|
|
- (BOOL)stageEventsForUpload:(sqlite3_int64)headerId;
|
|
- (BOOL)updateAppKey:(NSString *)appKey;
|
|
- (NSString *)uploadBlobString;
|
|
- (BOOL)deleteUploadedData;
|
|
- (BOOL)resetAnalyticsData;
|
|
- (BOOL)vacuumIfRequired;
|
|
|
|
- (NSTimeInterval)lastSessionStartTimestamp;
|
|
- (BOOL)setLastsessionStartTimestamp:(NSTimeInterval)timestamp;
|
|
|
|
- (BOOL)isOptedOut;
|
|
- (BOOL)setOptedOut:(BOOL)optOut;
|
|
- (NSString *)installId;
|
|
- (NSString *)appKey; // Most recent app key-- may not be that used to open the session.
|
|
|
|
- (NSString *)customDimension:(int)dimension;
|
|
- (BOOL)setCustomDimension:(int)dimension value:(NSString *)value;
|
|
|
|
@end
|