summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDebugTool.m
blob: c07f206c180691633d7cc0aa8235331744aee061 (plain)
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
//  SDLDebugTool.m
//

#import "SDLDebugTool.h"
#import "NSThread+ThreadIndex.h"
#import "SDLHexUtility.h"
#import "SDLRPCMessage.h"
#import "SDLSiphonServer.h"


@interface SDLDebugTool ()

@property (nonatomic, assign) BOOL enabled;
@property (nonatomic, assign) BOOL debugToLogFile;
@property (nonatomic, strong) NSMutableDictionary *namedConsoleSets;
@property (nonatomic, strong) NSDateFormatter *logDateFormatter;
@property (nonatomic, strong) NSFileHandle *logFileHandle;
@property (nonatomic, strong) dispatch_queue_t logQueue;

@end


@implementation SDLDebugTool

#pragma mark - Lifecycle

- (instancetype)init {
    self = [super init];
    if (!self) {
        return nil;
    }

    _enabled = YES;
    _debugToLogFile = NO;
    _logQueue = dispatch_queue_create("com.sdl.log.file", DISPATCH_QUEUE_SERIAL);

    return self;
}

+ (SDLDebugTool *)sharedTool {
    static SDLDebugTool *sharedTool = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedTool = [[self alloc] init];
    });

    return sharedTool;
}

+ (void)enable {
    [SDLDebugTool sharedTool].enabled = YES;
}

+ (void)disable {
    [SDLDebugTool sharedTool].enabled = NO;
}


#pragma mark - Console Management

+ (void)addConsole:(NSObject<SDLDebugToolConsole> *)console {
    [self addConsole:console toGroup:@"default"];
}

- (void)sdl_addConsole:(NSObject<SDLDebugToolConsole> *)console toGroup:(NSString *)groupName {
    // Make sure master dictionary exists
    if (self.namedConsoleSets == nil) {
        self.namedConsoleSets = [NSMutableDictionary new];
    }

    // Make sure the set to contain this group's elements exists
    if ([self.namedConsoleSets objectForKey:groupName] == nil) {
        [self.namedConsoleSets setValue:[NSMutableSet new] forKey:groupName];
    }

    // Add the console to the set
    [[self.namedConsoleSets valueForKey:groupName] addObject:console];
}

+ (void)addConsole:(NSObject<SDLDebugToolConsole> *)console toGroup:(NSString *)groupName {
    [[self sharedTool] sdl_addConsole:console toGroup:groupName];
}

+ (void)removeConsole:(NSObject<SDLDebugToolConsole> *)console {
    [self removeConsole:console fromGroup:@"default"];
}

+ (void)removeConsole:(NSObject<SDLDebugToolConsole> *)console fromGroup:(NSString *)groupName {
    [[SDLDebugTool getConsoleListenersForGroup:groupName] removeObject:console];
}

+ (NSMutableSet *)getConsoleListenersForGroup:(NSString *)groupName {
    return [[self sharedTool] sdl_getConsoleListenersForGroup:groupName];
}

- (NSMutableSet *)sdl_getConsoleListenersForGroup:(NSString *)groupName {
    return [self.namedConsoleSets valueForKey:groupName];
}


#pragma mark - Logging

+ (void)logInfo:(NSString *)info {
    [self logInfo:info withType:SDLDebugType_Debug toOutput:SDLDebugOutput_All toGroup:@"default"];
}

+ (void)logFormat:(NSString *)info, ... {
    va_list args;
    va_start(args, info);

    NSString *format = [[NSString alloc] initWithFormat:info arguments:args];
    [self logInfo:format];
}

+ (void)logInfo:(NSString *)info withType:(SDLDebugType)type {
    [self logInfo:info withType:type toOutput:SDLDebugOutput_All toGroup:@"default"];
}

+ (void)logInfo:(NSString *)info withType:(SDLDebugType)type toOutput:(SDLDebugOutput)output {
    [SDLDebugTool logInfo:info withType:type toOutput:output toGroup:@"default"];
}

+ (void)logInfo:(NSString *)info andBinaryData:(NSData *)data withType:(SDLDebugType)type toOutput:(SDLDebugOutput)output {
    if (![SDLDebugTool sharedTool].enabled) {
        return;
    }

    // convert binary data to string, append the two strings, then pass to usual log method.
    NSMutableString *outputString = [[NSMutableString alloc] init];
    if (info) {
        [outputString appendString:info];
    }

    if (data) {
        @autoreleasepool {
            NSString *dataString = [SDLHexUtility getHexString:data];
            if (dataString) {
                [outputString appendString:dataString];
            }
        }
    }

    [SDLDebugTool logInfo:outputString withType:type toOutput:output toGroup:@"default"];
}

