summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLRPCRequestFactory.m
blob: 51879a9b0f5bc3a3f29dae830aa55ca6c36d3462 (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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
//  SDLRPCRequestFactory.m
//

#import "SDLRPCRequestFactory.h"
#import <CoreTelephony/CTCarrier.h>
#import <CoreTelephony/CTTelephonyNetworkInfo.h>
#import <UIKit/UIKit.h>

#import "SDLAddCommand.h"
#import "SDLAddSubMenu.h"
#import "SDLAlert.h"
#import "SDLAlertManeuver.h"
#import "SDLAppHMIType.h"
#import "SDLChangeRegistration.h"
#import "SDLCreateInteractionChoiceSet.h"
#import "SDLDebugTool.h"
#import "SDLDeleteCommand.h"
#import "SDLDeleteFile.h"
#import "SDLDeleteInteractionChoiceSet.h"
#import "SDLDeleteSubMenu.h"
#import "SDLDeviceInfo.h"
#import "SDLDialNumber.h"
#import "SDLEndAudioPassThru.h"
#import "SDLFileType.h"
#import "SDLGetDTCs.h"
#import "SDLGetVehicleData.h"
#import "SDLImage.h"
#import "SDLInteractionMode.h"
#import "SDLListFiles.h"
#import "SDLMenuParams.h"
#import "SDLPerformAudioPassThru.h"
#import "SDLPerformInteraction.h"
#import "SDLPutFile.h"
#import "SDLReadDID.h"
#import "SDLRegisterAppInterface.h"
#import "SDLResetGlobalProperties.h"
#import "SDLScrollableMessage.h"
#import "SDLSendLocation.h"
#import "SDLSetAppIcon.h"
#import "SDLSetDisplayLayout.h"
#import "SDLSetGlobalProperties.h"
#import "SDLSetMediaClockTimer.h"
#import "SDLShow.h"
#import "SDLShowConstantTBT.h"
#import "SDLSlider.h"
#import "SDLSoftButton.h"
#import "SDLSpeak.h"
#import "SDLSpeechCapabilities.h"
#import "SDLStartTime.h"
#import "SDLSubscribeButton.h"
#import "SDLSubscribeVehicleData.h"
#import "SDLSyncMsgVersion.h"
#import "SDLTTSChunk.h"
#import "SDLTTSChunkFactory.h"
#import "SDLUnregisterAppInterface.h"
#import "SDLUnsubscribeButton.h"
#import "SDLUnsubscribeVehicleData.h"
#import "SDLUpdateTurnList.h"


@implementation SDLRPCRequestFactory

//***** AddCommand *****
+ (SDLAddCommand *)buildAddCommandWithID:(NSNumber *)cmdID menuName:(NSString *)menuName parentID:(NSNumber *)parentID position:(NSNumber *)position vrCommands:(NSArray *)vrCommands iconValue:(NSString *)iconValue iconType:(SDLImageType *)iconType correlationID:(NSNumber *)correlationID {
    SDLAddCommand *msg = [[SDLAddCommand alloc] init];
    
    msg.cmdID = cmdID;
    
    if (menuName != nil || parentID != nil || position != nil) {
        SDLMenuParams *menuParams = [[SDLMenuParams alloc] init];
        menuParams.menuName = menuName;
        menuParams.parentID = parentID;
        menuParams.position = position;
        msg.menuParams = menuParams;
    }
    msg.vrCommands = [vrCommands mutableCopy];
    
    if (iconValue != nil || iconType != nil) {
        SDLImage *icon = [[SDLImage alloc] init];
        icon.value = iconValue;
        icon.imageType = iconType;
        msg.cmdIcon = icon;
    }
    
    msg.correlationID = correlationID;
    
    return msg;
}

+ (SDLAddCommand *)buildAddCommandWithID:(NSNumber *)cmdID menuName:(NSString *)menuName parentID:(NSNumber *)parentID position:(NSNumber *)position vrCommands:(NSArray *)vrCommands iconValue:(NSString *)iconValue iconType:(SDLImageType *)iconType handler:(SDLRPCNotificationHandler)handler {
    SDLAddCommand *msg = [[SDLAddCommand alloc] initWithHandler:handler];

    msg.cmdID = cmdID;

    if (menuName != nil || parentID != nil || position != nil) {
        SDLMenuParams *menuParams = [[SDLMenuParams alloc] init];
        menuParams.menuName = menuName;
        menuParams.parentID = parentID;
        menuParams.position = position;
        msg.menuParams = menuParams;
    }
    msg.vrCommands = [vrCommands mutableCopy];

    if (iconValue != nil || iconType != nil) {
        SDLImage *icon = [[SDLImage alloc] init];
        icon.value = iconValue;
        icon.imageType = iconType;
        msg.cmdIcon = icon;
    }

    return msg;
}

+ (SDLAddCommand *)buildAddCommandWithID:(NSNumber *)cmdID menuName:(NSString *)menuName vrCommands:(NSArray *)vrCommands correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAddCommandWithID:cmdID menuName:menuName parentID:nil position:nil vrCommands:vrCommands iconValue:nil iconType:nil correlationID:correlationID];
}

