summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change Double type parameters in spec to Float typehotfix/api_double_to_floatJacob Keeler2016-09-222-8/+8
|
* Merge pull request #813 from pestOO/fix/Documentation_4.1.0Elisey Zamakhov (GitHub)2016-09-131-3/+3
|\ | | | | Update documentation in README
| * Update README links to SAD, HMI Guidelines, TM guideElisey Zamakhov2016-09-101-3/+3
|/ | | | Related issue(s): APPLINK-26096, APPLINK-26662
* Merge pull request #784 from LuxoftAKutsan/release-4.1.04.1.0Alexander Kutsan (GitHub)2016-08-302025-72324/+136986
|\ | | | | Release 4.1.0
| * Make code appropriate to Google coding styleAlexander Kutsan2016-08-297-49/+52
| | | | | | | | Style guide : https://google.github.io/styleguide/cppguide.html
| * Merge branch 'release/4.1.0'Alexander Kutsan2016-08-262025-72302/+136961
| |\ |/ /
| * Merge pull request #772 from ↵release/4.1.0Artem Nosach (GitHub)2016-08-221-2/+2
| |\ | | | | | | | | | | | | orhan-mehmedov/fix/Update_logger_properties_to_log_only_to_file Update logger properties to log to file only
| | * Update logger properties to log to file onlyOrhan Mehmedov2016-08-221-2/+2
| |/ | | | | | | | | | | | | | | Leave only logging to file in log4cxx.properties due to slow printing to console/terminal. Workaround for APPLINK-17599. Related to APPLINK-17599.
| * Merge pull request #734 from ↵Artem Nosach (GitHub)2016-08-021-1/+1
| |\ | | | | | | | | | | | | VProdanov/feature/Change_VerifyPeer_parameter_in_ini_file_to_true Change_VerifyPeer_parameter_in_ini_file_to_true
| | * Change_VerifyPeer_parameter_in_ini_file_to_trueVProdanov2016-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By implementing this feature we fix secure service opening without validation.The problem which is occuring is that when we remove the server cridentials from SDL and start secure service we succeed. The reason for that is the VerifyPeer located in .ini file which by default was set false. As result SSL_CTX_set_verify is called without SSL_VERIFY_PEER, which is the reason server`s cridentials to not be checked. Requirement: APPLINK-22607 Fix-issue: APPLINK-17757
| * | Merge pull request #731 from vlantonov/fix/SDL_doesnt_add_app_to_app_level_tableArtem Nosach (GitHub)2016-08-014-7/+575
| |\ \ | | |/ | |/| Fix application add to app_level table
| | * Fix application add to app_level tableVladislav Antonov2016-07-294-7/+575
| |/ | | | | | | | | | | | | | | | | | | Required functionality to add the registered application in the app_level table with application name in column application_id. Covered changes with unit tests. Related issue: APPLINK-17802
| * Merge pull request #701 from ↵Artem Nosach (GitHub)2016-07-254-0/+230
| |\ | | | | | | | | | | | | orhan-mehmedov/fix/Send_OnHashChange_when_sending_SubscribeWayPoints_UnsubscribeWayPoints_4.1 Fixes sending OnHashChange when sending subscribe way points / unsubscribe way points
| | * Send OnHashChange for (Un)SubscribeWayPointsOrhan Mehmedov2016-07-214-0/+230
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OnHashChange now is send in case of SubscribeWayPoints / UnsubscribeWayPoints mobile command. Fix for APPLINK-25808. Note: SDL must send OnHashChange() to mobile app after responding with "success:true". Create initial UT for Un/SubscribeForWayPoints Created initial basic unit tests for SubscribeWayPoints/UnsubscribeWayPoints commands. Related to APPLINK-25808. Correct formatting with check_style.sh Related to APPLINK-25808.
| * | Merge pull request #698 from ↵Andriy Byzhynar (GitHub)2016-07-195-7/+108
| |\ \ | | | | | | | | | | | | | | | | VProdanov/fix/Core_dump_on_app_registration_with_another_appName_and_AppID Fix_core_dump_due_to_connection_been_created_twice
| | * | Fix_core_dump_due_to_connection_been_created_twiceVProdanov2016-07-195-7/+108
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The reson for the core dump, is that ConnectionCreated() is been called twice, from parent and child threads while the transport_adapter is restoring the last state. First is called in tcp_connection_factory.cc then in threaded_socket_connection.cc from the child threadMain() with connection->Start(). There was issue while the unit test was using app_info_storage with devices using the same ip. address. Related-issues: APPLINK-25379, APPLINK-22021
| * | Merge pull request #699 from dev-gh/fix/Fixes_SSL_context_settingArtem Nosach (GitHub)2016-07-181-2/+2
| |\ \ | | | | | | | | Fixes SSL context setting during handshake
| | * | Fixes SSL context setting during handshakeAndrey Oleynik2016-07-151-2/+2
| | |/ | | | | | | | | | Relates-to: APPLINK-26566
| * | Merge pull request #696 from dev-gh/fix/Fixes_check_of_expired_certificateArtem Nosach (GitHub)2016-07-182-7/+22
| |\ \ | | | | | | | | Fixes check of certificate expiration
| | * | Fixes includes and logsAndrey Oleynik2016-07-182-4/+8
| | | | | | | | | | | | | | | | Relates-to: APPLINK-25256
| | * | Fixes check of certificate expirationAndrey Oleynik2016-07-141-7/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PoliciesManager must start a PolicyTable Update sequence IN CASE the current date is "24 hours prior to module's certificate expiration date". Relates-to: APPLINK-25256
| * | | Merge pull request #694 from dev-gh/fix/Fixes_LAUNCH_APP_flowArtem Nosach (GitHub)2016-07-186-88/+223
| |\ \ \ | | | | | | | | | | Fixes SDL4.0 LAUNCH_APP flow
| | * | | Removes odd calls to valid() and changed functorAndrey Oleynik2016-07-181-6/+6
| | | | | | | | | | | | | | | | | | | | Related-to:APPLINK-23987
| | * | | Renames interfaces to fit coding styleAndrey Oleynik2016-07-145-14/+14
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Renames some variables and interfacesAndrey Oleynik2016-07-141-4/+4
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Renames several variables and interfacesAndrey Oleynik2016-07-142-23/+30
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Reformats file with clang-formatAndrey Oleynik2016-07-141-259/+259
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Re-formats file with clang-formatAndrey Oleynik2016-07-141-67/+65
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Adds mocks for restored interfacesAndrey Oleynik2016-07-131-0/+6
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Reworks implementation, makes logic more clearAndrey Oleynik2016-07-132-62/+132
| | | | | | | | | | | | | | | | | | | | Relates-to: APPLINK-23987
| | * | | Fixes LAUNCH_APP flowAndrey Oleynik2016-07-131-23/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On invoking of SDL.ActivateApp SDL has to search through the registered and to-be-regisetered apps in order to find necessary app to launch. In case of registered app SDL has just to start it. In case of to-be-registered app SDL has to send LAUNCH_APP request via foregrounded SDL4.0-enabled application. If there is no such app - request has to be sent via all registered SDL4.0-enabled application on the same device as application requested to be launched. Relates-to: APPLINK-23987
| | * | | Restores AM interfaces ocassionally removed beforeAndrey Oleynik2016-07-133-325/+373
| | |/ / | | | | | | | | | | | | Relates-to: APPLINK-23987
| * | | Merge pull request #693 from ↵Artem Nosach (GitHub)2016-07-187-40/+82
| |\ \ \ | | |_|/ | |/| | | | | | | | | | dtrunov/fix/SDL_crashes_if_execute_auto_smoke_test_during_active_video_streaming Fix core crash during streaming and execution smoke test.
| | * | Fix comments after reviewdtrunov2016-07-186-48/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed interface in hmi_capabilities.h, reworked loks for HMILanguageHandler. Related issue:[APPLINK-26397](https://adc.luxoft.com/jira/browse/APPLINK-26397)
| | * | Fix core crash during streaming and execution smoke test.dtrunov2016-07-139-24/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DCHECK appeared because application was unregestered during registration. Fix problem with unregistration application in HMILanguageHandler. Moved DCHECK from hmi_state because it posible if application might be unregistered during processing application in state_ctrl. Added DCHECK for checking app_id when SLD adds hmi state to application. Closes bug:[APPLINK-26397](https://adc.luxoft.com/jira/browse/APPLINK-26397)
| * | | Merge pull request #695 from ↵Aleksandr Galiuzov (GutHub)2016-07-142-70/+81
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Kozoriz/fix/SDL_dont_ignore_elements_without_mandatory_parameters_in_validation Add mandatory fields validation
| | * | | Add mandatory fields validationKozoriz2016-07-142-70/+81
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | In case when mandatory field omitted application in QUERY_APPS will be removed from array for prevent processing invalid app. Related task : APPLINK-25576
| * | | Merge pull request #687 from ↵Andriy Byzhynar (GitHub)2016-07-141-5/+3
| |\ \ \ | | |_|/ | |/| | | | | | | | | | okozlovlux/feature/SDL_fails_json_validation_in_case_json_file_contain_already_registered_app Change process of json validation
| | * | Resolve issue with coding styleOleksandr2016-07-122-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | Resolved issue with coding style Related to APPLINK-25408
| | * | Change process of json validationOleksandr2016-07-111-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case if json file contain already registered application SDL won't fail validation and will send UpdateAppList to HMI with registered applications + applications from query json Related to APPLINK-25408
| * | | Merge pull request #689 from dev-gh/fix/Fixes_dump_on_app_launch_requestAleksandr Galiuzov (GutHub)2016-07-130-0/+0
| |\ \ \ | | |_|/ | |/| | Fixes dump on SDL.ActivateApp call
| | * | Fixes dump on SDL.ActivateApp callAndrey Oleynik2016-07-121-0/+1
| | |/ | | | | | | | | | Relates-to: APPLINK-25446
| * | Merge pull request #683 from vlantonov/fix/Core_dump_unplug_USB_App_registeredAndriy Byzhynar (GitHub)2016-07-125-19/+23
| |\ \ | | | | | | | | Fix invalid memory access.
| | * | Fix invalid memory access.Vladislav Antonov2016-07-126-20/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed access to deleted fields in Timer and StreamerAdapter. Fixed uninitialized values in request_controller. Related Issue: APPLINK-25098
| * | | Merge pull request #690 from LuxoftAKutsan/fix/APPLINK-24905_DCHECK_resumptionAleksandr Galiuzov (GutHub)2016-07-121-1/+2
| |\ \ \ | | | | | | | | | | Fix crash on DCHECK in process SystemRequest(LAUNCH_APP)
| | * | | Fix style issues in release4.1.0Alexander Kutsan2016-07-121-1/+0
| | | | |
| | * | | Fix crash on DCHECK in process SystemRequest(LAUNCH_APP)Anton Hrytsevich2016-07-121-1/+2
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | After unsuccessful search application, sdl used to do nothing. Thats why on next code line in DCHECK by pointer to app crash SDL. Now, after unsuccessful search app, sdl sent hmi error code by timer and finish request. Closes-bug: [APPLINK-24414](https://adc.luxoft.com/jira/browse/APPLINK-24414)
| * | | Read endpoints services from database correctly (#688)Artem Nosach (GitHub)2016-07-121-5/+4
| |/ / | | | | | | | | | | | | | | | Read service field from endpoint table as string instead of integer because it stored as string Fixes: APPLINK-25363
| * | Merge pull request #681 from dev-gh/fix/Fixes_app_default_policies_settingAleksandr Galiuzov (GutHub)2016-07-112-17/+60
| |\ \ | | |/ | |/| Fixes saving of default assigned policy
| | * Updates unit tests to check default policy settingAndrey Oleynik2016-07-081-13/+46
| | | | | | | | | | | | Relates-to: APPLINK-25284