1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
/***************************************************************************
* Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "audioplayer.h"
#include "audioplayer_p.h"
// qt/kde includes
#include <qbuffer.h>
#include <qdir.h>
#include <kdebug.h>
#include <krandom.h>
#include <Phonon/Path>
#include <phonon/audiooutput.h>
#include <phonon/abstractmediastream.h>
#include <phonon/mediaobject.h>
// local includes
#include "action.h"
#include "debug_p.h"
#include "sound.h"
using namespace Okular;
// helper class used to store info about a sound to be played
class SoundInfo
{
public:
explicit SoundInfo( const Sound * s = 0, const SoundAction * ls = 0 )
: sound( s ), volume( 0.5 ), synchronous( false ), repeat( false ),
mix( false )
{
if ( ls )
{
volume = ls->volume();
synchronous = ls->synchronous();
repeat = ls->repeat();
mix = ls->mix();
}
}
const Sound * sound;
double volume;
bool synchronous;
bool repeat;
bool mix;
};
class PlayData
{
public:
PlayData()
: m_mediaobject( 0 ), m_output( 0 ), m_buffer( 0 )
{
}
void play()
{
if ( m_buffer )
{
m_buffer->open( QIODevice::ReadOnly );
}
m_mediaobject->play();
}
~PlayData()
{
m_mediaobject->stop();
delete m_mediaobject;
delete m_output;
delete m_buffer;
}
Phonon::MediaObject * m_mediaobject;
Phonon::AudioOutput * m_output;
QBuffer * m_buffer;
SoundInfo m_info;
};
AudioPlayerPrivate::AudioPlayerPrivate( AudioPlayer * qq )
: q( qq )
{
QObject::connect( &m_mapper, SIGNAL(mapped(int)), q, SLOT(finished(int)) );
}
AudioPlayerPrivate::~AudioPlayerPrivate()
{
stopPlayings();
}
int AudioPlayerPrivate::newId() const
{
int newid = 0;
QHash< int, PlayData * >::const_iterator it;
QHash< int, PlayData * >::const_iterator itEnd = m_playing.constEnd();
do
{
newid = KRandom::random();
it = m_playing.constFind( newid );
} while ( it != itEnd );
return newid;
}
bool AudioPlayerPrivate::play( const SoundInfo& si )
{
kDebug() ;
PlayData * data = new PlayData();
data->m_output = new Phonon::AudioOutput( Phonon::NotificationCategory );
data->m_output->setVolume( si.volume );
data->m_mediaobject = new Phonon::MediaObject();
Phonon::createPath(data->m_mediaobject, data->m_output);
data->m_info = si;
bool valid = false;
switch ( si.sound->soundType() )
{
case Sound::External:
{
QString url = si.sound->url();
kDebug(OkularDebug) << "External," << url;
if ( !url.isEmpty() )
{
int newid = newId();
m_mapper.setMapping( data->m_mediaobject, newid );
KUrl newurl;
if ( KUrl::isRelativeUrl( url ) )
{
newurl = m_currentDocument;
newurl.setFileName( url );
}
else
{
newurl = url;
}
data->m_mediaobject->setCurrentSource( newurl );
m_playing.insert( newid, data );
valid = true;
}
break;
}
case Sound::Embedded:
{
QByteArray filedata = si.sound->data();
kDebug(OkularDebug) << "Embedded," << filedata.length();
if ( !filedata.isEmpty() )
{
kDebug(OkularDebug) << "Mediaobject:" << data->m_mediaobject;
int newid = newId();
m_mapper.setMapping( data->m_mediaobject, newid );
data->m_buffer = new QBuffer();
data->m_buffer->setData( filedata );
data->m_mediaobject->setCurrentSource( Phonon::MediaSource( data->m_buffer ) );
m_playing.insert( newid, data );
valid = true;
}
break;
}
}
if ( !valid )
{
delete data;
data = 0;
}
if ( data )
{
QObject::connect( data->m_mediaobject, SIGNAL(finished()), &m_mapper, SLOT(map()) );
kDebug(OkularDebug) << "PLAY";
data->play();
}
return valid;
}
void AudioPlayerPrivate::stopPlayings()
{
qDeleteAll( m_playing );
m_playing.clear();
}
void AudioPlayerPrivate::finished( int id )
{
QHash< int, PlayData * >::iterator it = m_playing.find( id );
if ( it == m_playing.end() )
return;
SoundInfo si = it.value()->m_info;
// if the sound must be repeated indefinitely, then start the playback
// again, otherwise destroy the PlayData as it's no more useful
if ( si.repeat )
{
it.value()->play();
}
else
{
m_mapper.removeMappings( it.value()->m_mediaobject );
delete it.value();
m_playing.erase( it );
}
kDebug(OkularDebug) << "finished," << m_playing.count();
}
AudioPlayer::AudioPlayer()
: QObject(), d( new AudioPlayerPrivate( this ) )
{
}
AudioPlayer::~AudioPlayer()
{
delete d;
}
AudioPlayer * AudioPlayer::instance()
{
static AudioPlayer ap;
return ≈
}
void AudioPlayer::playSound( const Sound * sound, const SoundAction * linksound )
{
// we can't play null pointers ;)
if ( !sound )
return;
// we don't play external sounds for remote documents
if ( sound->soundType() == Sound::External && !d->m_currentDocument.isLocalFile() )
return;
kDebug() ;
SoundInfo si( sound, linksound );
// if the mix flag of the new sound is false, then the currently playing
// sounds must be stopped.
if ( !si.mix )
d->stopPlayings();
d->play( si );
}
void AudioPlayer::stopPlaybacks()
{
d->stopPlayings();
}
#include "audioplayer.moc"
|