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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
/***************************************************************************
* Copyright (C) 2006 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* 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. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <QIODevice>
#include <QFile>
#include <QApplication>
#include "decoderfactory.h"
#include "constants.h"
#include "streamreader.h"
#include "soundcore.h"
SoundCore *SoundCore::m_instance = 0;
SoundCore::SoundCore(QObject *parent)
: QObject(parent)
{
m_instance = this;
m_decoder = 0;
m_output = 0;
m_input = 0;
m_paused = FALSE;
m_useEQ = FALSE;
m_update = FALSE;
m_block = FALSE;
m_preamp = 0;
m_vis = 0;
m_parentWidget = 0;
for (int i = 1; i < 10; ++i)
m_bands[i] = 0;
m_error = NoError;
m_output = Output::create(this);
if (!m_output)
{
m_error = DecoderError;
qWarning("SoundCore: unable to create output");
}
connect(m_output, SIGNAL(stateChanged(const OutputState&)),
SIGNAL(outputStateChanged(const OutputState&)));
QList<OutputFactory*> *outputFactories = Output::outputFactories();
foreach(OutputFactory* of, *outputFactories)
qApp->installTranslator(of->createTranslator(this));
QList<DecoderFactory*> *decoderFactories = Decoder::decoderFactories();
foreach(DecoderFactory* df, *decoderFactories)
qApp->installTranslator(df->createTranslator(this));
}
SoundCore::~SoundCore()
{}
bool SoundCore::play(const QString &source)
{
stop();
if (source.isEmpty())
{
m_error = DecoderError;
return FALSE;
}
if (source.left(4) == "http")
{
m_input = new StreamReader(source, this);
connect(m_input, SIGNAL(titleChanged(const QString&)),
SIGNAL(titleChanged(const QString&)));
connect(m_input, SIGNAL(readyRead()),SLOT(decode()));
}
else
m_input = new QFile(source);
m_error = OutputError;
if (!m_output)
{
m_output = Output::create(this);
if (!m_output)
{
qWarning("SoundCore: unable to create output");
return FALSE;
}
connect(m_output, SIGNAL(stateChanged(const OutputState&)),
SIGNAL(outputStateChanged(const OutputState&)));
connect(m_input, SIGNAL(readyRead()),SLOT(read()));
}
if (! m_output->initialize())
return FALSE;
m_error = DecoderError;
Visual *visual = 0;
foreach(visual, m_visuals)
m_output->addVisual(visual);
VisualFactory* factory;
foreach(factory, *Visual::visualFactories())
{
if(Visual::isEnabled(factory))
m_output->addVisual(factory, m_parentWidget);
}
m_source = source;
if (source.left(4) != "http")
return decode();
else
qobject_cast<StreamReader *>(m_input)->downloadFile();
return TRUE;
}
uint SoundCore::error()
{
return m_error;
}
void SoundCore::stop()
{
if (m_block)
return;
m_paused = FALSE;
if (m_decoder && m_decoder->isRunning())
{
m_decoder->mutex()->lock ();
m_decoder->stop();
m_decoder->mutex()->unlock();
}
if (m_output)
{
m_output->mutex()->lock ();
m_output->stop();
m_output->mutex()->unlock();
}
// wake up threads
if (m_decoder)
{
m_decoder->mutex()->lock ();
m_decoder->cond()->wakeAll();
m_decoder->mutex()->unlock();
}
if (m_output)
{
m_output->recycler()->mutex()->lock ();
m_output->recycler()->cond()->wakeAll();
m_output->recycler()->mutex()->unlock();
}
if (m_decoder)
m_decoder->wait();
if (m_output)
m_output->wait();
if (m_output && m_output->isInitialized())
{
m_output->uninitialize();
}
//display->setTime(0);
if (m_decoder)
{
delete m_decoder;
m_decoder = 0;
}
if (m_input)
{
delete m_input;
m_input = 0;
}
// recreate output
if (m_update && m_output)
{
delete m_output;
m_output = 0;
m_update = FALSE;
m_output = Output::create(this);
if (!m_output)
{
qWarning("SoundCore: unable to create output");
}
VisualFactory* factory;
foreach(factory, *Visual::visualFactories())
{
if(Visual::isEnabled(factory))
m_output->addVisual(factory, m_parentWidget);
}
connect(m_output, SIGNAL(stateChanged(const OutputState&)),
SIGNAL(outputStateChanged(const OutputState&)));
}
}
void SoundCore::pause()
{
if (m_output)
{
m_output->mutex()->lock ();
m_output->pause();
m_output->mutex()->unlock();
}
// wake up threads
if (m_decoder)
{
m_paused = !m_paused;
m_decoder->mutex()->lock ();
m_decoder->cond()->wakeAll();
m_decoder->mutex()->unlock();
}
if (m_output)
{
m_output->recycler()->mutex()->lock ();
m_output->recycler()->cond()->wakeAll();
m_output->recycler()->mutex()->unlock();
}
}
void SoundCore::seek(int pos)
{
if (m_output && m_output->isRunning())
{
m_output->mutex()->lock ();
m_output->seek(pos);
m_output->mutex()->unlock();
if (m_decoder && m_decoder->isRunning())
{
m_decoder->mutex()->lock ();
m_decoder->seek(pos);
m_decoder->mutex()->unlock();
}
//m_output->mutex()->unlock();
}
}
int SoundCore::length()
{
if (m_decoder)
return int(m_decoder->lengthInSeconds());
return 0;
}
bool SoundCore::isInitialized()
{
if (m_decoder)
return TRUE;
return FALSE;
}
bool SoundCore::isPaused()
{
return m_paused;
}
void SoundCore::setEQ(int bands[10], const int &preamp)
{
for (int i = 0; i < 10; ++i)
m_bands[i] = bands[i];
m_preamp = preamp;
if (m_decoder)
{
m_decoder->mutex()->lock ();
m_decoder->setEQ(m_bands, m_preamp);
m_decoder->setEQEnabled(m_useEQ);
m_decoder->mutex()->unlock();
}
}
void SoundCore::setEQEnabled(bool on)
{
m_useEQ = on;
if (m_decoder)
{
m_decoder->mutex()->lock ();
m_decoder->setEQ(m_bands, m_preamp);
m_decoder->setEQEnabled(on);
m_decoder->mutex()->unlock();
}
}
void SoundCore::setVolume(int L, int R)
{
if (m_output)
m_output->setVolume(L,R);
}
void SoundCore::updateConfig()
{
m_update = TRUE;
if (isInitialized())
return;
stop();
}
void SoundCore::addVisualization(Visual *visual)
{
if (m_visuals.indexOf (visual) == -1)
{
m_visuals.append(visual);
if(m_output)
m_output->addVisual(visual);
}
}
bool SoundCore::decode()
{
if (! m_decoder)
{
m_block = TRUE;
qDebug ("SoundCore: creating decoder");
m_decoder = Decoder::create(this, m_source, m_input, m_output);
if (! m_decoder)
{
qWarning("SoundCore: unsupported fileformat");
m_block = FALSE;
stop();
emit decoderStateChanged(DecoderState(DecoderState::Error));
return FALSE;
}
qDebug ("ok");
m_decoder->setBlockSize(globalBlockSize);
connect(m_decoder, SIGNAL(stateChanged(const DecoderState&)),
SIGNAL(decoderStateChanged(const DecoderState&)));
setEQ(m_bands, m_preamp);
setEQEnabled(m_useEQ);
}
qDebug("SoundCore: decoder was created successfully");
if (m_decoder->initialize())
{
m_output->start();
m_decoder->start();
m_error = NoError;
m_block = FALSE;
return TRUE;
}
stop();
m_block = FALSE;
return FALSE;
}
void SoundCore::showVisualization(QWidget *parent)
{
if (!m_parentWidget)
{
m_parentWidget = parent;
if(!m_output)
return;
VisualFactory* factory;
foreach(factory, *Visual::visualFactories())
{
if(Visual::isEnabled(factory))
m_output->addVisual(factory, m_parentWidget);
}
}
}
void SoundCore::addVisual(VisualFactory *factory, QWidget *parent)
{
if(m_output)
m_output->addVisual(factory, parent);
else
Visual::setEnabled(factory, TRUE);
}
void SoundCore::removeVisual(VisualFactory *factory)
{
if(m_output)
m_output->removeVisual(factory);
else
Visual::setEnabled(factory, FALSE);
}
SoundCore* SoundCore::instance()
{
return m_instance;
}
|