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
|
//
// SDLVoiceCommandManager.m
// SmartDeviceLink
//
// Created by Joel Fischer on 4/23/18.
// Copyright © 2018 smartdevicelink. All rights reserved.
//
#import "SDLVoiceCommandManager.h"
#import "SDLAddCommand.h"
#import "SDLConnectionManagerType.h"
#import "SDLDeleteCommand.h"
#import "SDLError.h"
#import "SDLHMILevel.h"
#import "SDLLogMacros.h"
#import "SDLNotificationConstants.h"
#import "SDLOnCommand.h"
#import "SDLOnHMIStatus.h"
#import "SDLPredefinedWindows.h"
#import "SDLRPCNotificationNotification.h"
#import "SDLRPCRequest.h"
#import "SDLVoiceCommand.h"
NS_ASSUME_NONNULL_BEGIN
@interface SDLVoiceCommand()
@property (assign, nonatomic) UInt32 commandId;
@end
@interface SDLVoiceCommandManager()
@property (weak, nonatomic) id<SDLConnectionManagerType> connectionManager;
@property (assign, nonatomic) BOOL waitingOnHMIUpdate;
@property (copy, nonatomic, nullable) SDLHMILevel currentHMILevel;
@property (strong, nonatomic, nullable) NSArray<SDLRPCRequest *> *inProgressUpdate;
@property (assign, nonatomic) BOOL hasQueuedUpdate;
@property (assign, nonatomic) UInt32 lastVoiceCommandId;
@property (copy, nonatomic) NSArray<SDLVoiceCommand *> *oldVoiceCommands;
@end
UInt32 const VoiceCommandIdMin = 1900000000;
@implementation SDLVoiceCommandManager
- (instancetype)init {
self = [super init];
if (!self) { return nil; }
_lastVoiceCommandId = VoiceCommandIdMin;
_voiceCommands = @[];
_oldVoiceCommands = @[];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sdl_hmiStatusNotification:) name:SDLDidChangeHMIStatusNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sdl_commandNotification:) name:SDLDidReceiveCommandNotification object:nil];
return self;
}
- (instancetype)initWithConnectionManager:(id<SDLConnectionManagerType>)connectionManager {
self = [self init];
if (!self) { return nil; }
_connectionManager = connectionManager;
return self;
}
- (void)stop {
_lastVoiceCommandId = VoiceCommandIdMin;
_voiceCommands = @[];
_oldVoiceCommands = @[];
_waitingOnHMIUpdate = NO;
_currentHMILevel = nil;
_inProgressUpdate = nil;
_hasQueuedUpdate = NO;
}
#pragma mark - Setters
- (void)setVoiceCommands:(NSArray<SDLVoiceCommand *> *)voiceCommands {
if (self.currentHMILevel == nil || [self.currentHMILevel isEqualToEnum:SDLHMILevelNone]) {
self.waitingOnHMIUpdate = YES;
return;
}
self.waitingOnHMIUpdate = NO;
// Set the ids
self.lastVoiceCommandId = VoiceCommandIdMin;
[self sdl_updateIdsOnVoiceCommands:voiceCommands];
_oldVoiceCommands = _voiceCommands;
_voiceCommands = voiceCommands;
[self sdl_updateWithCompletionHandler:nil];
}
#pragma mark - Updating System
- (void)sdl_updateWithCompletionHandler:(nullable SDLMenuUpdateCompletionHandler)completionHandler {
if (self.currentHMILevel == nil || [self.currentHMILevel isEqualToEnum:SDLHMILevelNone]) {
self.waitingOnHMIUpdate = YES;
return;
}
if (self.inProgressUpdate != nil) {
// There's an in progress update, we need to put this on hold
self.hasQueuedUpdate = YES;
return;
}
__weak typeof(self) weakself = self;
[self sdl_sendDeleteCurrentVoiceCommands:^(NSError * _Nullable error) {
[weakself sdl_sendCurrentVoiceCommands:^(NSError * _Nullable error) {
weakself.inProgressUpdate = nil;
if (completionHandler != nil) {
completionHandler(error);
}
if (weakself.hasQueuedUpdate) {
[weakself sdl_updateWithCompletionHandler:nil];
weakself.hasQueuedUpdate = NO;
}
}];
}];
}
#pragma mark Delete Old Menu Items
- (void)sdl_sendDeleteCurrentVoiceCommands:(SDLMenuUpdateCompletionHandler)completionHandler {
if (self.oldVoiceCommands.count == 0) {
completionHandler(nil);
return;
}
NSArray<SDLRPCRequest *> *deleteVoiceCommands = [self sdl_deleteCommandsForVoiceCommands:self.oldVoiceCommands];
self.oldVoiceCommands = @[];
[self.connectionManager sendRequests:deleteVoiceCommands progressHandler:nil completionHandler:^(BOOL success) {
if (!success) {
SDLLogE(@"Error deleting old voice commands");
} else {
SDLLogD(@"Finished deleting old voice commands");
}
completionHandler(nil);
}];
}
#pragma mark Send New Menu Items
- (void)sdl_sendCurrentVoiceCommands:(SDLMenuUpdateCompletionHandler)completionHandler {
if (self.voiceCommands.count == 0) {
SDLLogD(@"No voice commands to send");
completionHandler(nil);
return;
}
self.inProgressUpdate = [self sdl_addCommandsForVoiceCommands:self.voiceCommands];
__block NSMutableDictionary<SDLRPCRequest *, NSError *> *errors = [NSMutableDictionary dictionary];
__weak typeof(self) weakSelf = self;
[self.connectionManager sendRequests:self.inProgressUpdate progressHandler:^(__kindof SDLRPCRequest * _Nonnull request, __kindof SDLRPCResponse * _Nullable response, NSError * _Nullable error, float percentComplete) {
if (error != nil) {
errors[request] = error;
}
} completionHandler:^(BOOL success) {
if (!success) {
SDLLogE(@"Failed to send main menu commands: %@", errors);
completionHandler([NSError sdl_menuManager_failedToUpdateWithDictionary:errors]);
return;
}
SDLLogD(@"Finished updating voice commands");
weakSelf.oldVoiceCommands = weakSelf.voiceCommands;
completionHandler(nil);
}];
}
#pragma mark - Helpers
#pragma mark IDs
- (void)sdl_updateIdsOnVoiceCommands:(NSArray<SDLVoiceCommand *> *)voiceCommands {
for (SDLVoiceCommand *voiceCommand in voiceCommands) {
voiceCommand.commandId = self.lastVoiceCommandId++;
}
}
#pragma mark Deletes
- (NSArray<SDLDeleteCommand *> *)sdl_deleteCommandsForVoiceCommands:(NSArray<SDLVoiceCommand *> *)voiceCommands {
NSMutableArray<SDLDeleteCommand *> *mutableDeletes = [NSMutableArray array];
for (SDLVoiceCommand *command in voiceCommands) {
SDLDeleteCommand *delete = [[SDLDeleteCommand alloc] initWithId:command.commandId];
[mutableDeletes addObject:delete];
}
return [mutableDeletes copy];
}
#pragma mark Commands
- (NSArray<SDLAddCommand *> *)sdl_addCommandsForVoiceCommands:(NSArray<SDLVoiceCommand *> *)voiceCommands {
NSMutableArray<SDLAddCommand *> *mutableCommands = [NSMutableArray array];
for (SDLVoiceCommand *command in voiceCommands) {
[mutableCommands addObject:[self sdl_commandForVoiceCommand:command]];
}
return [mutableCommands copy];
}
- (SDLAddCommand *)sdl_commandForVoiceCommand:(SDLVoiceCommand *)voiceCommand {
SDLAddCommand *command = [[SDLAddCommand alloc] init];
command.vrCommands = voiceCommand.voiceCommands;
command.cmdID = @(voiceCommand.commandId);
return command;
}
#pragma mark - Observers
- (void)sdl_commandNotification:(SDLRPCNotificationNotification *)notification {
SDLOnCommand *onCommand = (SDLOnCommand *)notification.notification;
for (SDLVoiceCommand *voiceCommand in self.voiceCommands) {
if (onCommand.cmdID.unsignedIntegerValue != voiceCommand.commandId) { continue; }
voiceCommand.handler();
break;
}
}
- (void)sdl_hmiStatusNotification:(SDLRPCNotificationNotification *)notification {
SDLOnHMIStatus *hmiStatus = (SDLOnHMIStatus *)notification.notification;
if (hmiStatus.windowID != nil && hmiStatus.windowID.integerValue != SDLPredefinedWindowsDefaultWindow) {
return;
}
SDLHMILevel oldHMILevel = self.currentHMILevel;
self.currentHMILevel = hmiStatus.hmiLevel;
// Auto-send an updated show if we were in NONE and now we are not
if ([oldHMILevel isEqualToEnum:SDLHMILevelNone] && ![self.currentHMILevel isEqualToEnum:SDLHMILevelNone]) {
if (self.waitingOnHMIUpdate) {
[self setVoiceCommands:_voiceCommands];
} else {
[self sdl_updateWithCompletionHandler:nil];
}
}
}
@end
NS_ASSUME_NONNULL_END
|