/* This file is part of the KDE project Copyright (C) 2006-2008 Matthias Kretz This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) version 3, or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), Nokia Corporation (or its successors, if any) and the KDE Free Qt Foundation, which shall act as a proxy defined in Section 6 of version 3 of the license. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see . */ #include "objectdescription.h" #include "objectdescription_p.h" #include #include #include "factory_p.h" #include #include "backendinterface.h" #include "platformplugin.h" #include "pulsesupport.h" QT_BEGIN_NAMESPACE namespace Phonon { ObjectDescriptionData::ObjectDescriptionData(int index, const QHash &properties) : d(new ObjectDescriptionPrivate(index, properties)) { } ObjectDescriptionData::ObjectDescriptionData(ObjectDescriptionPrivate *dd) : d(dd) { } ObjectDescriptionData::~ObjectDescriptionData() { delete d; } bool ObjectDescriptionData::operator==(const ObjectDescriptionData &otherDescription) const { if (!isValid()) { return !otherDescription.isValid(); } if (!otherDescription.isValid()) { return false; } return *d == *otherDescription.d; } int ObjectDescriptionData::index() const { if (!isValid()) { return -1; } return d->index; } QString ObjectDescriptionData::name() const { if (!isValid()) { return QString(); } return d->name; } QString ObjectDescriptionData::description() const { if (!isValid()) { return QString(); } return d->description; } QVariant ObjectDescriptionData::property(const char *name) const { if (!isValid()) { return QVariant(); } return d->properties.value(name); } QList ObjectDescriptionData::propertyNames() const { if (!isValid()) { return QList(); } return d->properties.keys(); } bool ObjectDescriptionData::isValid() const { return d != 0; } ObjectDescriptionData *ObjectDescriptionData::fromIndex(ObjectDescriptionType type, int index) { bool is_audio_device = (AudioOutputDeviceType == type || AudioCaptureDeviceType == type); PulseSupport *pulse = PulseSupport::getInstance(); if (is_audio_device && pulse->isActive()) { QList indexes = pulse->objectDescriptionIndexes(type); if (indexes.contains(index)) { QHash properties = pulse->objectDescriptionProperties(type, index); return new ObjectDescriptionData(index, properties); } } else { BackendInterface *iface = qobject_cast(Factory::backend()); // prefer to get the ObjectDescriptionData from the platform plugin for audio devices #ifndef QT_NO_PHONON_PLATFORMPLUGIN if (is_audio_device) { PlatformPlugin *platformPlugin = Factory::platformPlugin(); if (platformPlugin) { QList indexes = platformPlugin->objectDescriptionIndexes(type); if (indexes.contains(index)) { QHash properties = platformPlugin->objectDescriptionProperties(type, index); return new ObjectDescriptionData(index, properties); } } } #endif //QT_NO_PHONON_PLATFORMPLUGIN if (iface) { QList indexes = iface->objectDescriptionIndexes(type); if (indexes.contains(index)) { QHash properties = iface->objectDescriptionProperties(type, index); return new ObjectDescriptionData(index, properties); } } } return new ObjectDescriptionData(0); // invalid } } //namespace Phonon QT_END_NAMESPACE // vim: sw=4 ts=4