+ (SDLAddCommand *)buildAddCommandWithID:(NSNumber *)cmdID menuName:(NSString *)menuName vrCommands:(NSArray *)vrCommands handler:(SDLRPCNotificationHandler)handler {
    return [SDLRPCRequestFactory buildAddCommandWithID:cmdID menuName:menuName parentID:nil position:nil vrCommands:vrCommands iconValue:nil iconType:nil handler:handler];
}

+ (SDLAddCommand *)buildAddCommandWithID:(NSNumber *)cmdID vrCommands:(NSArray *)vrCommands correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAddCommandWithID:cmdID menuName:nil vrCommands:vrCommands correlationID:correlationID];
}

+ (SDLAddCommand *)buildAddCommandWithID:(NSNumber *)cmdID vrCommands:(NSArray *)vrCommands handler:(SDLRPCNotificationHandler)handler {
    return [SDLRPCRequestFactory buildAddCommandWithID:cmdID menuName:nil vrCommands:vrCommands handler:handler];
}
//*****


//***** AddSubMenu *****
+ (SDLAddSubMenu *)buildAddSubMenuWithID:(NSNumber *)menuID menuName:(NSString *)menuName position:(NSNumber *)position correlationID:(NSNumber *)correlationID {
    SDLAddSubMenu *msg = [[SDLAddSubMenu alloc] init];
    msg.correlationID = correlationID;
    msg.menuID = menuID;
    msg.menuName = menuName;
    msg.position = position;
    return msg;
}

+ (SDLAddSubMenu *)buildAddSubMenuWithID:(NSNumber *)menuID menuName:(NSString *)menuName correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAddSubMenuWithID:menuID menuName:menuName position:nil correlationID:correlationID];
}
//*****


//***** Alert *****
+ (SDLAlert *)buildAlertWithTTS:(NSString *)ttsText alertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 alertText3:(NSString *)alertText3 playTone:(NSNumber *)playTone duration:(NSNumber *)duration correlationID:(NSNumber *)correlationID {
    SDLTTSChunk *simpleChunk = [[SDLTTSChunk alloc] init];
    simpleChunk.text = ttsText;
    simpleChunk.type = SDLSpeechCapabilities.TEXT;
    NSArray *ttsChunks = [NSArray arrayWithObject:simpleChunk];

    return [SDLRPCRequestFactory buildAlertWithTTSChunks:ttsChunks alertText1:alertText1 alertText2:alertText2 alertText3:alertText3 playTone:playTone duration:duration softButtons:nil correlationID:correlationID];
}

+ (SDLAlert *)buildAlertWithTTS:(NSString *)ttsText alertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 playTone:(NSNumber *)playTone duration:(NSNumber *)duration correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAlertWithTTS:ttsText alertText1:alertText1 alertText2:alertText2 alertText3:nil playTone:playTone duration:duration correlationID:correlationID];
}

+ (SDLAlert *)buildAlertWithTTS:(NSString *)ttsText playTone:(NSNumber *)playTone correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAlertWithTTS:ttsText alertText1:nil alertText2:nil alertText3:nil playTone:playTone duration:nil correlationID:correlationID];
}

//***
+ (SDLAlert *)buildAlertWithTTSChunks:(NSArray *)ttsChunks alertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 alertText3:(NSString *)alertText3 playTone:(NSNumber *)playTone duration:(NSNumber *)duration softButtons:(NSArray *)softButtons correlationID:(NSNumber *)correlationID {
    SDLAlert *msg = [[SDLAlert alloc] init];
    msg.correlationID = correlationID;
    msg.alertText1 = alertText1;
    msg.alertText2 = alertText2;
    msg.alertText3 = alertText3;
    msg.ttsChunks = [ttsChunks mutableCopy];
    msg.playTone = playTone;
    msg.duration = duration;
    msg.softButtons = [softButtons mutableCopy];
    return msg;
}

+ (SDLAlert *)buildAlertWithTTSChunks:(NSArray *)ttsChunks playTone:(NSNumber *)playTone correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAlertWithTTSChunks:ttsChunks alertText1:nil alertText2:nil alertText3:nil playTone:playTone duration:nil softButtons:nil correlationID:correlationID];
}

//***
+ (SDLAlert *)buildAlertWithAlertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 alertText3:(NSString *)alertText3 duration:(NSNumber *)duration softButtons:(NSMutableArray *)softButtons correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAlertWithTTSChunks:nil alertText1:alertText1 alertText2:alertText2 alertText3:alertText3 playTone:nil duration:duration softButtons:softButtons correlationID:correlationID];
}

+ (SDLAlert *)buildAlertWithAlertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 alertText3:(NSString *)alertText3 duration:(NSNumber *)duration correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAlertWithTTSChunks:nil alertText1:alertText1 alertText2:alertText2 alertText3:alertText3 playTone:nil duration:duration softButtons:nil correlationID:correlationID];
}

+ (SDLAlert *)buildAlertWithAlertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 duration:(NSNumber *)duration correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildAlertWithTTSChunks:nil alertText1:alertText1 alertText2:alertText2 alertText3:nil playTone:nil duration:duration softButtons:nil correlationID:correlationID];
}
//*****


