X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d9ee52e4f0fbe9a1ae00d0e66f9e6f0a07fa319f..457ccb7da5d147837110a6be85b7f2d041e1dcba:/lib/nav/core.cpp diff --git a/lib/nav/core.cpp b/lib/nav/core.cpp index 10d18e32..edc63c18 100644 --- a/lib/nav/core.cpp +++ b/lib/nav/core.cpp @@ -9,45 +9,13 @@ void eNavigation::serviceEvent(iPlayableService* service, int event) return; } - switch (event) - { - case iPlayableService::evEnd: - assert(m_playlist); /* we need to have a playlist */ - - /* at first, kill the running service */ - m_event(this, evStopService); - m_runningService = 0; - m_service_event_conn = 0; - /* our running main service stopped. identify what to do next. */ - - /* unless the playlist current position is invalid (because there was */ - /* playlist, for example when the service was engaged with playService */ - if (m_playlist->m_current != m_playlist->end()) - ++m_playlist->m_current; - - /* was the current service the last one? */ - if (m_playlist->m_current == m_playlist->end()) - { - m_event(this, evPlaylistDone); - break; - } - - /* there is another service in the playlist. play it. */ - RESULT res; - res = playService(*m_playlist->m_current); - if (res) - m_event(this, evPlayFailed); - break; - case iPlayableService::evStart: - m_event(this, evNewService); - break; - default: - break; - } + m_event(this, event); } RESULT eNavigation::playService(const eServiceReference &service) { + stopService(); + assert(m_servicehandler); RESULT res = m_servicehandler->play(service, m_runningService); if (m_runningService) @@ -58,25 +26,6 @@ RESULT eNavigation::playService(const eServiceReference &service) return res; } -RESULT eNavigation::enqueueService(const eServiceReference &service) -{ - assert(m_playlist); - /* check if we need to play after the service was enqueued. */ - int doplay = m_playlist->m_current == m_playlist->end(); - - /* add the service to the playlist. the playlist's m_current */ - /* points either to a service before the last or 'doplay' is set. */ - m_playlist->push_back(service); - - if (doplay) - { - m_playlist->m_current = m_playlist->end(); - --m_playlist->m_current; - return playService(*m_playlist->m_current); - } - return 0; -} - RESULT eNavigation::connectEvent(const Slot2 &event, ePtr &connection) { connection = new eConnection(this, m_event.connect(event)); @@ -89,14 +38,31 @@ RESULT eNavigation::getCurrentService(ePtr &service) return 0; } -RESULT eNavigation::getPlaylist(ePtr &playlist) +RESULT eNavigation::stopService(void) { - if (!m_playlist) - return -1; - playlist = m_playlist; + /* check if there is a running service... */ + if (!m_runningService) + return 1; + /* send stop event */ + m_event(this, iPlayableService::evEnd); + + m_runningService->stop(); + /* kill service. */ + m_runningService = 0; + m_service_event_conn = 0; return 0; } +RESULT eNavigation::recordService(const eServiceReference &ref, ePtr &service) +{ + assert(m_servicehandler); + RESULT res = m_servicehandler->record(ref, service); + eDebug("record: %d", res); + if (res) + service = 0; + return res; +} + RESULT eNavigation::pause(int dop) { if (!m_runningService) @@ -114,14 +80,11 @@ eNavigation::eNavigation(iServiceHandler *serviceHandler) { assert(serviceHandler); m_servicehandler = serviceHandler; - m_playlist = new ePlaylist; - - /* start with no current selection */ - m_playlist->m_current = m_playlist->end(); } eNavigation::~eNavigation() { + stopService(); } DEFINE_REF(eNavigation);