// The designated logInfo method. All outputs should be performed here.
+ (void)logInfo:(NSString *)info withType:(SDLDebugType)type toOutput:(SDLDebugOutput)output toGroup:(NSString *)consoleGroupName {
    if (![SDLDebugTool sharedTool].enabled) {
        return;
    }

    // Format the message, prepend the thread id
    NSString *outputString = [NSString stringWithFormat:@"[%li] %@", (long)[[NSThread currentThread] threadIndex], info];

    //  Output to the various destinations

    //Output To DeviceConsole
    if ((output & SDLDebugOutput_DeviceConsole) == SDLDebugOutput_DeviceConsole) {
        NSLog(@"%@", outputString);
    }

    //Output To DebugToolConsoles
    if ((output & SDLDebugOutput_DebugToolConsole) == SDLDebugOutput_DebugToolConsole) {
        NSSet *consoleListeners = [self getConsoleListenersForGroup:consoleGroupName];
        for (NSObject<SDLDebugToolConsole> *console in consoleListeners) {
            [console logInfo:outputString];
        }
    }

    //Output To LogFile
    if ((output & SDLDebugOutput_File) == SDLDebugOutput_File) {
        [SDLDebugTool writeToLogFile:outputString];
    }

    //Output To Siphon
    [SDLSiphonServer init];
    [SDLSiphonServer _siphonNSLogData:outputString];
}


#pragma mark - File Handling

+ (void)enableDebugToLogFile {
    [[self sharedTool] sdl_enableDebugToLogFile];
}

- (void)sdl_enableDebugToLogFile {
    if (self.debugToLogFile) {
        return;
    }
    
    [SDLDebugTool logInfo:@"Enabling Log File" withType:SDLDebugType_Debug];

    self.debugToLogFile = YES;

    //Delete Log File If It Exists
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"smartdevicelink.log"];

    NSFileManager *manager = [NSFileManager defaultManager];
    if ([manager fileExistsAtPath:filePath]) {
        [manager removeItemAtPath:filePath error:nil];
    }

    // Create log file
    [manager createFileAtPath:filePath contents:nil attributes:nil];
    self.logFileHandle = [NSFileHandle fileHandleForWritingAtPath:filePath];
    [self.logFileHandle seekToEndOfFile];
}

+ (void)disableDebugToLogFile {
    [[self sharedTool] sdl_disableDebugToLogFile];
}

- (void)sdl_disableDebugToLogFile {
    self.debugToLogFile = false;
}

+ (void)writeToLogFile:(NSString *)info {
    [[self sharedTool] sdl_writeToLogFile:info];
}

- (void)sdl_writeToLogFile:(NSString *)info {
    // Warning: do not call any logInfo method from here. recursion of death.
    if (!self.debugToLogFile || info == NULL || info.length == 0) {
        return;
    }

    dispatch_async(self.logQueue, ^{
        // Create timestamp string, add it in front of the message to be logged
        NSDate *currentDate = [NSDate date];
        NSString *dateString = [self.logDateFormatter stringFromDate:currentDate];
        NSString *outputString = [dateString stringByAppendingFormat:@": %@\n", info];

        // File write takes an NSData, so convert string to data.
        NSData *dataToLog = [outputString dataUsingEncoding:NSUTF8StringEncoding];

        if (self.logFileHandle != nil) {
            [self.logFileHandle seekToEndOfFile];
            [self.logFileHandle writeData:dataToLog];
        } else {
            NSLog(@"SDL ERROR: Unable to log to file. File handle does not exist.");
        }
    });
}

- (NSDateFormatter *)logDateFormatter {
    if (_logDateFormatter == nil) {
        _logDateFormatter = [[NSDateFormatter alloc] init];
        [_logDateFormatter setDateFormat:@"MM/dd/YY HH:mm:ss.SSS"];
    }

    return _logDateFormatter;
}


#pragma mark - Helper Methods

+ (NSString *)stringForDebugType:(SDLDebugType)debugType {
    switch (debugType) {
        case SDLDebugType_Debug:
            return @"DBG";
            break;
        case SDLDebugType_Transport_iAP:
            return @"iAP";
            break;
        case SDLDebugType_Transport_TCP:
            return @"TCP";
            break;
        case SDLDebugType_Protocol:
            return @"Pro";
            break;
        case SDLDebugType_RPC:
            return @"RPC";
            break;
        case SDLDebugType_APP:
            return @"APP";
            break;

        default:
            return @"Invalid DebugType";
            break;
    }
}

@end