+ (SDLAlertManeuver *)buildAlertManeuverwithTTSchunks:(NSMutableArray *)ttsChunks softButtons:(NSMutableArray *)softButtons correlationID:(NSNumber *)correlationID {
    SDLAlertManeuver *msg = [[SDLAlertManeuver alloc] init];
    msg.ttsChunks = ttsChunks;
    msg.softButtons = softButtons;
    msg.correlationID = correlationID;
    return msg;
}

+ (SDLChangeRegistration *)buildChangeRegistrationWithLanguage:(SDLLanguage *)language hmiDisplayLanguage:(SDLLanguage *)hmiDisplayLanguage correlationID:(NSNumber *)correlationID {
    SDLChangeRegistration *msg = [[SDLChangeRegistration alloc] init];
    msg.language = language;
    msg.hmiDisplayLanguage = hmiDisplayLanguage;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLCreateInteractionChoiceSet *)buildCreateInteractionChoiceSetWithID:(NSNumber *)interactionChoiceSetID choiceSet:(NSArray *)choices correlationID:(NSNumber *)correlationID {
    SDLCreateInteractionChoiceSet *msg = [[SDLCreateInteractionChoiceSet alloc] init];
    msg.interactionChoiceSetID = interactionChoiceSetID;
    msg.choiceSet = [choices mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLDeleteCommand *)buildDeleteCommandWithID:(NSNumber *)cmdID correlationID:(NSNumber *)correlationID {
    SDLDeleteCommand *msg = [[SDLDeleteCommand alloc] init];
    msg.cmdID = cmdID;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLDeleteFile *)buildDeleteFileWithName:(NSString *)syncFileName correlationID:(NSNumber *)correlationID {
    SDLDeleteFile *msg = [[SDLDeleteFile alloc] init];
    msg.syncFileName = syncFileName;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLDialNumber *)buildDialNumberWithNumber:(NSString *)phoneNumber {
    SDLDialNumber *msg = [[SDLDialNumber alloc] init];
    msg.number = phoneNumber;

    return msg;
}

+ (SDLListFiles *)buildListFilesWithCorrelationID:(NSNumber *)correlationID {
    SDLListFiles *msg = [[SDLListFiles alloc] init];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLDeleteInteractionChoiceSet *)buildDeleteInteractionChoiceSetWithID:(NSNumber *)interactionChoiceSetID correlationID:(NSNumber *)correlationID {
    SDLDeleteInteractionChoiceSet *msg = [[SDLDeleteInteractionChoiceSet alloc] init];
    msg.interactionChoiceSetID = interactionChoiceSetID;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLDeleteSubMenu *)buildDeleteSubMenuWithID:(NSNumber *)menuID correlationID:(NSNumber *)correlationID {
    SDLDeleteSubMenu *msg = [[SDLDeleteSubMenu alloc] init];
    msg.menuID = menuID;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLEndAudioPassThru *)buildEndAudioPassThruWithCorrelationID:(NSNumber *)correlationID {
    SDLEndAudioPassThru *msg = [[SDLEndAudioPassThru alloc] init];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLGetDTCs *)buildGetDTCsWithECUName:(NSNumber *)ecuName correlationID:(NSNumber *)correlationID {
    SDLGetDTCs *msg = [[SDLGetDTCs alloc] init];
    msg.ecuName = ecuName;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLGetVehicleData *)buildGetVehicleDataWithGPS:(NSNumber *)gps speed:(NSNumber *)speed rpm:(NSNumber *)rpm fuelLevel:(NSNumber *)fuelLevel fuelLevelState:(NSNumber *)fuelLevelState instantFuelConsumption:(NSNumber *)instantFuelConsumption externalTemperature:(NSNumber *)externalTemperature vin:(NSNumber *)vin prndl:(NSNumber *)prndl tirePressure:(NSNumber *)tirePressure odometer:(NSNumber *)odometer beltStatus:(NSNumber *)beltStatus bodyInformation:(NSNumber *)bodyInformation deviceStatus:(NSNumber *)deviceStatus driverBraking:(NSNumber *)driverBraking wiperStatus:(NSNumber *)wiperStatus headLampStatus:(NSNumber *)headLampStatus engineTorque:(NSNumber *)engineTorque accPedalPosition:(NSNumber *)accPedalPosition steeringWheelAngle:(NSNumber *)steeringWheelAngle correlationID:(NSNumber *)correlationID {
    SDLGetVehicleData *msg = [[SDLGetVehicleData alloc] init];
    msg.gps = gps;
    msg.speed = speed;
    msg.rpm = rpm;
    msg.fuelLevel = fuelLevel;
    msg.fuelLevel_State = fuelLevelState;
    msg.instantFuelConsumption = instantFuelConsumption;
    msg.externalTemperature = externalTemperature;
    msg.vin = vin;
    msg.prndl = prndl;
    msg.tirePressure = tirePressure;
    msg.odometer = odometer;
    msg.beltStatus = beltStatus;
    msg.bodyInformation = bodyInformation;
    msg.deviceStatus = deviceStatus;
    msg.driverBraking = driverBraking;
    msg.wiperStatus = wiperStatus;
    msg.headLampStatus = headLampStatus;
    msg.engineTorque = engineTorque;
    msg.accPedalPosition = accPedalPosition;
    msg.steeringWheelAngle = steeringWheelAngle;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLPerformAudioPassThru *)buildPerformAudioPassThruWithInitialPrompt:(NSString *)initialPrompt audioPassThruDisplayText1:(NSString *)audioPassThruDisplayText1 audioPassThruDisplayText2:(NSString *)audioPassThruDisplayText2 samplingRate:(SDLSamplingRate *)samplingRate maxDuration:(NSNumber *)maxDuration bitsPerSample:(SDLBitsPerSample *)bitsPerSample audioType:(SDLAudioType *)audioType muteAudio:(NSNumber *)muteAudio correlationID:(NSNumber *)correlationID {
    NSArray *initialChunks = [SDLTTSChunkFactory buildTTSChunksFromSimple:initialPrompt];

    SDLPerformAudioPassThru *msg = [[SDLPerformAudioPassThru alloc] init];
    msg.initialPrompt = [initialChunks mutableCopy];
    msg.audioPassThruDisplayText1 = audioPassThruDisplayText1;
    msg.audioPassThruDisplayText2 = audioPassThruDisplayText2;
    msg.samplingRate = samplingRate;
    msg.maxDuration = maxDuration;
    msg.bitsPerSample = bitsPerSample;
    msg.audioType = audioType;
    msg.muteAudio = muteAudio;
    msg.correlationID = correlationID;

    return msg;
}


//***** PerformInteraction *****
+ (SDLPerformInteraction *)buildPerformInteractionWithInitialChunks:(NSArray *)initialChunks initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray *)interactionChoiceSetIDList helpChunks:(NSArray *)helpChunks timeoutChunks:(NSArray *)timeoutChunks interactionMode:(SDLInteractionMode *)interactionMode timeout:(NSNumber *)timeout vrHelp:(NSArray *)vrHelp correlationID:(NSNumber *)correlationID {
    SDLPerformInteraction *msg = [[SDLPerformInteraction alloc] init];
    msg.initialPrompt = [initialChunks mutableCopy];
    msg.initialText = initialText;
    msg.interactionChoiceSetIDList = [interactionChoiceSetIDList mutableCopy];
    msg.helpPrompt = [helpChunks mutableCopy];
    msg.timeoutPrompt = [timeoutChunks mutableCopy];
    msg.interactionMode = interactionMode;
    msg.timeout = timeout;
    msg.vrHelp = [vrHelp mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

//***
+ (SDLPerformInteraction *)buildPerformInteractionWithInitialPrompt:(NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray *)interactionChoiceSetIDList helpPrompt:(NSString *)helpPrompt timeoutPrompt:(NSString *)timeoutPrompt interactionMode:(SDLInteractionMode *)interactionMode timeout:(NSNumber *)timeout vrHelp:(NSArray *)vrHelp correlationID:(NSNumber *)correlationID {
    NSArray *initialChunks = [SDLTTSChunkFactory buildTTSChunksFromSimple:initialPrompt];
    NSArray *helpChunks = [SDLTTSChunkFactory buildTTSChunksFromSimple:helpPrompt];
    NSArray *timeoutChunks = [SDLTTSChunkFactory buildTTSChunksFromSimple:timeoutPrompt];

    return [SDLRPCRequestFactory buildPerformInteractionWithInitialChunks:initialChunks initialText:initialText interactionChoiceSetIDList:interactionChoiceSetIDList helpChunks:helpChunks timeoutChunks:timeoutChunks interactionMode:interactionMode timeout:timeout vrHelp:vrHelp correlationID:correlationID];
}

+ (SDLPerformInteraction *)buildPerformInteractionWithInitialPrompt:(NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetID:(NSNumber *)interactionChoiceSetID vrHelp:(NSArray *)vrHelp correlationID:(NSNumber *)correlationID {
    NSArray *interactionChoiceSetIDList = [NSArray arrayWithObject:interactionChoiceSetID];
    NSArray *initialChunks = [SDLTTSChunkFactory buildTTSChunksFromSimple:initialPrompt];

    return [SDLRPCRequestFactory buildPerformInteractionWithInitialChunks:initialChunks initialText:initialText interactionChoiceSetIDList:interactionChoiceSetIDList helpChunks:nil timeoutChunks:nil interactionMode:SDLInteractionMode.BOTH timeout:nil vrHelp:vrHelp correlationID:correlationID];
}

+ (SDLPerformInteraction *)buildPerformInteractionWithInitialPrompt:(NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetIDList:(NSArray *)interactionChoiceSetIDList helpPrompt:(NSString *)helpPrompt timeoutPrompt:(NSString *)timeoutPrompt interactionMode:(SDLInteractionMode *)interactionMode timeout:(NSNumber *)timeout correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildPerformInteractionWithInitialPrompt:initialPrompt initialText:initialText interactionChoiceSetIDList:interactionChoiceSetIDList helpPrompt:helpPrompt timeoutPrompt:timeoutPrompt interactionMode:interactionMode timeout:timeout vrHelp:nil correlationID:(NSNumber *)correlationID];
}

+ (SDLPerformInteraction *)buildPerformInteractionWithInitialPrompt:(NSString *)initialPrompt initialText:(NSString *)initialText interactionChoiceSetID:(NSNumber *)interactionChoiceSetID correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildPerformInteractionWithInitialPrompt:initialPrompt initialText:initialText interactionChoiceSetID:interactionChoiceSetID vrHelp:nil correlationID:correlationID];
}
//*****

