summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add error handling for failed hmi message sendfix/hmi_msg_failed_send_error_handlingJackLivio2020-10-094-6/+29
|
* remove unlock of lock that isn't locked (#3536)7.0.0-RC1Collin2020-10-081-1/+0
|
* Fix/Add DialNumber RPC to preloaded pt (#3533)Shobhit Adlakha2020-10-071-0/+11
| | | | | | | * Add the DialNumber RPC to the Base-4 and Base-6 functional groups * Move DialNumber into a separate functional group * Fix added functional group
* Fix/usb handler thread safe stop (#3492)Andrii Kalinich (GitHub)2020-10-063-5/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Wait for UsbHandler thread end in UsbHandler dtor The Thread dedicated for handling libusb events should exit successfully on it's own. This guarantees that `libusb_close()` being called on all devices, as well as `libusb_exit()` call is properly sequenced. Thread exits in recommended by libusb doc way: 1. set exit flag 2. deregister hotplug callbacks, which will wake up `libusb_handle_events()` once again. But this commit changes the way the Thread being joined. It ensures that `join()` is called with `kNoStop` flag, which prevents force stop using `pthread_cancel()`. * Using atomic bool for shutdown_requested_ flag Making UsbHandler::shutdown_requested_ flag atomic to guarantee mutual access to it. exchange() call is needed for helgrind to feel sure that there is no data race. * Remove redundant DCHECK This assertion has been exposed by the current fix
* use less common port in websocket connection tests (#3529)Collin2020-10-061-1/+1
|
* Re-order rai logic for plugins (#3526)JackLivio2020-10-065-8/+36
| | | | | | | | | | | * Re-order rai logic for plugins * style * Add mock method * Add method descriptions * Add timing content
* Bugfix 3173 (#3528)JackLivio2020-10-064-1/+54
| | | | | | | | | | | * Fix 3173 bug:multi-thread access one pointer at same time caused a wild pointer problem in HMICapabilitiesImpl class * modify test code for 3173 * fix Unit tests * Fix merge conflicts Co-authored-by: zhangwenqin <zhangwenqin@iauto.com>
* Fix dead lock in usb connection (#3494)Andrii Kalinich (GitHub)2020-10-051-1/+1
| | | | | | In a while called method locks mutex for protecting data and if USB connection is failed it means that method will call and will try to lock the same mutex again. That's why this mutex should be recursive.
* Add check for already processed resumptions (#3525)Yana Chernysheva (GitHub)2020-10-053-142/+61
|
* Fix streamer activity in case of suspend (#3488)Andrii Kalinich (GitHub)2020-10-0516-130/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix streamer activity in case of suspend The problem of the current implementation is that SDL kills streaming thread responsible for sending a/v streaming data to HMI when streaming timeout expires. This issue is observed when mobile app dumps 10-seconds audio file to SDL during 2 seconds and after that app does not send any data. In that case HMI will play audio file during 2 seconds + timeout = 5 seconds. At the 5th second SDL just kills streaming thread with all pending messages, however audio service is still open. As a result not a whole audio file is played. The correct behavior from SDL side in that case is not kill streaming thread when streaming timeout was expired. SDL should kill streaming thread only when service is actually stopped. Current SDL behavior was updated to align with a correct behavior described above. * Adjust fix to work with audio socket streaming * Revert "[WIP] initial fix of socket streaming by guessing playback time (#3057)" This reverts commit 7c442abce73c462e7724a64b3ce037bcb8e9093e. * Remove unused code after revert * Fix style issues
* Fix deadlock in policy handler (#3497)Igor Gapchuk (GitHub)2020-10-053-356/+460
|
* Fix GetInteriorVehicle request wrong processes result codes from HMI (#3519)Igor Gapchuk (GitHub)2020-10-022-6/+68
| | | | GetInteriorVehicle request RPC should process the next result codes as success: WRONG_LANGUAGE, RETRY, SAVED.
* Use weak_ptr<WebsocketSession> instead of raw ptrs (#3490)Andrii Kalinich (GitHub)2020-10-023-141/+141
| | | | | | | | | | This commit makes no functional or insecure changes. It only prevents possible SIGSEGVs. Don't use raw pointers to WebsocketSession in almost all cases. For function arguments, pointers changed to references for preventing null pointer occurrence. For containers pointers changed to weak_ptr for preventing expired references. Removed wrong inheritance for CMessageBroker
* Merge pull request #3449 from ↵Jacob Keeler2020-10-0224-776/+100
|\ | | | | | | | | LuxoftSDL/fix/move_duplicate_conversion_functions_to_message_helper Move duplicate conversion functions to Message Helper
| * Delete module_types_str_mappingYana Chernysheva2020-10-021-9/+1
| |
| * Merge branch 'release/7.0.0' into ↵Yana Chernysheva2020-10-02123-1555/+993
| |\ | |/ |/| | | fix/move_duplicate_conversion_functions_to_message_helper
* | Remove ManageMobileCommand call from UnregisterAppInterfaceRequest and ↵Yana Chernysheva (GitHub)2020-10-012-16/+0
| | | | | | | | corresponding unit test (#3389)
* | Merge pull request #3523 from smartdevicelink/fix/play_tone_without_ttsJacob Keeler2020-10-011-3/+4
|\ \ | | | | | | Ignore playTone if provided without TTSChunks
| * | Ignore playTone if provided without TTSChunksfix/play_tone_without_ttsjacobkeeler2020-09-301-3/+4
| | |
* | | Fix Cppcheck issues (#3453)Yana Chernysheva (GitHub)2020-10-0198-961/+639
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix noExplicitConstructor issue * Fix functionConst issues * Fix unusedFunction and unusedField issues * Fix redundantInitialization * Fix unreadVariable and unusedVariable issues * Fix postfixOperator issue * Fix variableScope issue * Fix invalidPrintfArgType_sint and unsignedLessThanZero issues * Fix other errors * Add changes, related to functions marked as unused * Fix new issues * Fixe review comment * Fix codestyle * Fix constParameter errors * Fix functionConst errors * Fix noExplicitConstructor, redundantInitialization errors * Fix unreadVariable errors * Fix shadowVariable error * Fix useStlAlgorithm errors * Fixe variableScope error, add FIXME comment * Fix code style * Fix compile error * Remove unsued function * Fix compile error Co-authored-by: Vladislav Semenyuk <vsemenyuk@luxoft.com>
* | | Fix data races in TcpClientListener (#3495)Andrii Kalinich (GitHub)2020-10-012-7/+10
|/ / | | | | | | | | | | Regarding of Helgrind report. Changed type of TcpClientListener::thread_stop_requested_ from bool to std::atomic_bool. The same for remove_devices_on_terminate_
* | Fix deadlock in connection_handler (#3496)Igor Gapchuk (GitHub)2020-09-301-5/+15
| |
* | Use atomic bool in ApplicatinManager (#3491)Andrii Kalinich (GitHub)2020-09-302-10/+5
| | | | | | | | | | Replace bool flag 'is_stopping_' in class ApplicationManagerImpl and remove mutex 'stopping_application_mng_lock_'.
* | Replace direct access with accessor for apps (#3487)Andrii Kalinich (GitHub)2020-09-302-18/+22
| | | | | | | | | | | | | | | | | | There was found a few places inside of ApplicationManager where `applications_` and `apps_to_register_` members were used without locks however these members are commonly used and must be synchronized in all places. To avoid potential data races, direct usage of these elements were replaced with accessor for read-only operations. Also was added a missing lock.
* | Merge branch 'develop' into release/7.0.0collin2020-09-302-0/+2
|\ \
| * | Unsubscribe from event in VehicleInfoPendingResumptionHandler (#3515)Yana Chernysheva (GitHub)2020-09-302-0/+2
| | |
* | | Merge pull request #3510 from ↵Jacob Keeler2020-09-293-478/+65
|\ \ \ | | | | | | | | | | | | | | | | LuxoftSDL/fix/fix_enums_conversion_in_hmi_capabilities Fix/fix enums conversion in hmi capabilities
| * | | Align HMI capabilities file with APIAndrii Kalinich2020-09-232-3/+3
| | | |
| * | | Fix enum conversion in HMI capabilitiesAndrii Kalinich2020-09-221-475/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were found a couple of hardcoded HMI capabity enum to string values and some of them were outdated. This legacy code can be easily replaced with the templated function supplied from generated API. By that reason, all hardcoded pairs and maps were removed and replaced with a common function.
* | | | add webengine_websocket to TransportTypeProfileStringFromDeviceHandle (#3520)Collin2020-09-292-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add webengine_websocket to TransportTypeProfileStringFromDeviceHandle * differentiate transport name from cloud * add WEBSOCKET and WEBENGINE devices to ini file
* | | | Add additional check to avoid duplicate subscriptions to Vehicle Data (#3512)Yana Chernysheva (GitHub)2020-09-294-28/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replace check for already existed subscriptions * Delete unused enum * Update unit tests and add new unit test
* | | | Parse PTU as array for http policies (#3521)JackLivio2020-09-282-3/+3
| |/ / |/| |
* | | Add check whether restoring of all required data was completed (#3508)Yana Chernysheva (GitHub)2020-09-221-2/+4
| | |
* | | Update coverage reference (#3509)Yaroslav Mamykin (GitHub)2020-09-211-1/+1
| | | | | | | | | | | | | | | * Update README.md * fixup! Update README.md
* | | Merge pull request #3507 from smartdevicelink/fix/coverity_7.0Jacob Keeler2020-09-213-2/+8
|\ \ \ | |/ / |/| | Add fixes for new Coverity issues
| * | Add fixes for new Coverity issuesfix/coverity_7.0jacobkeeler2020-09-173-2/+8
| | | | | | | | | | | | Fixes CID 214309, 214305, 214304
* | | Fix/Delay OnHMIStatus until RAI response is sent (#3506)Shobhit Adlakha2020-09-2110-16/+113
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add is_ready flag to apps and handle sending OnHMIStatus after RAI response * Add mock functions * Address review comments * Only send delayed onHMIStatus if RAI was a success * Prevent secondary hmi level none to cloud apps * Move enabled check to last when init new cloud app Co-authored-by: JackLivio <jack@livio.io>
* | Merge pull request #3505 from smartdevicelink/fix/issue_3504theresalech2020-09-171-4/+4
|\ \ | | | | | | Fix HMI API description typos
| * | Fix HMI API description typosfix/issue_3504theresalech2020-09-161-4/+4
|/ / | | | | | | Resolves issue 3504
| * Fix issue with bracesYana Chernysheva2020-09-101-2/+1
| |
| * Delete unused fileYana Chernysheva2020-09-101-731/+0
| |
| * Merge branch 'develop' into ↵Yana Chernysheva2020-09-10802-14281/+22945
| |\ | |/ |/| | | fix/move_duplicate_conversion_functions_to_message_helper
* | Validate the data before dereferencing it (#3493)Ira Lytvynenko (GitHub)2020-09-081-2/+7
| |
* | [SDL-0188] Interior Vehicle Data Resumption (#3480)Ira Lytvynenko (GitHub)2020-09-0438-93/+1826
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add changes related to AppExtension and RCAppExtension * Change OnTimeOut() method in affected requests * Add changes related to ApplicationHelper class * Add changes related to EventDispatcher * Fill subscription data for all pending requests Changed SDL logic to update subscription results for each pending subscription request before notifying resumption processor about current subscription is processed. This should be done beforehand because after raising event to processor it can finish resumption process and if it has failed then it can trigger sending of the next subscription request. So at that point, each subscription request should contain updated subscriptions status, otherwise some redundant requests might be sent. * Add RC data to resumption data processor * Add RCPendingResumptionHandler class * Process timeout for get interior vehicle data * Revert Interior vehicle data * Add resumption logic to RC app extension * Resumption logic in RC plugin * Helpers RC functions * Update hash for RC data * Filter RC subscriptions in vehicle data plugin * UTs for the RCPendingResumptionHandler Co-authored-by: Yana Chernysheva <ychernysheva@luxoft.com> Co-authored-by: Andrii Kalinich (GitHub) <AKalinich@luxoft.com> Co-authored-by: Aleksandr Kutsan <AKutsan@luxoft.com> Co-authored-by: Igor Gapchuk <igapchuck@luxoft.com> Co-authored-by: sniukalov <sniukaov@luxoft.com> Co-authored-by: Dmitriy Boltovskiy <dboltovskyi@luxoft.com>
* | Feature/Add reason param to All protocol NAKs (#3462)Shobhit Adlakha2020-09-0417-173/+822
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add reason param to StartService and EndService NAK payloads * Update the default protocol version * Fix unit tests * Implement minor version check for reason param * Fix unit tests * Apply suggestions from code review Co-authored-by: Collin <iCollin@users.noreply.github.com> * Make semantic versions const and fix handshake NAK reason messages * Make reason a required param * Add error check for protocolversionused call * Use full version for reason param version check * Get protocol NAK reason from OnSessionEndedCallback * Fix failing unit tests * Remove unnecessary condition from protected/unprotected reason check * Add unit tests for NACK reason param * Add unit test for EndServiceNAK with reason param * Fix calltimes in StartSession_NACKReason_SessionObserverReject * Get reason string for service start failed * Add more details to the invalid cert nak reason Co-authored-by: Collin <iCollin@users.noreply.github.com>
* | [SDL-0190] Handle response from HMI during resumption data (#3475)Yana Chernysheva (GitHub)2020-09-04103-1866/+6232
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add changes to RAI request * Add new class ResumptionDataProcessor * Add new class SDLAppExtension * Add new class ExtensionPendingResumptionHandler * Add new class SDLPendingResumptionHandler * New class VehicleInfoPendingResumptionHandler * Add changes related to ApplicationManager class * Add changes related to MessageHelper class * Add changes related to StateController class * Add changes related to ResumeController class * Add changes related to PolicyHandler class * Add changes related to SDLRPCPlugin * Add changes related to VehicleInfoPlugin * Add changes related to AppServiceAppExtension and SystemCapabilitiesAppExtension * Add changes related to ResetGlobalProperties request * Add changes related to VehicleInfoAppExtension * Add changes related to AppExtension and RCAppExtension * Change OnTimeOut() method in affected requests * Add changes related to method IsAppSubscribedForWayPoints * Fix problem with multiple definitions during building of unit tests * Add changes related to ApplicationHelper class * Add changes related to EventDispatcher * Add changes related to OnSystemCapabilitiesUpdated notification * Fix/fix rai default timeout (#108) Fix RAI default timeout As RAI request does not depend on any HMI response there is no need to track any timeout for it. RAI request will be removed from/ RequestController queue upon RAI response which will be sent anyway Update UT * Do not unsubscribe from pending VD Update SDL logic to avoid sending of unsubscribeVD to HMI during vehicle data resumption for case when another application is also have pending subscription for the same vehicle data. * Fill subscription data for all pending requests Changed SDL logic to update subscription results for each pending subscription request before notifying resumption processor about current subscription is processed. This should be done beforehand because after raising event to processor it can finish resumption process and if it has failed then it can trigger sending of the next subscription request. So at that point, each subscription request should contain updated subscriptions status, otherwise some redundant requests might be sent. * fixup! Add new class ResumptionDataProcessor * fixup! Add new class SDLPendingResumptionHandler * fixup! Add new class ExtensionPendingResumptionHandler * fixup! New class VehicleInfoPendingResumptionHandler * fixup! Add changes to RAI request * fixup! Add new class ResumptionDataProcessor * fixup! Add new class SDLAppExtension * fixup! Add new class SDLPendingResumptionHandler * fixup! New class VehicleInfoPendingResumptionHandler * fixup! Add changes related to ApplicationManager class * fixup! Add changes related to MessageHelper class * fixup! Add changes related to ResumeController class * fixup! Add changes related to SDLRPCPlugin * fixup! Add changes related to AppExtension and RCAppExtension * fixup! Add changes related to AppServiceAppExtension and SystemCapabilitiesAppExtension * fixup! Add changes related to OnSystemCapabilitiesUpdated notification * fixup! Add changes related to ResumeController class * fixup! Change OnTimeOut() method in affected requests * fixup! fixup! Add new class SDLAppExtension * Filter RC subscriptions in vehicle data plugin * Timeout process for reset global properties * Use ResumptionDataProcessor interface instead of subscriber function * Rename ExtensionPendingResumptionHandler * Rename SDLAppExtension * Revert "Filter RC subscriptions in vehicle data plugin" This reverts commit f35e573e7587b06472e9f396d249339e8fc05cc8. * Rename resumption_data_processor.cc * Rename SDLPendingResumptionHandler * fixup! fixup! Add changes related to OnSystemCapabilitiesUpdated notification * fixup! fixup! Add changes related to AppServiceAppExtension and SystemCapabilitiesAppExtension * fixup! Use ResumptionDataProcessor interface instead of subscriber function Co-authored-by: Andrii Kalinich (GitHub) <AKalinich@luxoft.com> Co-authored-by: Aleksandr Kutsan <AKutsan@luxoft.com>
* | Overhaul state manager to handle regular state changes during hmi events (#3476)Jacob Keeler2020-09-048-248/+613
| | | | | | | | | | * Overhaul state manager to handle regular state changes during hmi events * Add parent check for all calls
* | Removed unconsistent logger_status variable. (#3489)Alexander Kutsan (GitHub)2020-09-036-150/+41
| | | | | | Fix adopted from SYNC4 codebase
* | SDLCORE-459 : Fix trying to unlock mutex not held by any thread (#3380)Alexander Kutsan (GitHub)2020-09-031-6/+4
| | | | | | | | | | | | | | | | SDLCORE-459 Helgrind considers that this issue is an error because we release mutex before call Broadcast. Co-authored-by: Elvis Kuliiev <ekuliiev@luxoft.com>
* | Fix mutex deadlock on VR.ChangeLanguage received (#3370)Alexander Kutsan2020-09-031-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix mutex deadlock on VR.ChangeLanguage received SYNC-10345 There was a problem that on receiving VR.ChangeLanguage SDL is holding application lock via accessor and tries to send some notifications from the same thread. For sending notifications SDL should check policy permissions for that notification and hance, to acquire policy lock. At the same time, PTU could happen in the separate thread and during PTU policy lock could be acquired. Also, during PTU SDL will try to acquire applications lock from this thread, however it is acquired by another thread which executing VR.ChangeLanguage request. As a result we receive thread deadlock. To avoid this deadlock, accessor in VR.ChangeLanguage was scoped in the same manner as for UI and TTS parts. * Copy apps without redundant scoping data accessor Co-authored-by: Elvis Kuliiev <ekuliiev@luxoft.com> Co-authored-by: Aleksandr Kutsan <AKutsan@luxoft.com>