summaryrefslogtreecommitdiff
path: root/SDL_iOS/SmartDeviceLinkProxy/Classes/SDLProxy.m
blob: 41e07928d8e5def5083eecaf62c75de5a9014b43 (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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
//
// Copyright (c) 2013 Ford Motor Company
//

#import <Foundation/Foundation.h>
#import <ExternalAccessory/ExternalAccessory.h>

#import "SDLProxy.h"
#import "SDLNames.h"
#import "SDLJsonEncoder.h"
#import "SDLJsonDecoder.h"
#import "SDLLanguage.h"
#import "SDLDebugTool.h"
#import <objc/runtime.h>
#import "SDLSiphonServer.h"

@interface SDLCallback : NSObject {
	NSObject* target;
	SEL selector;
	NSObject* parameter;
}

@property (nonatomic, retain) NSObject* target;
@property (nonatomic, assign) SEL selector;
@property (nonatomic, retain) NSObject* parameter;

@end

@implementation SDLCallback
@synthesize target;
@synthesize selector;
@synthesize parameter;

-(void) dealloc {
	[target release];
	[parameter release];
	
	[super dealloc];
}

@end

@interface SDLProxy ()

-(void) notifyProxyClosed;
-(void) handleProtocolMessage:(SDLProtocolMessage*) msgData;
-(void) performCallback:(SDLCallback*) callback;

@end

@implementation SDLProxy

const float handshakeTime = 10.0;
const float notifyProxyClosedDelay = 0.1;

- (void)handshakeTimerFired {
    [self destroyHandshakeTimer];
    [self performSelector:@selector(notifyProxyClosed) withObject:nil afterDelay:notifyProxyClosedDelay];
}

-(id) initWithTransport:(NSObject<SDLITransport>*) theTransport protocol:(NSObject<SDLIProtocol>*) theProtocol delegate:(NSObject<SDLProxyListener>*) theDelegate {
	if (self = [super init]) {        
        [[EAAccessoryManager sharedAccessoryManager] registerForLocalNotifications];
        
        proxyListeners = [[NSMutableArray alloc] initWithObjects:theDelegate, nil];
        protocol = [theProtocol retain];
        transport = [theTransport retain];
        rpcSessionID = 0;
        
        alreadyDestructed = NO;
        
        [transport addTransportListener:protocol];
        [protocol addProtocolListener:self];
        protocol.transport = transport;
            
        [transport connect];

       return self;
    }
    return self;
}

-(void)destroyHandshakeTimer {
    if (handshakeTimer != nil) {
        [handshakeTimer invalidate];
        [handshakeTimer release];
        handshakeTimer = nil;
    }
}

-(void) destructObjects {
    if(!alreadyDestructed) {
        [self destroyHandshakeTimer];
        
        [transport release];
        transport = nil;
        
        [protocol release];
        protocol = nil;
        
        [proxyListeners release];
        proxyListeners = nil;
        
        alreadyDestructed = YES;

    }
}

-(void) dispose {
    [self destructObjects];
}

-(void) dealloc {
    [self destructObjects];
	[super dealloc];
}

-(NSObject<SDLITransport>*)getTransport {
    return transport;
}

-(NSObject<SDLIProtocol>*)getProtocol {
    return protocol;
}

-(void) addDelegate:(NSObject<SDLProxyListener>*) delegate {
	@synchronized(proxyListeners) {
		[proxyListeners addObject:delegate];
	}
}


-(void) sendRPCRequest:(SDLRPCMessage*) msg {
	@try {
        [SDLDebugTool logInfo:@"Proxy: sendRPCRequest: encoding message: %@", msg];
		NSData* msgData = [[SDLJsonEncoder instance] encodeDictionary:[msg serializeAsDictionary]];
		[protocol sendData:msgData sessionType:SDLSessionType_RPC sessionID:rpcSessionID];
	} @catch (NSException * e) {
		[SDLDebugTool logException:e withMessage:@"Proxy: sendRPCRequest: Failed to send RPC request: %@", msg.name];
	} @finally {}
}
	 
- (void) onProtocolMessageReceived:(SDLProtocolMessage*) msgData {
	
	@try {
		[self handleProtocolMessage:msgData];
	} @catch (NSException * e) {
		[SDLDebugTool logException:e withMessage:@"Proxy: onProtocolMessageReceived: Failed to handle protocol message."];
	} @finally {}
}

-(void) handleProtocolMessage:(SDLProtocolMessage*) msgData {
    // It's possible to run into a scenario in which SYNC fails to send a StartSessionACK. This issue will be caught by the timer that's waiting for a RegisterAppInterfaceResponse. If no RAIResponse is received, a call to onProxyClosed will occur.
	if (msgData.messageType == SDLMessageType_StartSessionACK) {
        if (msgData.sessionType == SDLSessionType_RPC) {
            rpcSessionID = msgData.sessionID;
            [SDLDebugTool logInfo:@"Got rpcSessionID = %i", rpcSessionID];
			
			NSArray *localListeners = nil;
			@synchronized (proxyListeners) {
				localListeners = [proxyListeners copy];
			}
			
            for (NSObject<SDLProxyListener> *listener in localListeners) {
                [listener onProxyOpened];
            }
			
			[localListeners release];
        } else if (msgData.sessionType == SDLSessionType_BulkData) {
            bulkSessionID = msgData.sessionID;
            [SDLDebugTool logInfo:@"Proxy: handleProtocolMessage: Got bulkSessionID = %i", bulkSessionID];
        }
	}
	
	if (msgData.data.length > 0) {
		NSDictionary *msg = [[SDLJsonDecoder instance] decode:msgData.data];
		[self handleRpcMessage:msg];
	}

}

-(void) neverCalled {
	[[SDLAddCommandResponse alloc] release];
	[[SDLAddSubMenuResponse alloc] release];
	[[SDLAlertResponse alloc] release];
	[[SDLCreateInteractionChoiceSetResponse alloc] release];
	[[SDLDeleteCommandResponse alloc] release];
	[[SDLDeleteInteractionChoiceSetResponse alloc] release];
	[[SDLDeleteSubMenuResponse alloc] release];
	[[SDLOnHMIStatus alloc] release];
	[[SDLOnButtonEvent alloc] release];
	[[SDLOnButtonPress alloc] release];
	[[SDLEncodedSyncPDataResponse alloc] release];
	[[SDLOnCommand alloc] release];
	[[SDLOnAppInterfaceUnregistered alloc] release];
	[[SDLPerformInteractionResponse alloc] release];
	[[SDLRegisterAppInterfaceResponse alloc] release];
	[[SDLSetGlobalPropertiesResponse alloc] release];
	[[SDLResetGlobalPropertiesResponse alloc] release];
	[[SDLSetMediaClockTimerResponse alloc] release];
	[[SDLShowResponse alloc] release];
	[[SDLSpeakResponse alloc] release];
	[[SDLSubscribeButtonResponse alloc] release];
	[[SDLUnregisterAppInterfaceResponse alloc] release];
	[[SDLUnsubscribeButtonResponse alloc] release];
    [[SDLGenericResponse alloc] release];
    [[SDLOnDriverDistraction alloc] release];
    [[SDLOnEncodedSyncPData alloc] release];
    [[SDLOnTBTClientState alloc] release];
}

-(void) handleRpcMessage:(NSDictionary*) msg {
	
	NSString* messageType = [[msg keyEnumerator] nextObject];
	NSDictionary* function = [msg objectForKey:messageType];
	NSString* functionName = [function objectForKey:NAMES_operation_name];
	if ([functionName isEqualToString:NAMES_OnAppInterfaceUnregistered] 
			|| [functionName isEqualToString:NAMES_UnregisterAppInterface]) {
		[self notifyProxyClosed];
		return;
	}
    
	if ([messageType isEqualToString:NAMES_response]) {
        [SDLDebugTool logInfo:@"Proxy: handleRpcMessage: Receiving: %@", functionName];
		bool notGenericResponseMessage = ![functionName isEqualToString:@"GenericResponse"];
		if(notGenericResponseMessage) functionName = [NSString stringWithFormat:@"%@Response", functionName];
	}
    
    // Turn off the timer, the handshake has succeeded
    if ([functionName isEqualToString:@"RegisterAppInterfaceResponse"]) {
        [self destroyHandshakeTimer];
    }
    
	NSString* functionClassName = [NSString stringWithFormat:@"SDL%@", functionName];
	Class functionClass = objc_getClass([functionClassName cStringUsingEncoding:NSUTF8StringEncoding]);
    
    // functionObject doesn't leak because performSelector returns a pointer to the same instance that class_createInstance() creates
	NSObject* functionObject = (id)class_createInstance(functionClass, 0);
    NSObject* rpcCallbackObject = [functionObject performSelector:@selector(initWithDictionary:) withObject:msg];
	
	NSString* handlerName = [NSString stringWithFormat:@"on%@:", functionName];

	SEL handlerSelector = NSSelectorFromString(handlerName);
	
	NSArray *localListeners = nil;
	@synchronized (proxyListeners) {
		localListeners = [proxyListeners copy];
	}
	
	for (NSObject<SDLProxyListener> *listener in localListeners) {
		if ([listener respondsToSelector:handlerSelector]) {
			SDLCallback* callback = [[SDLCallback alloc] init];
			callback.target = listener;
			callback.selector = handlerSelector;
			callback.parameter = rpcCallbackObject;
			[self performSelectorOnMainThread:@selector(performCallback:) withObject:callback waitUntilDone:NO];
			// [callback release]; Moved to performCallback to avoid thread race condition
		} else {
			[SDLDebugTool logInfo:@"Proxy: handleRpcMessage: Proxy listener doesn't respond to selector: %@", handlerName];
		}
	}
	[localListeners release];
}

-(void) performCallback:(SDLCallback*) callback {
	@try {
		[callback.target performSelector:callback.selector withObject:callback.parameter];
	} @catch (NSException * e) {
		[SDLDebugTool logException:e withMessage:@"Exception thrown during call to %@ with object %@", callback.target, callback.parameter];
	} @finally {
		[callback release];
	}
}

-(void) onProtocolClosed {
	[self notifyProxyClosed];
}

-(void) notifyProxyClosed {
	if (isConnected) {
		isConnected = NO;
		NSArray *localListeners = nil;
		@synchronized (proxyListeners) {
			localListeners = [proxyListeners copy];
		}
		
		for (NSObject<SDLProxyListener> *listener in localListeners) {
			[listener performSelectorOnMainThread:@selector(onProxyClosed) withObject:nil waitUntilDone:NO];
		}
		[localListeners release];
	}
}

-(void) onError:(NSString*) info exception:(NSException*) e {
	
	NSArray *localListeners = nil;
	@synchronized (proxyListeners) {
		localListeners = [proxyListeners copy];
	}
	
	for (NSObject<SDLProxyListener> *listener in localListeners) {
		[listener performSelectorOnMainThread:@selector(onError:) withObject:e waitUntilDone:NO];
	}
	[localListeners release];
}



- (void) onProtocolOpened {
	isConnected = YES;
	[protocol sendStartSessionWithType:SDLSessionType_RPC];
    [self destroyHandshakeTimer];
    handshakeTimer = [NSTimer scheduledTimerWithTimeInterval:handshakeTime target:self selector:@selector(handshakeTimerFired) userInfo:nil repeats:NO];
    [handshakeTimer retain];
}

+(void)enableSiphonDebug {
    [SDLSiphonServer enableSiphonDebug];
}

+(void)disableSiphonDebug {
    [SDLSiphonServer disableSiphonDebug];
}

@end