+ (SDLPutFile *)buildPutFileWithFileName:(NSString *)fileName fileType:(SDLFileType *)fileType persistentFile:(NSNumber *)persistentFile correlationId:(NSNumber *)correlationID {
    SDLPutFile *msg = [[SDLPutFile alloc] init];
    msg.syncFileName = fileName;

    msg.fileType = fileType;
    msg.persistentFile = persistentFile;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLPutFile *)buildPutFileWithFileName:(NSString *)syncFileName fileType:(SDLFileType *)fileType persisistentFile:(NSNumber *)persistentFile correlationID:(NSNumber *)correlationID {
    return [self buildPutFileWithFileName:syncFileName fileType:fileType persistentFile:persistentFile correlationId:correlationID];
}

+ (SDLReadDID *)buildReadDIDWithECUName:(NSNumber *)ecuName didLocation:(NSArray *)didLocation correlationID:(NSNumber *)correlationID {
    SDLReadDID *msg = [[SDLReadDID alloc] init];
    msg.ecuName = ecuName;
    msg.didLocation = [didLocation mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

//***** RegisterAppInterface *****
+ (SDLRegisterAppInterface *)buildRegisterAppInterfaceWithAppName:(NSString *)appName ttsName:(NSArray *)ttsName vrSynonyms:(NSArray *)vrSynonyms isMediaApp:(NSNumber *)isMediaApp languageDesired:(SDLLanguage *)languageDesired hmiDisplayLanguageDesired:(SDLLanguage *)hmiDisplayLanguageDesired appID:(NSString *)appID {
    SDLRegisterAppInterface *msg = [[SDLRegisterAppInterface alloc] init];
    SDLSyncMsgVersion *version = [[SDLSyncMsgVersion alloc] init];
    version.majorVersion = [NSNumber numberWithInt:1];
    version.minorVersion = [NSNumber numberWithInt:0];
    msg.syncMsgVersion = version;
    msg.appName = appName;
    msg.ttsName = [ttsName mutableCopy];
    msg.ngnMediaScreenAppName = appName;
    msg.vrSynonyms = [vrSynonyms mutableCopy];
    msg.isMediaApplication = isMediaApp;
    msg.languageDesired = languageDesired;
    msg.hmiDisplayLanguageDesired = hmiDisplayLanguageDesired;
    msg.appID = appID;
    msg.deviceInfo = [self sdl_buildDeviceInfo];
    msg.correlationID = [NSNumber numberWithInt:1];

    return msg;
}

+ (SDLDeviceInfo *)sdl_buildDeviceInfo {
    SDLDeviceInfo *deviceInfo = [[SDLDeviceInfo alloc] init];
    deviceInfo.hardware = [UIDevice currentDevice].model;
    deviceInfo.os = [UIDevice currentDevice].systemName;
    deviceInfo.osVersion = [UIDevice currentDevice].systemVersion;
    CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init];
    CTCarrier *carrier = netinfo.subscriberCellularProvider;
    NSString *carrierName = carrier.carrierName;
    deviceInfo.carrier = carrierName;

    return deviceInfo;
}

+ (SDLRegisterAppInterface *)buildRegisterAppInterfaceWithAppName:(NSString *)appName isMediaApp:(NSNumber *)isMediaApp languageDesired:(SDLLanguage *)languageDesired appID:(NSString *)appID {
    NSMutableArray *syns = [NSMutableArray arrayWithObject:appName];
    return [SDLRPCRequestFactory buildRegisterAppInterfaceWithAppName:appName ttsName:nil vrSynonyms:syns isMediaApp:isMediaApp languageDesired:languageDesired hmiDisplayLanguageDesired:languageDesired appID:appID];
}

+ (SDLRegisterAppInterface *)buildRegisterAppInterfaceWithAppName:(NSString *)appName languageDesired:(SDLLanguage *)languageDesired appID:(NSString *)appID {
    return [SDLRPCRequestFactory buildRegisterAppInterfaceWithAppName:appName isMediaApp:@NO languageDesired:languageDesired appID:appID];
}
//*****


+ (SDLResetGlobalProperties *)buildResetGlobalPropertiesWithProperties:(NSArray *)properties correlationID:(NSNumber *)correlationID {
    SDLResetGlobalProperties *msg = [[SDLResetGlobalProperties alloc] init];
    msg.properties = [properties mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLScrollableMessage *)buildScrollableMessage:(NSString *)scrollableMessageBody timeout:(NSNumber *)timeout softButtons:(NSArray *)softButtons correlationID:(NSNumber *)correlationID {
    SDLScrollableMessage *msg = [[SDLScrollableMessage alloc] init];
    msg.scrollableMessageBody = scrollableMessageBody;
    msg.timeout = timeout;
    msg.softButtons = [softButtons mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLSendLocation *)buildSendLocationWithLongitude:(NSNumber *)longitude latitude:(NSNumber *)latitude locationName:(NSString *)locationName locationDescription:(NSString *)locationDescription address:(NSArray *)address phoneNumber:(NSString *)phoneNumber image:(SDLImage *)image {
    SDLSendLocation *msg = [[SDLSendLocation alloc] init];
    msg.longitudeDegrees = longitude;
    msg.latitudeDegrees = latitude;
    msg.locationName = locationName;
    msg.locationDescription = locationDescription;
    msg.addressLines = address;
    msg.phoneNumber = phoneNumber;
    msg.locationImage = image;

    return msg;
}

+ (SDLSetAppIcon *)buildSetAppIconWithFileName:(NSString *)syncFileName correlationID:(NSNumber *)correlationID {
    SDLSetAppIcon *msg = [[SDLSetAppIcon alloc] init];
    msg.syncFileName = syncFileName;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLSetDisplayLayout *)buildSetDisplayLayout:(NSString *)displayLayout correlationID:(NSNumber *)correlationID {
    SDLSetDisplayLayout *msg = [[SDLSetDisplayLayout alloc] init];
    msg.displayLayout = displayLayout;
    msg.correlationID = correlationID;

    return msg;
}


//***** SetGlobalProperties *****
+ (SDLSetGlobalProperties *)buildSetGlobalPropertiesWithHelpText:(NSString *)helpText timeoutText:(NSString *)timeoutText vrHelpTitle:(NSString *)vrHelpTitle vrHelp:(NSArray *)vrHelp correlationID:(NSNumber *)correlationID {
    SDLSetGlobalProperties *msg = [[SDLSetGlobalProperties alloc] init];
    msg.helpPrompt = [SDLTTSChunkFactory buildTTSChunksFromSimple:helpText];
    msg.timeoutPrompt = [SDLTTSChunkFactory buildTTSChunksFromSimple:timeoutText];
    msg.vrHelpTitle = vrHelpTitle;
    msg.vrHelp = [vrHelp mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLSetGlobalProperties *)buildSetGlobalPropertiesWithHelpText:(NSString *)helpText timeoutText:(NSString *)timeoutText correlationID:(NSNumber *)correlationID {
    SDLSetGlobalProperties *msg = [[SDLSetGlobalProperties alloc] init];
    msg.helpPrompt = [SDLTTSChunkFactory buildTTSChunksFromSimple:helpText];
    msg.timeoutPrompt = [SDLTTSChunkFactory buildTTSChunksFromSimple:timeoutText];
    msg.correlationID = correlationID;

    return msg;
}
//*****


//***** SetMediaClockTimer *****
+ (SDLSetMediaClockTimer *)buildSetMediaClockTimerWithHours:(NSNumber *)hours minutes:(NSNumber *)minutes seconds:(NSNumber *)seconds updateMode:(SDLUpdateMode *)updateMode correlationID:(NSNumber *)correlationID {
    SDLSetMediaClockTimer *msg = [[SDLSetMediaClockTimer alloc] init];
    SDLStartTime *startTime = [[SDLStartTime alloc] init];
    startTime.hours = hours;
    startTime.minutes = minutes;
    startTime.seconds = seconds;
    msg.startTime = startTime;
    msg.updateMode = updateMode;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLSetMediaClockTimer *)buildSetMediaClockTimerWithUpdateMode:(SDLUpdateMode *)updateMode correlationID:(NSNumber *)correlationID {
    SDLSetMediaClockTimer *msg = [[SDLSetMediaClockTimer alloc] init];
    msg.updateMode = updateMode;
    msg.correlationID = correlationID;

    return msg;
}
//*****


//***** Show *****
+ (SDLShow *)buildShowWithMainField1:(NSString *)mainField1 mainField2:(NSString *)mainField2 mainField3:(NSString *)mainField3 mainField4:(NSString *)mainField4 statusBar:(NSString *)statusBar mediaClock:(NSString *)mediaClock mediaTrack:(NSString *)mediaTrack alignment:(SDLTextAlignment *)textAlignment graphic:(SDLImage *)graphic softButtons:(NSArray *)softButtons customPresets:(NSArray *)customPresets correlationID:(NSNumber *)correlationID {
    SDLShow *msg = [[SDLShow alloc] init];
    msg.correlationID = correlationID;
    msg.mainField1 = mainField1;
    msg.mainField2 = mainField2;
    msg.mainField3 = mainField3;
    msg.mainField4 = mainField4;
    msg.statusBar = statusBar;
    msg.mediaClock = mediaClock;
    msg.mediaTrack = mediaTrack;
    msg.alignment = textAlignment;
    msg.graphic = graphic;
    msg.softButtons = [softButtons mutableCopy];
    msg.customPresets = [customPresets mutableCopy];

    return msg;
}

+ (SDLShow *)buildShowWithMainField1:(NSString *)mainField1 mainField2:(NSString *)mainField2 statusBar:(NSString *)statusBar mediaClock:(NSString *)mediaClock mediaTrack:(NSString *)mediaTrack alignment:(SDLTextAlignment *)textAlignment correlationID:(NSNumber *)correlationID {
    SDLShow *msg = [[SDLShow alloc] init];
    msg.correlationID = correlationID;
    msg.mainField1 = mainField1;
    msg.mainField2 = mainField2;
    msg.statusBar = statusBar;
    msg.mediaClock = mediaClock;
    msg.mediaTrack = mediaTrack;
    msg.alignment = textAlignment;

    return msg;
}

+ (SDLShow *)buildShowWithMainField1:(NSString *)mainField1 mainField2:(NSString *)mainField2 alignment:(SDLTextAlignment *)alignment correlationID:(NSNumber *)correlationID {
    return [SDLRPCRequestFactory buildShowWithMainField1:mainField1 mainField2:mainField2 statusBar:nil mediaClock:nil mediaTrack:nil alignment:alignment correlationID:correlationID];
}

+ (SDLShowConstantTBT *)buildShowConstantTBTWithString:(NSString *)navigationText1 navigationText2:(NSString *)navigationText2 eta:(NSString *)eta timeToDestination:(NSString *)timeToDestination totalDistance:(NSString *)totalDistance turnIcon:(SDLImage *)turnIcon nextTurnIcon:(SDLImage *)nextTurnIcon distanceToManeuver:(NSNumber *)distanceToManeuver distanceToManeuverScale:(NSNumber *)distanceToManeuverScale maneuverComplete:(NSNumber *)maneuverComplete softButtons:(NSMutableArray *)softButtons correlationID:(NSNumber *)correlationID {
    SDLShowConstantTBT *msg = [[SDLShowConstantTBT alloc] init];
    msg.navigationText1 = navigationText1;
    msg.navigationText2 = navigationText2;
    msg.eta = eta;
    msg.timeToDestination = timeToDestination;
    msg.totalDistance = totalDistance;
    msg.turnIcon = turnIcon;
    msg.nextTurnIcon = nextTurnIcon;
    msg.distanceToManeuver = distanceToManeuver;
    msg.distanceToManeuverScale = distanceToManeuverScale;
    msg.maneuverComplete = maneuverComplete;
    msg.softButtons = [softButtons mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}
//*****


//***** Slider *****
+ (SDLSlider *)buildSliderDynamicFooterWithNumTicks:(NSNumber *)numTicks position:(NSNumber *)position sliderHeader:(NSString *)sliderHeader sliderFooter:(NSArray *)sliderFooter timeout:(NSNumber *)timeout correlationID:(NSNumber *)correlationID {
    SDLSlider *msg = [[SDLSlider alloc] init];
    msg.correlationID = correlationID;
    msg.numTicks = numTicks;
    msg.position = position;
    msg.sliderHeader = sliderHeader;
    msg.sliderFooter = [sliderFooter mutableCopy];
    msg.timeout = timeout;

    return msg;
}

+ (SDLSlider *)buildSliderStaticFooterWithNumTicks:(NSNumber *)numTicks position:(NSNumber *)position sliderHeader:(NSString *)sliderHeader sliderFooter:(NSString *)sliderFooter timeout:(NSNumber *)timeout correlationID:(NSNumber *)correlationID {
    NSArray *sliderFooters = [NSArray arrayWithObject:sliderFooter];

    // Populates array with the same footer value for each position
    for (UInt32 i = 1; i < numTicks.unsignedIntegerValue; i++) {
        sliderFooters = [sliderFooters arrayByAddingObject:sliderFooter];
    }

    return [SDLRPCRequestFactory buildSliderDynamicFooterWithNumTicks:numTicks position:position sliderHeader:sliderHeader sliderFooter:sliderFooters timeout:timeout correlationID:correlationID];
}
//*****

+ (SDLSoftButton *)buildSoftButtonWithType:(SDLSoftButtonType *)type text:(NSString *)text image:(SDLImage *)image highlighted:(BOOL)highlighted buttonID:(UInt16)buttonID systemAction:(SDLSystemAction *)systemAction handler:(SDLRPCNotificationHandler)handler {
    SDLSoftButton *button = [[SDLSoftButton alloc] initWithHandler:handler];
    button.type = type;
    button.text = text;
    button.image = image;
    button.isHighlighted = @(highlighted);
    button.softButtonID = @(buttonID);
    button.systemAction = systemAction;
    
    return button;
}


//***** Speak *****
+ (SDLSpeak *)buildSpeakWithTTSChunks:(NSArray *)ttsChunks correlationID:(NSNumber *)correlationID {
    SDLSpeak *msg = [[SDLSpeak alloc] init];
    msg.correlationID = correlationID;
    msg.ttsChunks = [ttsChunks mutableCopy];

    return msg;
}

//***
+ (SDLSpeak *)buildSpeakWithTTS:(NSString *)ttsText correlationID:(NSNumber *)correlationID {
    SDLTTSChunk *simpleChunk = [[SDLTTSChunk alloc] init];
    simpleChunk.text = ttsText;
    simpleChunk.type = SDLSpeechCapabilities.TEXT;
    NSArray *ttsChunks = [NSMutableArray arrayWithObject:simpleChunk];

    return [SDLRPCRequestFactory buildSpeakWithTTSChunks:ttsChunks correlationID:correlationID];
}
//*****

+ (SDLSubscribeButton *)buildSubscribeButtonWithName:(SDLButtonName *)buttonName correlationID:(NSNumber *)correlationID {
    SDLSubscribeButton *msg = [[SDLSubscribeButton alloc] init];
    msg.buttonName = buttonName;
    msg.correlationID = correlationID;
    
    return msg;
}

+ (SDLSubscribeButton *)buildSubscribeButtonWithName:(SDLButtonName *)buttonName handler:(SDLRPCNotificationHandler)handler {
    SDLSubscribeButton *msg = [[SDLSubscribeButton alloc] initWithHandler:handler];
    msg.buttonName = buttonName;

    return msg;
}

+ (SDLSubscribeVehicleData *)buildSubscribeVehicleDataWithGPS:(NSNumber *)gps speed:(NSNumber *)speed rpm:(NSNumber *)rpm fuelLevel:(NSNumber *)fuelLevel fuelLevelState:(NSNumber *)fuelLevelState instantFuelConsumption:(NSNumber *)instantFuelConsumption externalTemperature:(NSNumber *)externalTemperature prndl:(NSNumber *)prndl tirePressure:(NSNumber *)tirePressure odometer:(NSNumber *)odometer beltStatus:(NSNumber *)beltStatus bodyInformation:(NSNumber *)bodyInformation deviceStatus:(NSNumber *)deviceStatus driverBraking:(NSNumber *)driverBraking wiperStatus:(NSNumber *)wiperStatus headLampStatus:(NSNumber *)headLampStatus engineTorque:(NSNumber *)engineTorque accPedalPosition:(NSNumber *)accPedalPosition steeringWheelAngle:(NSNumber *)steeringWheelAngle correlationID:(NSNumber *)correlationID {
    SDLSubscribeVehicleData *msg = [[SDLSubscribeVehicleData alloc] init];
    msg.gps = gps;
    msg.speed = speed;
    msg.rpm = rpm;
    msg.fuelLevel = fuelLevel;
    msg.fuelLevel_State = fuelLevelState;
    msg.instantFuelConsumption = instantFuelConsumption;
    msg.externalTemperature = externalTemperature;
    msg.prndl = prndl;
    msg.tirePressure = tirePressure;
    msg.odometer = odometer;
    msg.beltStatus = beltStatus;
    msg.bodyInformation = bodyInformation;
    msg.deviceStatus = deviceStatus;
    msg.driverBraking = driverBraking;
    msg.wiperStatus = wiperStatus;
    msg.headLampStatus = headLampStatus;
    msg.engineTorque = engineTorque;
    msg.accPedalPosition = accPedalPosition;
    msg.steeringWheelAngle = steeringWheelAngle;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLUnregisterAppInterface *)buildUnregisterAppInterfaceWithCorrelationID:(NSNumber *)correlationID {
    SDLUnregisterAppInterface *msg = [[SDLUnregisterAppInterface alloc] init];
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLUnsubscribeButton *)buildUnsubscribeButtonWithName:(SDLButtonName *)buttonName correlationID:(NSNumber *)correlationID {
    SDLUnsubscribeButton *msg = [[SDLUnsubscribeButton alloc] init];
    msg.buttonName = buttonName;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLUnsubscribeVehicleData *)buildUnsubscribeVehicleDataWithGPS:(NSNumber *)gps speed:(NSNumber *)speed rpm:(NSNumber *)rpm fuelLevel:(NSNumber *)fuelLevel fuelLevelState:(NSNumber *)fuelLevelState instantFuelConsumption:(NSNumber *)instantFuelConsumption externalTemperature:(NSNumber *)externalTemperature prndl:(NSNumber *)prndl tirePressure:(NSNumber *)tirePressure odometer:(NSNumber *)odometer beltStatus:(NSNumber *)beltStatus bodyInformation:(NSNumber *)bodyInformation deviceStatus:(NSNumber *)deviceStatus driverBraking:(NSNumber *)driverBraking wiperStatus:(NSNumber *)wiperStatus headLampStatus:(NSNumber *)headLampStatus engineTorque:(NSNumber *)engineTorque accPedalPosition:(NSNumber *)accPedalPosition steeringWheelAngle:(NSNumber *)steeringWheelAngle correlationID:(NSNumber *)correlationID {
    SDLUnsubscribeVehicleData *msg = [[SDLUnsubscribeVehicleData alloc] init];
    msg.gps = gps;
    msg.speed = speed;
    msg.rpm = rpm;
    msg.fuelLevel = fuelLevel;
    msg.fuelLevel_State = fuelLevelState;
    msg.instantFuelConsumption = instantFuelConsumption;
    msg.externalTemperature = externalTemperature;
    msg.prndl = prndl;
    msg.tirePressure = tirePressure;
    msg.odometer = odometer;
    msg.beltStatus = beltStatus;
    msg.bodyInformation = bodyInformation;
    msg.deviceStatus = deviceStatus;
    msg.driverBraking = driverBraking;
    msg.wiperStatus = wiperStatus;
    msg.headLampStatus = headLampStatus;
    msg.engineTorque = engineTorque;
    msg.accPedalPosition = accPedalPosition;
    msg.steeringWheelAngle = steeringWheelAngle;
    msg.correlationID = correlationID;

    return msg;
}

+ (SDLUpdateTurnList *)buildUpdateTurnListWithTurnList:(NSMutableArray *)turnList softButtons:(NSMutableArray *)softButtons correlationID:(NSNumber *)correlationID {
    SDLUpdateTurnList *msg = [[SDLUpdateTurnList alloc] init];
    msg.turnList = [turnList mutableCopy];
    msg.softButtons = [softButtons mutableCopy];
    msg.correlationID = correlationID;

    return msg;
}

@end