summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src
Commit message (Collapse)AuthorAgeFilesLines
* Send Driver Distraction notification immediately upon registrationfeature/driver_distraction_on_registrationJacob Keeler2018-07-121-0/+1
|
* Merge pull request #2164 from XevoInc/feat/mt_transport_changesJacob Keeler2018-07-063-24/+27
|\ | | | | Feat/mt transport changes
| * Merge branch 'develop' of https://github.com/smartdevicelink/sdl_core into ↵fronneburg2018-07-053-24/+27
| | | | | | | | | | | | | | | | | | feat/mt_transport_changes Conflicts: src/components/application_manager/src/application_manager_impl.cc src/components/application_manager/test/application_manager_impl_test.cc src/components/remote_control/test/include/mock_application.h
* | fix: syntax error in hmi_command_factory.ccSho Amano2018-07-041-5/+6
|/
* Merge remote-tracking branch 'origin/develop' into feature/vehicle_info_pluginJackLivio2018-06-271-10/+6
| | | | | # Conflicts: # src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/mobile/add_sub_menu_request_test.cc
* Merge DevelopJackLivio2018-06-271-6/+29
|
* Move new RPCs to sdl_rpc_plugin and make some fixes after rebaseIra Lytvynenko (GitHub)2018-06-264-12/+191
|
* Move vi_get_vehicle_type to vehicle_info_pluginIra Lytvynenko (GitHub)2018-06-263-133/+0
|
* Fix yearAlexander2018-06-261-1/+1
|
* Style fixAlexander2018-06-261-7/+9
|
* Removed usages of moved modules from rpc plugin, minor code improvement.Oleksandr Lohvinenko (GitHub)2018-06-262-106/+0
|
* Moved HMI RPCs.Oleksandr Lohvinenko (GitHub)2018-06-2613-857/+0
|
* Moved mobile RPCs.Oleksandr Lohvinenko (GitHub)2018-06-2613-2137/+0
|
* Implemented plugin skeleton, moved HMI IsReady command.Oleksandr Lohvinenko (GitHub)2018-06-263-181/+0
|
* Fixes after rebaseIra Lytvynenko (GitHub)2018-06-262-13/+8
|
* Remove remote control flagIra Lytvynenko (GitHub)2018-06-261-6/+0
|
* Answer review comments.BSolonenko2018-06-26336-349/+340
|
* Fix SDL behavior when resource is unsupportedAndriy Byzhynar2018-06-263-3/+9
| | | | | | | | | | | | | | | | | - Fixed response handling when required resource is unsupported - Fixed get_system_capabilities request - FIxed typo in Mobile & HMI APIs (there was duplicated value for different entities) Fix OnRCStatus notification Fix comments after review Conflicts: src/components/application_manager/rpc_plugins/rc_rpc_plugin/include/rc_rpc_plugin/resource_allocation_manager_impl.h src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc src/components/interfaces/HMI_API.xml src/components/interfaces/MOBILE_API.xml
* Fixed get RC ApplicationsBSolonenko2018-06-262-13/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - added is_rc_ field, getter and setter in ApplicationImpl; - fixed RegisterAppInterfaceRequest::Run(); - fixed RCRPCPlugin::GetRCApplications(). Fix UTs Added is_remote_control_supported and set_remote_control_supported methods in MockApplication Fixed on_interior_vehicle_data_notification_test and resource_allocation_manager_impl_test. Fixed sending of notifications. - Fixed RCRPCPlugin::OnPolicyEvent; - Fixed RCRPCPlugin::OnApplicationEvent; - Fixed OnExitApplicationNotification::Run; - Fixed ApplicationManagerImpl::UnregisterApplication; - Fixed ApplicationManagerImpl::OnPTUFinished; - Refactoring ApplicationImpl::RemoveExtension; - is_remote_control_supported_ added in initialization list. Fix UTs In application_manager_impl_test added seting RPCPluginManager Conflicts: src/components/application_manager/rpc_plugins/rc_rpc_plugin/test/resource_allocation_manager_impl_test.cc src/components/application_manager/src/application_manager_impl.cc
* Fix code styleIra Lytvynenko (GitHub)2018-06-2617-49/+27
|
* Refactoring sdl rpc plugin's factoriesBSolonenko2018-06-264-3786/+1205
|
* Fix build with unit tests after commands factory refactoringValerii2018-06-265-377/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Change enum name from command origin to command source - Create Mock for command factory class - Fix mock_app_manager after refactoring - Fix failed unit test Fix unit test in progress Add asser in plugin manager getter Fixed UT Application manager impl -Add method "SetRPCService" into the class ApplicationManagerImpl Fixed UT Application manager impl -Add method "SetRPCService" into the class ApplicationManagerImpl Fixed UT Application manager impl -Add method "SetRPCService" into the class ApplicationManagerImpl Fixed UTs for hmi and mobile commands.
* Replaced all usages of passed parameters in implementation.BSolonenko2018-06-26105-153/+148
| | | | | | | | | Replaced all usages of passed parameters in implementation from application manager proxy to indirect call Add missed factories Remove commands includes
* Refactoring all hmi commands.BSolonenko2018-06-26242-1277/+4737
| | | | | In all hmi command added rpc_service_, hmi_capabilities_ and policy_handler_ fields. Also changed all constructors.
* Refactoring all mobile commands.BSolonenko2018-06-26104-210/+938
| | | | | In all mobile command added rpc_service_, hmi_capabilities_ and policy_handler_ fields. Also changed all constructors.
* Fix hmi message handler initialization in rpc serviceIra Lytvynenko2018-06-2611-0/+350
| | | | | | | | | | | | | | | | | | | | | Move notification and command implementation back to applicaiton manager Copywriting added. In 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin/' folder added copywriting for next files: include/sdl_rpc_plugin/sdl_rpc_plugin.h src/commands/hmi/navi_stop_stream_request.cc src/commands/hmi/on_tts_reset_timeout_notification.cc src/commands/mobile/get_system_capability_request.cc src/commands/mobile/get_system_capability_response.cc src/commands/mobile/get_way_points_request.cc src/commands/mobile/get_way_points_response.cc src/commands/mobile/subscribe_way_points_request.cc src/commands/mobile/subscribe_way_points_response.cc src/commands/mobile/unsubscribe_way_points_request.cc src/commands/mobile/unsubscribe_way_points_response.cc src/sdl_rpc_plugin.cc
* Load plugins in app manager, init plugin with paramsIra Lytvynenko2018-06-26351-883/+1582
| | | | | | | | | | | | cory library to install dir Fix build Fix header guards Fix namespaces Fix build
* move commands factory to rpc pluginIra Lytvynenko2018-06-26353-549/+3508
| | | | | | | | | | | | | | Replace include path of the commands Fix some things Fixing compile of applicaiton manager Move Commands interface part back to application_manager Use unique ptr for plugin manager Fix style in RPC services and factories Remove redunsant includes of factories in application manager Remove include of functional module
* Remove all remote controllAlexander Kutsan2018-06-262-10/+1
| | | | | | Remove commands includes Remove commands includes
* SDL RPC plugin CMAKElistAlexander Kutsan2018-06-261-0/+31
|
* Move commands to sdl rpc pluginAlexander Kutsan2018-06-26349-0/+32794