summaryrefslogtreecommitdiff
path: root/src/components/include
Commit message (Collapse)AuthorAgeFilesLines
* Fix info message param for different disallowed param casesAKalinich-Luxoft2018-01-261-1/+2
| | | | | | | | Added generating of info message depending on check permissions result: - for disallowed rpc - for all disallowed params in rpc - for partially disallowed params in rpc
* Remove redundant functionalityAndriy Byzhynar2018-01-221-1/+12
|
* Replace deprecation comments with DEPRECATED macroAndriy Byzhynar2018-01-186-43/+40
|
* Replace pragma with header guardsAndriy Byzhynar2018-01-183-1/+22
| | | | | | | Replaced #pragma once usage with header guards Added wrappers for deprecated functions Fixed related unit tests Fixed coding style in places related to code chages
* Fixes coding styleAndrey Oleynik (GitHub)2018-01-188-15/+22
|
* Updates mocks and unit tests after prior commitAndrey Oleynik (GitHub)2018-01-188-4/+19
| | | | | | Fixes mock classes interfaces, unit tests and build after changes related to making iAP2 switching triggered externally and using of Bluetooth MAC/USB serial instead of UUID for internal device management.
* Changes iAP2 Bluetooth to USB switching flowAndrey Oleynik (GitHub)2018-01-1810-7/+74
| | | | | | | | | | | These changes update switching flow so now instead of automatic switching start in case of same UUID is detected SDL will wait for external signal from the system to start this flow. Also due to UUID is reliable only while device remains connected (at least on certain systems) SDL now uses Bluetooth MAC and USB serial to manage devices and UUID is used only for detection of devices able to switch their transports. Currently only iAP2 Bluetooth to USB support is implemented.
* Fixes handling of way points un/subscription for transport switch caseAndrey Oleynik (GitHub)2018-01-182-0/+32
| | | | | | In case app_id is used for way points subscription it being invalidated on transport switch and SDL can't unsubscribe same application after switch is done.
* Renames interfaces for consistencyAndrey Oleynik (GitHub)2018-01-185-8/+8
|
* Initial implementation of holding commands for switching appsAndrey Oleynik (GitHub)2018-01-182-0/+9
|
* Moves app data recall logic out of ApplicationManagerAndrey Oleynik (GitHub)2018-01-182-10/+0
|
* Initial implementation of resumption during switchingAndrey Oleynik (GitHub)2018-01-182-0/+10
|
* Removes odd interface, updates TM unit testsAndrey Oleynik (GitHub)2018-01-181-1/+0
|
* Reverts deprecated interfacesAndrey Oleynik (GitHub)2018-01-187-2/+96
|
* Adds descriptions, removes unused codeAndrey Oleynik (GitHub)2018-01-1810-41/+36
|
* Updates mocks and tests, makes code buildable with tests enabledAndrey Oleynik (GitHub)2018-01-188-3/+23
|
* Adds main logic and related bugfixes for transport switchingAndrey Oleynik (GitHub)2018-01-1812-22/+126
|
* Add DEPRECATED macro, and fix resulting deprecated warningsjacobkeeler2017-12-043-7/+39
|
* Use VehicleDataType from MOBILE APi xml imstead of hardcoded valuesAlexander Kutsan2017-11-273-76/+3
| | | | | | Delete include of application_manager/vehicle_info_data.h Fix unit tests
* Add `remoteControl` to HMICapability struct in Mobile APIfix/remote_control_supportedJacob Keeler2017-09-261-0/+14
|
* Merge pull request #1620 from AByzhynar/fix/FixFactoryDefaultsJacob Keeler2017-09-072-0/+2
|\ | | | | Clear persistent data of all registered applications after FACTORY_DEFAULTS and MASTER_RESET
| * Fix SDL behavior in case of MASTER_RESET & FACTORY_DEFAULTSVeronica Veremjova2017-06-212-0/+2
| | | | | | | | | | | | | | | | | | | | | | After SDL receives - BC.OnExitAllApplications(MASTER_RESET) : SDL should clear stored persistent data of all registered applications and revert local PT to preloaded state. - BC.OnExitAllApplications(FACTORY_DEFAULTS): SDL should clear stored persistent data of all registered applications and remove all user consents from local PT.
* | Add const and description to some methods of PolicyHandlerSergey Levchenko (GitHub)2017-09-071-0/+10
| |
* | Add missed descriptionsAlexander Kutsan2017-09-062-0/+24
| |
* | Merge pull request #253 from ↵Alexander Kutsan (GitHub)2017-08-304-103/+231
|\ \ | | | | | | | | | | | | AKalinich-Luxoft/fix/fix_missing_methods_description Add/update missing functions and fields description
| * | Added/updated description in PolicyManager and UsageStatistics classes for ↵AKalinich-Luxoft2017-08-302-50/+116
| | | | | | | | | | | | policy regular
| * | Added/updated description in PolicyManager and UsageStatistics classes for ↵AKalinich-Luxoft2017-08-302-53/+115
| | | | | | | | | | | | policy external
* | | Remove unused functionsAndriy Byzhynar2017-08-301-14/+0
|/ / | | | | | | | | Functions Compare() were removed as redundant due to operator== presence Also these functions were nowhere used
* | Fix headerguards in changed filesAlexander Kutsan2017-08-2911-33/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used script : Bash (step1): git status | grep components | xargs python ~/tools/cpplint.py 2>&1 | grep "ifndef header guard has wrong styl" > /tmp/guards Python (step2): import os f=open("/tmp/guards") lines = f.readlines() f.close() for line in lines: line = line.split(":") f = line[0] l = line[1] g = line[3] g = g.strip() g = g[:g.find(' ')] os.system("sed -i 's/{}.*/{}/' {}".format("SRC_COMPONENTS", g , f))
* | Merge pull request #235 from LitvinenkoIra/fix/EXTERNAL_buildAlexander Kutsan (GitHub)2017-08-281-5/+0
|\ \ | | | | | | Fix SDL build with EXTERNAL_PROPRIETARY policy
| * | Fix EXTERNAL buildIra Lytvynenko2017-08-231-5/+0
| | |
* | | Merge pull request #240 from LuxoftAKutsan/fix/removed_not_used_codeAlexander Kutsan (GitHub)2017-08-282-15/+0
|\ \ \ | | | | | | | | Fix/removed not used code
| * | | Remove redundant not used functionsAlexander Kutsan2017-08-252-15/+0
| |/ /
* | | Add missed description for set_rc_capability functionAndriy Byzhynar2017-08-281-0/+5
|/ /
* | Redundant interface removedAlexander Kutsan2017-08-214-23/+0
| |
* | Replace CheckAccess with CheckModule for BaseCommandRequestAndrey Oleynik2017-08-216-47/+0
| | | | | | | | Removed unused code after that
* | Removes unused interfaces from AccessRemote classAndrey Oleynik2017-08-216-52/+0
| |
* | Removes unused intefaces from Service classAndrey Oleynik2017-08-216-52/+0
| |
* | Removes obsolete enable/disable interfaces from RCAndrey Oleynik2017-08-216-44/+0
| |
* | Removes primary device handling logicAndrey Oleynik2017-08-216-86/+0
| |
* | Removes passenger-related logic from policyAndrey Oleynik2017-08-217-35/+0
| |
* | Removes 'device rank' supportAndrey Oleynik2017-08-216-50/+0
| |
* | Removes unused functionality from CheckAccess() interfaceAndrey Oleynik2017-08-216-48/+33
| |
* | Fixes after rebasing on developAndrey Oleynik2017-08-172-6/+3
| |
* | Implementation of system capabilitiesAlexander Kutsan2017-08-161-17/+13
| |
* | Not related to RC changesAlexander Kutsan2017-08-166-10/+26
| | | | | | | | Remove segfault in transport manager tests
* | Implementation of Remote Control pluginAlexander Kutsan2017-08-1619-24/+1543
| | | | | | | | | | | | Stype changes after integration Fix policy handler remote unit tests
* | Arhitecture changes for support RC pluginAlexander Kutsan2017-08-163-1/+36
| |
* | Fix style issuesjacobkeeler2017-08-141-4/+4
| |
* | Add video related keys in bson_object_keys.ccSho Amano2017-08-111-0/+4
| |