author | Eckhart Koeppen <eckhart.koppen@nokia.com> |
Thu, 08 Apr 2010 14:19:33 +0300 | |
branch | RCL_3 |
changeset 8 | 3f74d0d4af4c |
parent 4 | 3b1da2848fc7 |
permissions | -rw-r--r-- |
0 | 1 |
/* This file is part of the KDE project. |
2 |
||
3 |
Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 |
||
5 |
This library is free software: you can redistribute it and/or modify |
|
6 |
it under the terms of the GNU Lesser General Public License as published by |
|
7 |
the Free Software Foundation, either version 2.1 or 3 of the License. |
|
8 |
||
9 |
This library is distributed in the hope that it will be useful, |
|
10 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
GNU Lesser General Public License for more details. |
|
13 |
||
14 |
You should have received a copy of the GNU Lesser General Public License |
|
15 |
along with this library. If not, see <http://www.gnu.org/licenses/>. |
|
16 |
||
17 |
*/ |
|
18 |
||
19 |
#include <QStringList> |
|
20 |
#include <QtPlugin> |
|
21 |
||
22 |
#include <apgcli.h> // for RApaLsSession |
|
23 |
#include <apmrec.h> // for CDataTypeArray |
|
24 |
#include <apmstd.h> // for TDataType |
|
25 |
||
26 |
#include "abstractaudioeffect.h" |
|
27 |
#include "audiooutput.h" |
|
28 |
#include "audioplayer.h" |
|
29 |
#include "backend.h" |
|
30 |
#include "effectfactory.h" |
|
31 |
#include "mediaobject.h" |
|
32 |
#include "utils.h" |
|
33 |
#include "videowidget.h" |
|
34 |
||
35 |
QT_BEGIN_NAMESPACE |
|
36 |
||
37 |
using namespace Phonon; |
|
38 |
using namespace Phonon::MMF; |
|
39 |
||
40 |
/*! \class MMF::Backend |
|
41 |
\internal |
|
42 |
*/ |
|
43 |
||
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
44 |
Backend::Backend(QObject *parent) |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
45 |
: QObject(parent) |
8
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
46 |
#ifndef PHONON_MMF_VIDEO_SURFACES |
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
47 |
, m_ancestorMoveMonitor(new AncestorMoveMonitor(this)) |
8
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
48 |
#endif |
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
49 |
, m_effectFactory(new EffectFactory(this)) |
0 | 50 |
{ |
51 |
TRACE_CONTEXT(Backend::Backend, EBackend); |
|
52 |
TRACE_ENTRY_0(); |
|
53 |
||
54 |
setProperty("identifier", QLatin1String("phonon_mmf")); |
|
55 |
setProperty("backendName", QLatin1String("MMF")); |
|
56 |
setProperty("backendComment", QLatin1String("Backend using Symbian Multimedia Framework (MMF)")); |
|
57 |
setProperty("backendVersion", QLatin1String("0.1")); |
|
58 |
setProperty("backendWebsite", QLatin1String("http://qt.nokia.com/")); |
|
59 |
||
60 |
TRACE_EXIT_0(); |
|
61 |
} |
|
62 |
||
63 |
QObject *Backend::createObject(BackendInterface::Class c, QObject *parent, const QList<QVariant> &args) |
|
64 |
{ |
|
65 |
TRACE_CONTEXT(Backend::createObject, EBackend); |
|
66 |
TRACE_ENTRY("class %d", c); |
|
67 |
||
68 |
QObject* result = 0; |
|
69 |
||
70 |
switch (c) { |
|
71 |
case AudioOutputClass: |
|
72 |
result = new AudioOutput(this, parent); |
|
73 |
break; |
|
74 |
||
75 |
case MediaObjectClass: |
|
76 |
result = new MediaObject(parent); |
|
77 |
break; |
|
78 |
||
79 |
case VolumeFaderEffectClass: |
|
80 |
case VisualizationClass: |
|
81 |
case VideoDataOutputClass: |
|
82 |
case EffectClass: |
|
83 |
{ |
|
84 |
Q_ASSERT(args.count() == 1); |
|
85 |
Q_ASSERT(args.first().type() == QVariant::Int); |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
86 |
const EffectFactory::Type type = |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
87 |
static_cast<EffectFactory::Type>(args.first().toInt()); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
88 |
return m_effectFactory->createAudioEffect(type, parent); |
0 | 89 |
} |
8
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
90 |
|
0 | 91 |
case VideoWidgetClass: |
8
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
92 |
{ |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
93 |
VideoWidget *widget = new VideoWidget(qobject_cast<QWidget *>(parent)); |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
94 |
#ifndef PHONON_MMF_VIDEO_SURFACES |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
95 |
widget->setAncestorMoveMonitor(m_ancestorMoveMonitor.data()); |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
96 |
#endif |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
97 |
result = widget; |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
98 |
} |
0 | 99 |
break; |
100 |
||
101 |
default: |
|
102 |
TRACE_PANIC(InvalidBackendInterfaceClass); |
|
103 |
} |
|
104 |
||
105 |
TRACE_RETURN("0x%08x", result); |
|
106 |
} |
|
107 |
||
108 |
QList<int> Backend::objectDescriptionIndexes(ObjectDescriptionType type) const |
|
109 |
{ |
|
110 |
TRACE_CONTEXT(Backend::objectDescriptionIndexes, EAudioApi); |
|
111 |
TRACE_ENTRY_0(); |
|
112 |
QList<int> retval; |
|
113 |
||
114 |
switch(type) |
|
115 |
{ |
|
116 |
case EffectType: |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
117 |
retval.append(m_effectFactory->effectIndexes()); |
0 | 118 |
break; |
119 |
case AudioOutputDeviceType: |
|
120 |
// We only have one possible output device, but we need at least |
|
121 |
// one. |
|
122 |
retval.append(AudioOutput::AudioOutputDeviceID); |
|
123 |
break; |
|
124 |
default: |
|
125 |
; |
|
126 |
} |
|
127 |
||
128 |
TRACE_EXIT_0(); |
|
129 |
return retval; |
|
130 |
} |
|
131 |
||
132 |
QHash<QByteArray, QVariant> Backend::objectDescriptionProperties(ObjectDescriptionType type, int index) const |
|
133 |
{ |
|
134 |
TRACE_CONTEXT(Backend::connectNodes, EBackend); |
|
135 |
||
136 |
switch (type) { |
|
137 |
case EffectType: |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
138 |
return m_effectFactory->audioEffectDescriptions(EffectFactory::Type(index)); |
0 | 139 |
case AudioOutputDeviceType: |
140 |
return AudioOutput::audioOutputDescription(index); |
|
141 |
default: |
|
142 |
return QHash<QByteArray, QVariant>(); |
|
143 |
} |
|
144 |
} |
|
145 |
||
146 |
bool Backend::startConnectionChange(QSet<QObject *>) |
|
147 |
{ |
|
148 |
return true; |
|
149 |
} |
|
150 |
||
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
151 |
bool Backend::connectNodes(QObject *sourceObject, QObject *targetObject) |
0 | 152 |
{ |
153 |
TRACE_CONTEXT(Backend::connectNodes, EBackend); |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
154 |
TRACE_ENTRY("source 0x%08x target 0x%08x", sourceObject, targetObject); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
155 |
|
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
156 |
MediaNode *const source = qobject_cast<MediaNode *>(sourceObject); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
157 |
MediaNode *const target = qobject_cast<MediaNode *>(targetObject); |
0 | 158 |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
159 |
Q_ASSERT_X(source, Q_FUNC_INFO, "source is not a MediaNode"); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
160 |
Q_ASSERT_X(target, Q_FUNC_INFO, "target is not a MediaNode"); |
0 | 161 |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
162 |
return source->connectOutput(target); |
0 | 163 |
} |
164 |
||
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
165 |
bool Backend::disconnectNodes(QObject *sourceObject, QObject *targetObject) |
0 | 166 |
{ |
167 |
TRACE_CONTEXT(Backend::disconnectNodes, EBackend); |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
168 |
TRACE_ENTRY("source 0x%08x target 0x%08x", sourceObject, targetObject); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
169 |
|
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
170 |
MediaNode *const source = qobject_cast<MediaNode *>(sourceObject); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
171 |
MediaNode *const target = qobject_cast<MediaNode *>(targetObject); |
0 | 172 |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
173 |
Q_ASSERT_X(source, Q_FUNC_INFO, "source is not a MediaNode"); |
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
174 |
Q_ASSERT_X(target, Q_FUNC_INFO, "target is not a MediaNode"); |
0 | 175 |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
176 |
return source->disconnectOutput(target); |
0 | 177 |
} |
178 |
||
179 |
bool Backend::endConnectionChange(QSet<QObject *>) |
|
180 |
{ |
|
181 |
return true; |
|
182 |
} |
|
183 |
||
184 |
void getAvailableMimeTypesL(QStringList& result) |
|
185 |
{ |
|
186 |
RApaLsSession apaSession; |
|
187 |
User::LeaveIfError(apaSession.Connect()); |
|
188 |
CleanupClosePushL(apaSession); |
|
189 |
||
190 |
static const TInt DataTypeArrayGranularity = 8; |
|
191 |
CDataTypeArray* array = new(ELeave) CDataTypeArray(DataTypeArrayGranularity); |
|
192 |
CleanupStack::PushL(array); |
|
193 |
||
194 |
apaSession.GetSupportedDataTypesL(*array); |
|
195 |
||
196 |
for (TInt i = 0; i < array->Count(); ++i) { |
|
197 |
const TPtrC mimeType = array->At(i).Des(); |
|
198 |
const MediaType mediaType = Utils::mimeTypeToMediaType(mimeType); |
|
199 |
if (MediaTypeAudio == mediaType or MediaTypeVideo == mediaType) { |
|
200 |
result.append(qt_TDesC2QString(mimeType)); |
|
201 |
} |
|
202 |
} |
|
203 |
||
204 |
CleanupStack::PopAndDestroy(2); // apaSession, array |
|
205 |
} |
|
206 |
||
207 |
QStringList Backend::availableMimeTypes() const |
|
208 |
{ |
|
209 |
QStringList result; |
|
210 |
||
211 |
// There is no way to return an error from this function, so we just |
|
212 |
// have to trap and ignore exceptions... |
|
213 |
TRAP_IGNORE(getAvailableMimeTypesL(result)); |
|
214 |
||
215 |
result.sort(); |
|
216 |
||
217 |
return result; |
|
218 |
} |
|
219 |
||
220 |
Q_EXPORT_PLUGIN2(phonon_mmf, Phonon::MMF::Backend); |
|
221 |
||
222 |
QT_END_NAMESPACE |
|
223 |