summaryrefslogtreecommitdiff
path: root/src/components/include/application_manager/hmi_capabilities.h
blob: 56ac807d631970e471416fb3700b0e3d3a4ce7bd (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
/*
 * Copyright (c) 2016, Ford Motor Company
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided with the
 * distribution.
 *
 * Neither the name of the Ford Motor Company nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef SRC_COMPONENTS_INCLUDE_APPLICATION_MANAGER_HMI_CAPABILITIES_H_
#define SRC_COMPONENTS_INCLUDE_APPLICATION_MANAGER_HMI_CAPABILITIES_H_

#include "application_manager/hmi_language_handler.h"
#include "interfaces/HMI_API.h"
#include "interfaces/MOBILE_API.h"
#include "json/json.h"
#include "resumption/last_state_wrapper.h"
#include "smart_objects/smart_object.h"
#include "utils/macro.h"

namespace application_manager {
class ApplicationManager;

class HMICapabilities {
 public:
  /**
   * @brief Class destructor
   */
  virtual ~HMICapabilities() {}

  /**
   * @brief return component which follows for correctness of
   * languages
   * @return HMI language handler
   */
  virtual HMILanguageHandler& get_hmi_language_handler() = 0;

  /**
   * @brief Checks if image type(Static/Dynamic) requested by
   * Mobile Device is supported on current HMI.
   * @param image_type received type of image from Enum.
   * @return Bool true if supported
   */
  virtual bool VerifyImageType(const int32_t image_type) const = 0;

  /**
   * @brief Checks if all HMI capabilities received
   * @return TRUE if all information received, otherwise FALSE
   */
  virtual bool is_vr_cooperating() const = 0;
  virtual void set_is_vr_cooperating(const bool value) = 0;

  virtual bool is_tts_cooperating() const = 0;
  virtual void set_is_tts_cooperating(const bool value) = 0;

  virtual bool is_ui_cooperating() const = 0;
  virtual void set_is_ui_cooperating(const bool value) = 0;

  virtual bool is_navi_cooperating() const = 0;
  virtual void set_is_navi_cooperating(const bool value) = 0;

  virtual bool is_ivi_cooperating() const = 0;
  virtual void set_is_ivi_cooperating(const bool value) = 0;

  virtual bool is_rc_cooperating() const = 0;
  virtual void set_is_rc_cooperating(const bool value) = 0;

  /**
   * @brief Interface used to store information about software version of the
   * target
   * @param ccpu_version Received system/hmi software version
   */
  virtual void set_ccpu_version(const std::string& ccpu_version) = 0;

  /**
   * @brief Returns software version of the target
   * @return TRUE if it supported, otherwise FALSE
   */
  virtual const std::string& ccpu_version() const = 0;

  /**
   * @brief Retrieves if mixing audio is supported by HMI
   * (ie recording TTS command and playing audio)
   * @return Current state of the mixing audio flag
   */
  virtual bool attenuated_supported() const = 0;

  /**
   * @brief Sets state for mixing audio
   * @param state New state to be set
   */
  virtual void set_attenuated_supported(const bool state) = 0;

  /**
   * @brief Retrieves currently active UI language
   * @return Currently active UI language
   */
  virtual const hmi_apis::Common_Language::eType active_ui_language() const = 0;

  /**
   * @brief Sets currently active UI language
   * @param language Currently active UI language
   */
  virtual void set_active_ui_language(
      const hmi_apis::Common_Language::eType language) = 0;

  /**
   * @brief Retrieves UI supported languages
   * @return Currently supported UI languages
   */
  virtual const smart_objects::SmartObjectSPtr ui_supported_languages()
      const = 0;

  /**
   * @brief Sets supported UI languages
   * @param supported_languages Supported UI languages
   */
  virtual void set_ui_supported_languages(
      const smart_objects::SmartObject& supported_languages) = 0;

  /**
   * @brief Retrieves currently active VR language
   * @return Currently active VR language
   */
  virtual const hmi_apis::Common_Language::eType active_vr_language() const = 0;

  /**
   * @brief Sets currently active VR language
   * @param language Currently active VR language
   */
  virtual void set_active_vr_language(
      const hmi_apis::Common_Language::eType language) = 0;

  /**
   * @brief Retrieves VR supported languages
   * @return Currently supported VR languages
   */
  virtual const smart_objects::SmartObjectSPtr vr_supported_languages()
      const = 0;

  /**
   * @brief Sets supported VR languages
   * @param supported_languages Supported VR languages
   */
  virtual void set_vr_supported_languages(
      const smart_objects::SmartObject& supported_languages) = 0;

  /**
   * @brief Retrieves currently active TTS language
   * @return Currently active TTS language
   */
  virtual const hmi_apis::Common_Language::eType active_tts_language()
      const = 0;

  /**
   * @brief Sets currently active TTS language
   * @param language Currently active TTS language
   */
  virtual void set_active_tts_language(
      const hmi_apis::Common_Language::eType language) = 0;

  /**
   * @brief Retrieves TTS  supported languages
   * @return Currently supported TTS languages
   */
  virtual const smart_objects::SmartObjectSPtr tts_supported_languages()
      const = 0;

  /**
   * @brief Sets supported TTS languages
   * @param supported_languages Supported TTS languages
   */
  virtual void set_tts_supported_languages(
      const smart_objects::SmartObject& supported_languages) = 0;

  /**
   * @brief Retrieves information about the display capabilities
   * @return Currently supported display capabilities
   */
  virtual const smart_objects::SmartObjectSPtr display_capabilities() const = 0;

  /**
   * @brief Sets supported display capabilities
   * @param display_capabilities supported display capabilities
   */
  virtual void set_display_capabilities(
      const smart_objects::SmartObject& display_capabilities) = 0;

  /**
   * @brief Retrieves information about the display capability
   * @return Currently supported display capability
   */
  virtual const smart_objects::SmartObjectSPtr system_display_capabilities()
      const = 0;

  /**
   * @brief Sets supported display capability
   * @param display_capabilities supported display capability
   */
  virtual void set_system_display_capabilities(
      const smart_objects::SmartObject& display_capabilities) = 0;

  /**
   * @brief Retrieves information about the HMI zone capabilities
   * @return Currently supported HMI zone capabilities
   */
  virtual const smart_objects::SmartObjectSPtr hmi_zone_capabilities()
      const = 0;

  /**
   * @brief Sets supported HMI zone capabilities
   * @param hmi_zone_capabilities supported HMI zone capabilities
   */
  virtual void set_hmi_zone_capabilities(
      const smart_objects::SmartObject& hmi_zone_capabilities) = 0;

  /**
   * @brief Retrieves information about the SoftButton's capabilities
   * @return Currently supported SoftButton's capabilities
   */
  virtual const smart_objects::SmartObjectSPtr soft_button_capabilities()
      const = 0;

  /**
   * @brief Sets supported SoftButton's capabilities
   * @param soft_button_capabilities supported SoftButton's capabilities
   */
  virtual void set_soft_button_capabilities(
      const smart_objects::SmartObject& soft_button_capabilities) = 0;

  /**
   * @brief Retrieves information about the Button's capabilities
   * @return Currently supported Button's capabilities
   */
  virtual const smart_objects::SmartObjectSPtr button_capabilities() const = 0;

  /**
   * @brief Sets supported Button's capabilities
   * @param soft_button_capabilities supported Button's capabilities
   */
  virtual void set_button_capabilities(
      const smart_objects::SmartObject& button_capabilities) = 0;

  /**
   * @brief Sets supported speech capabilities
   * @param speech_capabilities supported speech capabilities
   */
  virtual void set_speech_capabilities(
      const smart_objects::SmartObject& speech_capabilities) = 0;

  /**
   * @brief Retrieves information about the speech capabilities
   * @return Currently supported speech capabilities
   */
  virtual const smart_objects::SmartObjectSPtr speech_capabilities() const = 0;

  /**
   * @brief Sets supported VR capabilities
   * @param vr_capabilities supported VR capabilities
   */
  virtual void set_vr_capabilities(
      const smart_objects::SmartObject& vr_capabilities) = 0;

  /**
   * @brief Retrieves information about the VR capabilities
   * @return Currently supported VR capabilities
   */
  virtual const smart_objects::SmartObjectSPtr vr_capabilities() const = 0;

  /**
   * @brief Sets supported audio_pass_thru capabilities
   * @param vr_capabilities supported audio_pass_thru capabilities
   */
  virtual void set_audio_pass_thru_capabilities(
      const smart_objects::SmartObject& audio_pass_thru_capabilities) = 0;

  /**
   * @brief Retrieves information about the audio_pass_thru capabilities
   * @return Currently supported audio_pass_thru capabilities
   */
  virtual const smart_objects::SmartObjectSPtr audio_pass_thru_capabilities()
      const = 0;

  /**
   * @brief Sets supported pcm_stream capabilities
   * @param supported pcm_stream capabilities
   */
  virtual void set_pcm_stream_capabilities(
      const smart_objects::SmartObject& pcm_stream_capabilities) = 0;

  /**
   * @brief Retrieves information about the pcm_stream capabilities
   * @return Currently supported pcm_streaming capabilities
   */
  virtual const smart_objects::SmartObjectSPtr pcm_stream_capabilities()
      const = 0;

  /**
   * @brief Retrieves information about the preset bank capabilities
   * @return Currently supported preset bank capabilities
   */
  virtual const smart_objects::SmartObjectSPtr preset_bank_capabilities()
      const = 0;

  /**
   * @brief Sets supported preset bank capabilities
   * @param soft_button_capabilities supported preset bank capabilities
   */
  virtual void set_preset_bank_capabilities(
      const smart_objects::SmartObject& preset_bank_capabilities) = 0;

  /**
   * @brief Sets vehicle information(make, model, modelYear)
   * @param vehicle_type vehicle information
   */
  virtual void set_vehicle_type(
      const smart_objects::SmartObject& vehicle_type) = 0;

  /**
   * @brief Retrieves vehicle information(make, model, modelYear)
   * @param vehicle_type Current vehicle information
   */
  virtual const smart_objects::SmartObjectSPtr vehicle_type() const = 0;

  /**
   * @brief Retrieves information about the prerecorded speech
   * @return Currently supported prerecorded speech
   */
  virtual const smart_objects::SmartObjectSPtr prerecorded_speech() const = 0;

  /**
   * @brief Sets supported prerecorded speech
   * @param prerecorded_speech supported prerecorded speech
   */
  virtual void set_prerecorded_speech(
      const smart_objects::SmartObject& prerecorded_speech) = 0;

  /**
   * @brief Interface used to store information if navigation
   * supported by the system
   * @param supported Indicates if navigation supported by the system
   */
  virtual void set_navigation_supported(const bool supported) = 0;

  /**
   * @brief Retrieves information if navi supported by the system
   * @return TRUE if it supported, otherwise FALSE
   */
  virtual bool navigation_supported() const = 0;

  /**
   * @brief Interface used to store information if phone call
   * supported by the system
   * @param supported Indicates if navigation supported by the sustem
   */
  virtual void set_phone_call_supported(const bool supported) = 0;

  /**
   * @brief Retrieves information if phone call supported by the system
   * @return TRUE if it supported, otherwise FALSE
   */
  virtual bool phone_call_supported() const = 0;

  /**
   * @brief Interface to store whether HMI supports video streaming
   * @param supported Indicates whether video streaming is supported by HMI
   */
  virtual void set_video_streaming_supported(const bool supported) = 0;

  /**
   * @brief Retrieves whether HMI supports video streaming
   * @return TRUE if it supported, otherwise FALSE
   */
  virtual bool video_streaming_supported() const = 0;

  /**
   * @brief Interface to store whether HMI supports remote control
   * @param supported Indicates whether video streaming is supported by HMI
   */
  virtual void set_rc_supported(const bool supported) = 0;

  /**
   * @brief Retrieves whether HMI supports remote control
   * @return TRUE if it supported, otherwise FALSE
   */
  virtual bool rc_supported() const = 0;

  /*
   * @brief Interface to store whether HMI supports driver distraction menu
   * limits
   *
   * @param supported Indicates whether driver distraction menu limits is
   * supported by HMI
   */
  virtual void set_driver_distraction_supported(const bool supported) = 0;

  /*
   * @brief Retrieves whether HMI supports driver distraction menu limits
   *
   * @return TRUE if it supported, otherwise FALSE
   */
  virtual bool driver_distraction_supported() const = 0;

  /*
   * @brief Interface used to store information regarding
   * the navigation "System Capability"
   * @param navigation_capability contains information related
   * to the navigation system capability.
   */
  virtual void set_navigation_capability(
      const smart_objects::SmartObject& navigation_capability) = 0;

  /**
   * @brief Retrieves information regarding the navigation system capability
   * @return NAVIGATION system capability
   */
  virtual const smart_objects::SmartObjectSPtr navigation_capability()
      const = 0;

  /**
   * @brief Interface used to store information regarding
   * the phone "System Capability"
   * @param phone_capability contains information related
   * to the phone system capability.
   */
  virtual void set_phone_capability(
      const smart_objects::SmartObject& phone_capability) = 0;

  /**
   * @brief Retrieves information regarding the phone call system capability
   * @return PHONE_CALL system capability
   */
  virtual const smart_objects::SmartObjectSPtr phone_capability() const = 0;

  /**
   * @brief Sets HMI's video streaming related capability information
   * @param video_streaming_capability the video streaming related capabilities
   */
  virtual void set_video_streaming_capability(
      const smart_objects::SmartObject& video_streaming_capability) = 0;

  /**
   * @brief Retrieves HMI's video streaming related capabilities
   * @return HMI's video streaming related capability information
   */
  virtual const smart_objects::SmartObjectSPtr video_streaming_capability()
      const = 0;

  /**
   * @brief Sets available RC capabilities for further usage by RC functionality
   * @param rc_capability capabilities to set
   */
  virtual void set_rc_capability(
      const smart_objects::SmartObject& rc_capability) = 0;

  /**
   * @brief Retrieves information regarding the remote control capabilities
   * @return RC capabilities
   */
  virtual const smart_objects::SmartObjectSPtr rc_capability() const = 0;

  virtual void set_driver_distraction_capability(
      const smart_objects::SmartObject& driver_distraction_capability) = 0;

  virtual const smart_objects::SmartObjectSPtr driver_distraction_capability()
      const = 0;

  /**
   * @brief Sets available SeatLocation capabilities for further usage by
   * RC functionality
   * @param seat_location_capability capabilities to set
   */
  virtual void set_seat_location_capability(
      const smart_objects::SmartObject& seat_location_capability) = 0;

  /**
   * @brief seat_location_capability Retrieves information regarding the
   * seat location capability
   * @return smart object of seat location capability
   */
  virtual const smart_objects::SmartObjectSPtr seat_location_capability()
      const = 0;

  DEPRECATED
  virtual void Init(resumption::LastState* last_state) = 0;

  virtual void Init(resumption::LastStateWrapperPtr last_state_wrapper) = 0;

  /**
   * @brief Trigger waiting for response
   * @param request Request object
   */
  virtual void set_handle_response_for(
      const smart_objects::SmartObject& request) = 0;

  /**
   * @brief Writes cached HMI capabilities from internal cache into the file if
   * any of updated sections are not present in the file
   * @param interface_name name of interface to be updated
   * @param sections_to_update vector of names of sections which were updated in
   * cache
   * @param schema reference to schema which should be unapplied before saving
   * stringified JSON data into the file
   * @return true if cache was saved successfully, otherwise returns false
   */
  virtual bool SaveCachedCapabilitiesToFile(
      const std::string& interface_name,
      const std::vector<std::string>& sections_to_update,
      const smart_objects::CSmartSchema& schema) = 0;

  /**
   * @brief Deletes cached HMI capabilities file from a file system
   */
  virtual bool DeleteCachedCapabilitiesFile() const = 0;

  /**
   * @brief Checks if request required for appropriate function id
   * @param function_id function ID that required request to get appropriate hmi
   * capabilities
   * @return true if request required for capabilities, otherwise false
   */
  virtual bool IsRequestsRequiredForCapabilities(
      hmi_apis::FunctionID::eType function_id) const = 0;

  /**
   * @brief Update collection of requests that should be send to
   * the HMI to get required HMI capabilities
   * @param requested_interface function id
   */
  virtual void UpdateRequestsRequiredForCapabilities(
      hmi_apis::FunctionID::eType requested_interface) = 0;

  /**
   * @brief Interface that update capabilities depending on ccpu_version
   * @param ccpu_version Received system/hmi software version
   */
  virtual void OnSoftwareVersionReceived(const std::string& ccpu_version) = 0;

  /**
   * @brief Interface that update cached hmi capabilities
   */
  virtual void UpdateCachedCapabilities() = 0;
};

}  //  namespace application_manager

#endif  // SRC_COMPONENTS_INCLUDE_APPLICATION_MANAGER_HMI_CAPABILITIES_H_