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
|
//
// ProxyManager.m
// SmartDeviceLink-iOS
#import "AppConstants.h"
#import "AlertManager.h"
#import "ButtonManager.h"
#import "MenuManager.h"
#import "PerformInteractionManager.h"
#import "Preferences.h"
#import "ProxyManager.h"
#import "RPCPermissionsManager.h"
#import "SmartDeviceLink.h"
#import "VehicleDataManager.h"
NS_ASSUME_NONNULL_BEGIN
@interface ProxyManager () <SDLManagerDelegate>
// Describes the first time the HMI state goes non-none and full.
@property (assign, nonatomic) SDLHMILevel firstHMILevel;
@property (strong, nonatomic) VehicleDataManager *vehicleDataManager;
@property (strong, nonatomic) PerformInteractionManager *performManager;
@property (strong, nonatomic) ButtonManager *buttonManager;
@property (nonatomic, copy, nullable) RefreshUIHandler refreshUIHandler;
@end
@implementation ProxyManager
#pragma mark - Initialization
+ (instancetype)sharedManager {
static ProxyManager *sharedManager = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedManager = [[ProxyManager alloc] init];
});
return sharedManager;
}
- (instancetype)init {
self = [super init];
if (!self) {
return nil;
}
_state = ProxyStateStopped;
_firstHMILevel = SDLHMILevelNone;
return self;
}
- (void)startManager {
__weak typeof (self) weakSelf = self;
[self.sdlManager startWithReadyHandler:^(BOOL success, NSError * _Nullable error) {
if (!success) {
SDLLogE(@"SDL errored starting up: %@", error);
[weakSelf sdlex_updateProxyState:ProxyStateStopped];
return;
}
self.vehicleDataManager = [[VehicleDataManager alloc] initWithManager:self.sdlManager refreshUIHandler:self.refreshUIHandler];
self.performManager = [[PerformInteractionManager alloc] initWithManager:self.sdlManager];
self.buttonManager = [[ButtonManager alloc] initWithManager:self.sdlManager refreshUIHandler:self.refreshUIHandler];
[weakSelf sdlex_updateProxyState:ProxyStateConnected];
[RPCPermissionsManager setupPermissionsCallbacksWithManager:weakSelf.sdlManager];
[weakSelf sdlex_showInitialData];
SDLLogD(@"SDL file manager storage: %lu mb", self.sdlManager.fileManager.bytesAvailable / 1024 / 1024);
}];
}
- (void)reset {
if (self.sdlManager == nil) {
[self sdlex_updateProxyState:ProxyStateStopped];
return;
}
[self.sdlManager stop];
}
- (void)sdlex_updateProxyState:(ProxyState)newState {
if (self.state != newState) {
[self willChangeValueForKey:@"state"];
_state = newState;
[self didChangeValueForKey:@"state"];
}
}
#pragma mark - SDL Configuration
- (void)startWithProxyTransportType:(ProxyTransportType)proxyTransportType {
[self sdlex_updateProxyState:ProxyStateSearchingForConnection];
// Check for previous instance of sdlManager
if (self.sdlManager) { return; }
SDLLifecycleConfiguration *lifecycleConfig = proxyTransportType == ProxyTransportTypeIAP ? [self.class sdlex_iapLifecycleConfiguration] : [self.class sdlex_tcpLifecycleConfiguration];
[self sdlex_setupConfigurationWithLifecycleConfiguration:lifecycleConfig];
}
+ (SDLLifecycleConfiguration *)sdlex_iapLifecycleConfiguration {
return [self.class sdlex_setLifecycleConfigurationPropertiesOnConfiguration:[SDLLifecycleConfiguration defaultConfigurationWithAppName:ExampleAppName fullAppId:ExampleFullAppId]];
}
+ (SDLLifecycleConfiguration *)sdlex_tcpLifecycleConfiguration {
return [self.class sdlex_setLifecycleConfigurationPropertiesOnConfiguration:[SDLLifecycleConfiguration debugConfigurationWithAppName:ExampleAppName fullAppId:ExampleFullAppId ipAddress:[Preferences sharedPreferences].ipAddress port:[Preferences sharedPreferences].port]];
}
- (void)sdlex_setupConfigurationWithLifecycleConfiguration:(SDLLifecycleConfiguration *)lifecycleConfiguration {
SDLConfiguration *config = [SDLConfiguration configurationWithLifecycle:lifecycleConfiguration lockScreen:[SDLLockScreenConfiguration enabledConfigurationWithAppIcon:[UIImage imageNamed:ExampleAppLogoName] backgroundColor:nil] logging:[self.class sdlex_logConfiguration] fileManager:[SDLFileManagerConfiguration defaultConfiguration]];
self.sdlManager = [[SDLManager alloc] initWithConfiguration:config delegate:self];
[self startManager];
}
+ (SDLLifecycleConfiguration *)sdlex_setLifecycleConfigurationPropertiesOnConfiguration:(SDLLifecycleConfiguration *)config {
UIImage *appLogo = [[UIImage imageNamed:ExampleAppLogoName] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
SDLArtwork *appIconArt = [SDLArtwork persistentArtworkWithImage:appLogo asImageFormat:SDLArtworkImageFormatPNG];
config.shortAppName = ExampleAppNameShort;
config.appIcon = appIconArt;
config.voiceRecognitionCommandNames = @[ExampleAppNameTTS];
config.ttsName = [SDLTTSChunk textChunksFromString:ExampleAppName];
config.language = SDLLanguageEnUs;
config.languagesSupported = @[SDLLanguageEnUs, SDLLanguageFrCa, SDLLanguageEsMx];
config.appType = SDLAppHMITypeMedia;
SDLRGBColor *green = [[SDLRGBColor alloc] initWithRed:126 green:188 blue:121];
SDLRGBColor *white = [[SDLRGBColor alloc] initWithRed:249 green:251 blue:254];
SDLRGBColor *darkGrey = [[SDLRGBColor alloc] initWithRed:57 green:78 blue:96];
SDLRGBColor *grey = [[SDLRGBColor alloc] initWithRed:186 green:198 blue:210];
config.dayColorScheme = [[SDLTemplateColorScheme alloc] initWithPrimaryRGBColor:green secondaryRGBColor:grey backgroundRGBColor:white];
config.nightColorScheme = [[SDLTemplateColorScheme alloc] initWithPrimaryRGBColor:green secondaryRGBColor:grey backgroundRGBColor:darkGrey];
return config;
}
+ (SDLLogConfiguration *)sdlex_logConfiguration {
SDLLogConfiguration *logConfig = [SDLLogConfiguration debugConfiguration];
SDLLogFileModule *sdlExampleModule = [SDLLogFileModule moduleWithName:@"SDL Obj-C Example App" files:[NSSet setWithArray:@[@"ProxyManager", @"AlertManager", @"AudioManager", @"ButtonManager", @"MenuManager", @"PerformInteractionManager", @"RPCPermissionsManager", @"VehicleDataManager"]]];
logConfig.modules = [logConfig.modules setByAddingObject:sdlExampleModule];
logConfig.targets = [logConfig.targets setByAddingObject:[SDLLogTargetFile logger]];
logConfig.globalLogLevel = SDLLogLevelDebug;
return logConfig;
}
#pragma mark - Screen UI Helpers
- (void)sdlex_createMenus {
self.sdlManager.screenManager.menu = [MenuManager allMenuItemsWithManager:self.sdlManager performManager:self.performManager];
self.sdlManager.screenManager.voiceCommands = [MenuManager allVoiceMenuItemsWithManager:self.sdlManager];
}
- (void)sdlex_showInitialData {
if (![self.sdlManager.hmiLevel isEqualToEnum:SDLHMILevelFull]) { return; }
SDLSetDisplayLayout *setDisplayLayout = [[SDLSetDisplayLayout alloc] initWithPredefinedLayout:SDLPredefinedLayoutNonMedia];
[self.sdlManager sendRequest:setDisplayLayout];
[self sdlex_updateScreen];
self.sdlManager.screenManager.softButtonObjects = [self.buttonManager allScreenSoftButtons];
}
- (nullable RefreshUIHandler)refreshUIHandler {
if(!_refreshUIHandler) {
__weak typeof(self) weakSelf = self;
weakSelf.refreshUIHandler = ^{
[weakSelf sdlex_updateScreen];
};
}
return _refreshUIHandler;
}
- (void)sdlex_updateScreen {
if (![self.sdlManager.hmiLevel isEqualToEnum:SDLHMILevelFull]) { return; }
SDLScreenManager *screenManager = self.sdlManager.screenManager;
BOOL isTextEnabled = self.buttonManager.isTextEnabled;
BOOL areImagesVisible = self.buttonManager.areImagesEnabled;
[screenManager beginUpdates];
screenManager.textAlignment = SDLTextAlignmentLeft;
screenManager.textField1 = isTextEnabled ? SmartDeviceLinkText : nil;
screenManager.textField2 = isTextEnabled ? [NSString stringWithFormat:@"Obj-C %@", ExampleAppText] : nil;
screenManager.textField3 = isTextEnabled ? self.vehicleDataManager.vehicleOdometerData : nil;
if (self.sdlManager.systemCapabilityManager.displayCapabilities.graphicSupported) {
if ([self sdlex_imageFieldSupported:SDLImageFieldNameGraphic]) {
screenManager.primaryGraphic = areImagesVisible ? [SDLArtwork persistentArtworkWithImage:[[UIImage imageNamed:ExampleAppLogoName] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] asImageFormat:SDLArtworkImageFormatPNG] : nil;
}
if ([self sdlex_imageFieldSupported:SDLImageFieldNameSecondaryGraphic]) {
screenManager.secondaryGraphic = areImagesVisible ? [SDLArtwork persistentArtworkWithImage:[UIImage imageNamed:CarBWIconImageName] asImageFormat:SDLArtworkImageFormatPNG] : nil;
}
}
[screenManager endUpdatesWithCompletionHandler:^(NSError * _Nullable error) {
SDLLogD(@"Updated text and graphics, error? %@", error);
}];
}
/**
* Checks if SDL Core's HMI current template supports the template image field (i.e. primary graphic, secondary graphic, etc.)
*
* @param imageFieldName The name for the image field
* @return True if the image field is supported, false if not
*/
- (BOOL)sdlex_imageFieldSupported:(SDLImageFieldName)imageFieldName {
for (SDLImageField *imageField in self.sdlManager.systemCapabilityManager.displayCapabilities.imageFields) {
if ([imageField.name isEqualToString:imageFieldName]) {
return YES;
}
}
return NO;
}
#pragma mark - SDLManagerDelegate
- (void)managerDidDisconnect {
[self sdlex_updateProxyState:ProxyStateStopped];
self.firstHMILevel = SDLHMILevelNone;
// If desired, automatically start searching for a new connection to Core
if (ExampleAppShouldRestartSDLManagerOnDisconnect) {
[self startManager];
}
}
- (void)hmiLevel:(SDLHMILevel)oldLevel didChangeToLevel:(SDLHMILevel)newLevel {
if (![newLevel isEqualToEnum:SDLHMILevelNone] && ([self.firstHMILevel isEqualToEnum:SDLHMILevelNone])) {
// This is our first time in a non-NONE state
self.firstHMILevel = newLevel;
// Send AddCommands
[self sdlex_createMenus];
[self.vehicleDataManager subscribeToVehicleOdometer];
}
if ([newLevel isEqualToEnum:SDLHMILevelFull]) {
// The SDL app is in the foreground
SDLLogD(@"The HMI level is full");
} else if ([newLevel isEqualToEnum:SDLHMILevelLimited]) {
// An active NAV or MEDIA SDL app is in the background
SDLLogD(@"The HMI level is limited");
} else if ([newLevel isEqualToEnum:SDLHMILevelBackground]) {
// The SDL app is not in the foreground
SDLLogD(@"The HMI level is background");
} else if ([newLevel isEqualToEnum:SDLHMILevelNone]) {
// The SDL app is not yet running
SDLLogD(@"The HMI level is none");
}
if ([newLevel isEqualToEnum:SDLHMILevelFull]) {
// We're always going to try to show the initial state. because if we've already shown it, it won't be shown, and we need to guard against some possible weird states
[self sdlex_showInitialData];
}
}
- (void)systemContext:(nullable SDLSystemContext)oldContext didChangeToContext:(SDLSystemContext)newContext {
if ([newContext isEqualToEnum:SDLSystemContextAlert]) {
SDLLogD(@"The System Context is Alert");
} else if ([newContext isEqualToEnum:SDLSystemContextHMIObscured]) {
SDLLogD(@"The System Context is HMI Obscured");
} else if ([newContext isEqualToEnum:SDLSystemContextMain]) {
SDLLogD(@"The System Context is Main");
} else if ([newContext isEqualToEnum:SDLSystemContextMenu]) {
SDLLogD(@"The System Context is Menu");
} else if ([newContext isEqualToEnum:SDLSystemContextVoiceRecognitionSession]) {
SDLLogD(@"The System Context is Voice Recognition Session");
}
}
- (void)audioStreamingState:(nullable SDLAudioStreamingState)oldState didChangeToState:(SDLAudioStreamingState)newState {
if ([newState isEqualToEnum:SDLAudioStreamingStateAudible]) {
// The SDL app's audio can be heard
SDLLogD(@"The Audio Streaming State is Audible");
} else if ([newState isEqualToEnum:SDLAudioStreamingStateNotAudible]) {
// The SDL app's audio cannot be heard
SDLLogD(@"The Audio Streaming State is Not Audible");
} else if ([newState isEqualToEnum:SDLAudioStreamingStateAttenuated]) {
// The SDL app's audio volume has been lowered to let the system speak over the audio. This usually happens with voice recognition commands.
SDLLogD(@"The Audio Streaming State is Not Attenuated");
}
}
- (nullable SDLLifecycleConfigurationUpdate *)managerShouldUpdateLifecycleToLanguage:(SDLLanguage)language {
SDLLifecycleConfigurationUpdate *update = [[SDLLifecycleConfigurationUpdate alloc] init];
if ([language isEqualToEnum:SDLLanguageEnUs]) {
update.appName = ExampleAppName;
} else if ([language isEqualToString:SDLLanguageEsMx]) {
update.appName = ExampleAppNameSpanish;
} else if ([language isEqualToString:SDLLanguageFrCa]) {
update.appName = ExampleAppNameFrench;
} else {
return nil;
}
update.ttsName = [SDLTTSChunk textChunksFromString:update.appName];
return update;
}
@end
NS_ASSUME_NONNULL_END
|