From 617cad8421826891415efa74323d522f2739e85f Mon Sep 17 00:00:00 2001 From: fgerlits Date: Mon, 23 Oct 2006 14:19:12 +0000 Subject: [PATCH] fixed #1864 --- .../PlaylistExecutor/AudioPlayerInterface.h | 2 +- .../playlistExecutor/src/GstreamerPlayer.cxx | 2 +- .../playlistExecutor/src/GstreamerPlayer.h | 2 +- .../products/gLiveSupport/src/CuePlayer.cxx | 12 ++++---- .../gLiveSupport/src/GLiveSupport.cxx | 29 ++++++++++++++----- .../products/gLiveSupport/src/GLiveSupport.h | 9 +++--- .../gLiveSupport/src/LiveModeWindow.cxx | 8 ++--- 7 files changed, 39 insertions(+), 25 deletions(-) diff --git a/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h b/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h index 68e7e87cd..56079cccd 100644 --- a/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h +++ b/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h @@ -168,7 +168,7 @@ class AudioPlayerInterface * @see #open */ virtual void - close(void) throw () = 0; + close(void) throw (std::logic_error) = 0; /** * Get the length of the currently opened audio clip. diff --git a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx index 82e13c735..6406b07f0 100644 --- a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx +++ b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx @@ -452,7 +452,7 @@ GstreamerPlayer :: stop(void) throw (std::logic_error) * Close the currently opened audio file. *----------------------------------------------------------------------------*/ void -GstreamerPlayer :: close(void) throw () +GstreamerPlayer :: close(void) throw (std::logic_error) { if (isPlaying()) { stop(); diff --git a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h index 635a3667a..c9acc521e 100644 --- a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h +++ b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h @@ -335,7 +335,7 @@ class GstreamerPlayer : virtual public Configurable, * @see #open */ virtual void - close(void) throw (); + close(void) throw (std::logic_error); /** * Start playing. diff --git a/campcaster/src/products/gLiveSupport/src/CuePlayer.cxx b/campcaster/src/products/gLiveSupport/src/CuePlayer.cxx index 4bd7d6e09..457682a30 100644 --- a/campcaster/src/products/gLiveSupport/src/CuePlayer.cxx +++ b/campcaster/src/products/gLiveSupport/src/CuePlayer.cxx @@ -128,15 +128,15 @@ CuePlayer :: onPlayItem(void) throw () Ptr::Ref playable = (*iter)[modelColumns.playableColumn]; try { gLiveSupport->playCueAudio(playable); - } catch (std::logic_error &e) { + audioState = playingState; + remove(*playButton); + pack_end(*pauseButton, Gtk::PACK_SHRINK, 3); + pauseButton->show(); + gLiveSupport->runMainLoop(); + } catch (std::runtime_error &e) { std::cerr << "GLiveSupport::playCueAudio() error:" << std::endl << e.what() << std::endl; } - audioState = playingState; - remove(*playButton); - pack_end(*pauseButton, Gtk::PACK_SHRINK, 3); - pauseButton->show(); - gLiveSupport->runMainLoop(); } } diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx index 2310fc733..42a2c00c9 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx @@ -497,7 +497,7 @@ LiveSupport :: GLiveSupport :: GLiveSupport :: displayMessageWindow(Ptr::Ref message) throw () { - std::cerr << "gLiveSupport: " << *message; + std::cerr << "gLiveSupport: " << *message << std::endl; Ptr::Ref window(widgetFactory->createDialogWindow( message, @@ -1161,7 +1161,8 @@ GLiveSupport :: removeFromSchedule(Ptr::Ref scheduleEntryId) void LiveSupport :: GLiveSupport :: GLiveSupport :: playOutputAudio(Ptr::Ref playable) - throw (std::logic_error) + throw (std::logic_error, + std::runtime_error) { try { switch (playable->getType()) { @@ -1186,18 +1187,21 @@ GLiveSupport :: playOutputAudio(Ptr::Ref playable) eMsg->append("\n"); eMsg->append(e.what()); displayMessageWindow(eMsg); + throw std::runtime_error(e.what()); } catch (std::invalid_argument &e) { Ptr::Ref eMsg = getResourceUstring("audioErrorMsg"); eMsg->append("\n"); eMsg->append(e.what()); displayMessageWindow(eMsg); + throw std::runtime_error(e.what()); } catch (std::runtime_error &e) { Ptr::Ref eMsg = getResourceUstring("audioErrorMsg"); eMsg->append("\n"); eMsg->append(e.what()); displayMessageWindow(eMsg); + throw std::runtime_error(e.what()); } outputPlayerIsPaused = false; @@ -1251,12 +1255,17 @@ LiveSupport :: GLiveSupport :: GLiveSupport :: onStop(void) throw () { outputItemPlayingNow.reset(); - outputPlayer->close(); + try { + outputPlayer->close(); - Ptr::Ref playable = masterPanel->getNextItemToPlay(); - setNowPlaying(playable); - if (playable) { - playOutputAudio(playable); + Ptr::Ref playable = masterPanel->getNextItemToPlay(); + setNowPlaying(playable); + if (playable) { + playOutputAudio(playable); + } + } catch (std::logic_error) { + std::cerr << "logic_error caught in GLiveSupport::onStop()\n"; + std::exit(1); } } @@ -1267,7 +1276,8 @@ GLiveSupport :: onStop(void) throw () void LiveSupport :: GLiveSupport :: GLiveSupport :: playCueAudio(Ptr::Ref playable) - throw (std::logic_error) + throw (std::logic_error, + std::runtime_error) { if (cueItemPlayingNow) { stopCueAudio(); // stop the audio player and @@ -1296,18 +1306,21 @@ GLiveSupport :: playCueAudio(Ptr::Ref playable) eMsg->append("\n"); eMsg->append(e.what()); displayMessageWindow(eMsg); + throw std::runtime_error(e.what()); } catch (std::invalid_argument &e) { Ptr::Ref eMsg = getResourceUstring("audioErrorMsg"); eMsg->append("\n"); eMsg->append(e.what()); displayMessageWindow(eMsg); + throw std::runtime_error(e.what()); } catch (std::runtime_error &e) { Ptr::Ref eMsg = getResourceUstring("audioErrorMsg"); eMsg->append("\n"); eMsg->append(e.what()); displayMessageWindow(eMsg); + throw std::runtime_error(e.what()); } cuePlayerIsPaused = false; diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.h b/campcaster/src/products/gLiveSupport/src/GLiveSupport.h index 88cdcfe8c..d7776fa53 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.h +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.h @@ -853,10 +853,12 @@ class GLiveSupport : public LocalizedConfigurable, * * @param playable the Playable object to play. * @exception std::logic_error in case of audio player errors. + * @exception std::runtime_error in case of audio player errors. */ virtual void playOutputAudio(Ptr::Ref playable) - throw (std::logic_error); + throw (std::logic_error, + std::runtime_error); /** * Stop the output audio player. @@ -895,14 +897,13 @@ class GLiveSupport : public LocalizedConfigurable, * Play a Playable object using the cue audio player. * * @param playable the Playable object to play. - * @exception XmlRpcException in case of storage server errors. - * @exception std::invalid_argument in case of audio player errors. * @exception std::logic_error in case of audio player errors. * @exception std::runtime_error in case of audio player errors. */ virtual void playCueAudio(Ptr::Ref playable) - throw (std::logic_error); + throw (std::logic_error, + std::runtime_error); /** * Stop the cue audio player. diff --git a/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx b/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx index 21f625678..9eb4d4042 100644 --- a/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx +++ b/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx @@ -291,15 +291,15 @@ LiveModeWindow :: onOutputPlay(void) throw () if (iter) { Ptr::Ref playable = (*iter)[modelColumns.playableColumn]; - gLiveSupport->setNowPlaying(playable); - treeView->removeItem(iter); try { gLiveSupport->playOutputAudio(playable); - } catch (std::logic_error &e) { + gLiveSupport->setNowPlaying(playable); + treeView->removeItem(iter); + gLiveSupport->runMainLoop(); + } catch (std::runtime_error &e) { std::cerr << "cannot play on live mode output device: " << e.what() << std::endl; } - gLiveSupport->runMainLoop(); } }