summaryrefslogtreecommitdiff
path: root/src/components/media_manager
Commit message (Collapse)AuthorAgeFilesLines
* Changes after reviewKozoriz2016-03-314-4/+7
| | | | | | Fixed LastState tests SharedPtr changed to auto_ptr in some cases Corrected consts in some cases
* MediaManager tests correctivesKozoriz2016-03-315-54/+95
|
* Remove MediaManger singletoneKozoriz2016-03-3130-166/+239
| | | | + correctives after LastState, PolicyHandler singletons removing
* Correctives in MediaManger componentKozoriz2016-03-043-34/+13
| | | | | Correctives after removing ConnectionHandler, ProtocolHandler , HMIMessagehandler singletones
* Merge pull request #396 from ↵AGaliuzov2016-02-221-15/+25
|\ | | | | | | | | LuxoftSDL/hotfix/Move_media_pipe_creation_before_StartStream_command Move media pipe creation before StartStream command
| * Move media pipe creation before StartStream commandAsen Kirov2016-02-181-15/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, streaming pipe was not created when we start streamning service and send pipe URI to HMI in StartStream, but only when the streaming begins. So the HMI may try to open a non-existing pipe when it receives pipe URI. To fix this moved pipe creation from PipeStreamer::Connect() to PipeStreamer::PipeStreamer() and pipe unlink from PipeStreamer::Disconnect() to PipeStreamer::~PipeStreamer(). Thus the pipes are created when SDL starts and media manager is initialized. Fixes: APPLINK-20018
* | Update files dependent to TimerAndriy Kozoriz2016-02-171-1/+0
|/ | | | | | | | Removed all usage of TimerThread. Corrected headers. Corrected CMakeFiles. Related to : APPLINK-10003
* Merge branch 'master' into developagaliuzov2016-05-081-0/+1
|\
| * Fix build fail with disabled loggingboniaslasher2016-01-271-0/+1
| | | | | | | | | | | | Build fail due to missing link to map definition, which automatically added when logging enabled. Also removed c-style call.
* | Rename MessageHelperLibrary to MessageHelperAlexander Kutsan2016-01-191-1/+1
| |
* | Extract MessageHelper to separate libraryAlexander Kutsan2016-01-191-0/+1
| | | | | | | | | | | | | | For testing parts of ApplicationManager it is nessesary to mock static functions of MessageHelper. But to mock static fuctions of MessageHelper and avoid double definition it is nessesary to extract MessageHelper implementation from ApplicationManager library to separate library and link it if needed.
* | Removed redundant commaElisey Zamakhov2015-12-181-1/+1
| | | | | | | | Issues: APPLINK-19597, APPLINK-19603
* | Fixed wrong logger name for MediaManagerElisey Zamakhov2015-12-187-7/+7
| | | | | | | | Issues: APPLINK-19597, APPLINK-19603
* | Unit tests for media managerVeronica Veremjova2015-11-199-79/+341
| |
* | Check for empty queue in MessageQueue::pop() methodArtem Nosach2015-10-041-1/+5
| | | | | | | | | | | | | | | | Return bool value from MessageQueue::pop() method that shows if pop operation was successful. Add default constructors to all classes used as message for message queue. Closes-bug: APPLINK-14928
* | Fix review commentsArtem Nosach2015-10-0425-64/+81
| | | | | | | | Related-issues: APPLINK-15198
* | Remove unneeded files and change CMakeList according to new filesArtem Nosach2015-10-042-116/+8
| | | | | | | | Related-issues: APPLINK-15198
* | Use new FileStreamerAdapters in MediaManagerArtem Nosach2015-10-041-5/+4
| | | | | | | | Related-issues: APPLINK-15198
* | Inherit FileStreamerAdapter from StreamerAdapterArtem Nosach2015-10-046-0/+365
| | | | | | | | Related-issues: APPLINK-15198
* | Inherit PipeStreamerAdapter from StreamerAdapterArtem Nosach2015-10-046-260/+79
| | | | | | | | Related-issues: APPLINK-15198
* | Inherit SocketStreamerAdapter from StreamerAdapterArtem Nosach2015-10-046-351/+123
| | | | | | | | Related-issues: APPLINK-15198
* | Create streamer adapter base classArtem Nosach2015-10-042-0/+264
| | | | | | | | | | | | | | | | Create base class for all streamer adapters. Streamer adapter holds message queue for stream data messages and thread that sends theese messages to listeners. Related-issues: APPLINK-15198
* | Replace legacy _EXT/INFO macroses in sourceElisey Zamakhov2015-08-314-16/+16
|/ | | | | | | | Removed legacy macro with _EXT extention Replaced INFO macros to TRACE and debug remove symlinks Implements:APPLINK-15680
* Fixing of core dumps when executing IGNITION_OFF. Move 'Reset' to the ↵Oleg Krotenko2015-07-281-2/+2
| | | | 'StopActivity'. APPLINK-11950
* Fixing of core dumps when executing IGNITION_OFF. APPLINK-11950Oleg Krotenko2015-07-281-0/+2
|
* Remove redundant calls.Artem Nosach2015-06-231-6/+0
|
* Not a subject for review.Artem Nosach2015-04-231-6/+7
|
* Post review changes.Artem Nosach2015-04-233-23/+21
|
* Rework media manager.Artem Nosach2015-04-234-162/+83
|
* Add streaming suspended flag to media manager.Artem Nosach2015-04-232-20/+72
|
* Remove mic listener after using.Artem Nosach2015-04-231-0/+5
|
* Release resources in Recorder::threadMain().Artem Nosach2015-04-231-3/+15
|
* Delete record listener thread on StopActivity().Artem Nosach2015-04-231-1/+4
|
* Delete recorder thread on StopActivity().Artem Nosach2015-04-231-1/+4
|
* Post review changes.Artem Nosach2015-04-231-2/+2
|
* Rework OnMessageReceived() method.Artem Nosach2015-04-231-18/+19
|
* Merge remote-tracking branch 'origin/APPLINK-11717_Malformed_crash' into ↵Aleksandr Galiuzov2015-04-172-40/+0
|\ | | | | | | release/4.0.0
| * Add one test main.cc file with correct logger deinitializationElisey Zamakhov2015-03-182-40/+0
| |
* | APPLINK-8555 Common Implementation of State Controllerakutsan2015-04-151-1/+1
|/ | | | | | | | | | Add StateContrllerClass and HmiState Class. Create interfaces in AM Remove redudant function IN HMI_API.xml Conflicts: src/components/application_manager/include/application_manager/application.h src/components/application_manager/src/application_manager_impl.cc
* Bug Fixes and ImprovementsSynchronizationCommitJustin Dickow2015-02-2037-972/+1210
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Empty perform iteration request Fix type of name from string to enum SendLocation implemented on HTML5 HMI Fixed PI response on VR rejection due to high priority. Fix Apps not responsive/not able to start app/apps remain listed on SYNC even after USB disconnect Mobile API change and processing capabilities Change perform interaction request conditions. Fix SDL must always start 3sec timer before resuming the HMILevel of the app Remove redundant StartSavePersistentDataTimer() call. Change wrong predicate name to right. Added stream request handling feature Made streaming timeout in media manager configurable Put navi app in LIMITED in case of phone call Handling of audio state for applications Add stop streaming timeout into ini file Implement HMILevel resumption for job-1 Fix result code ABORTED when interrupts it by Voice recognition activation Fix incorrect value parameter unexpectedDisconnect in BCOnAppUnregistered Fix SDL send BC.OnAppUnregistered with "unexpectedDisconnect" set to "true" in case received from HMI OnExitAllApplications {"reason":"MASTER_RESET"} Fix Update ini file for iAP1 support Current working directory added to image path Fix helpers to make it workable with more then 2 parameters DCHECK() for ManageMobileCommand() replaced with log message because the latter returns false in some regular situations (e.g. TOO_MANY_PENDING_REQUESTS, see SDLAQ-CRS-10) Remove connection after closing. Signed-off-by: Justin Dickow <jjdickow@gmail.com>
* Latest internal release - last bulk merge before pull request and gitflow!?Justin Dickow2015-01-2629-701/+703
| | | | | | Smoke tested on Ubuntu 12.04 Signed-off-by: Justin Dickow <jjdickow@gmail.com>
* HmiStatus modifyJustin Dickow2015-01-2429-703/+701
| | | | | | | | | | | | | | | | HU DCHECK occurs during multisession registration Remove unused variable SIGSEGV handler added to flush logger queue FixIncomplete device list in UpdateDeviceList request Fix Memory leak on PutFile break Fix Thread and Timer Fix OnHmiStatus Notification Fix Url array sending for endpoints. Fix HashChange Fix SDL parse incoming JSON message with both members error and result as success message Fix Core crashes while connecting mobile app Signed-off-by: Justin Dickow <jjdickow@gmail.com>
* 3.10.1Justin Dickow2014-10-2716-102/+74
| | | | Signed-off-by: Justin Dickow <jjdickow@gmail.com>
* SDL 3.8!Justin Dickow2014-10-2037-0/+3798
Signed-off-by: Justin Dickow <jjdickow@gmail.com>