/* This file is part of the KDE project Copyright (C) 2009 Colin Guthrie 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 . */ #ifndef PHONON_PULSESUPPORT_H #define PHONON_PULSESUPPORT_H #include "phonon_export.h" #include "phononnamespace.h" #include "objectdescription.h" #include #include namespace Phonon { class PulseStream; class PHONON_EXPORT PulseSupport : public QObject { Q_OBJECT public: /** * \returns the instance pointer or null, see note. * \note If \param allowNull is \c true and the instance was already * shut down this function instead returns to indicate that * the instance was already shut down. * If \param allowNull is \c false and the instance was already * shut down a dummy instance is returned instead. This case * will furthermore result in a qWarning being printed, so * when possible and sensible null handling should be done * to prevent this. */ static PulseSupport *getInstanceOrNull(bool allowNull = false); /** This function behaves like getInstanceOrNull(false). \see getInstanceOrNull */ static PulseSupport *getInstance(); static void shutdown(); /** * Whether or not PulseSupport is actively able to intercept calls. * * This is: * - isUsable() * - isRequested() * - has been enabled by the backend * * @return \c true if usable, requested and enabled */ bool isActive(); /** * Whether or not pulseaudio is used. This does not mean it is * meant to intercept calls meant for the backend. It simply * indicates that the backend is using pulseaudio. * * This is: * - isUsable() * - isRequested() * * @return \c true if pulesaudio can be used, \c false otherwise * * @since 4.9.0 */ bool isUsed(); /** * Whether or not pulseaudio can be used. * * This is * - pulseaudiod is running * - pulseaudiod can be connected to * * @return \c true if pulseaudio can be used */ bool isUsable() const; /** * Whether or not the backend has requested that it wants to use * pulseaudio. This does *not* mean the backend wants pulseaudio * support to intercept calls. * * @return \c true if the backend has requested to use pulseaudio. * * @since 4.9.0 */ bool isRequested() const; /** * Backends can use this to request pulseaudio usage, without * enabling the interception. * * @see enable for requesting pulseaudio and forcing interception * * @param requested whether or not the backend would like the * frontend to use pulseaudio (e.g. list devices) * * @since 4.9.0 */ void request(bool requested); /** * Enable pulse support. This implies a backend request. * @param enabled */ void enable(bool enabled = true); QList objectDescriptionIndexes(ObjectDescriptionType type) const; QHash objectDescriptionProperties(ObjectDescriptionType type, int index) const; QList objectIndexesByCategory(ObjectDescriptionType type, Category category) const; QList objectIndexesByCategory(ObjectDescriptionType type, CaptureCategory category) const; void setOutputDevicePriorityForCategory(Category category, QList order); void setCaptureDevicePriorityForCategory(CaptureCategory category, QList order); PHONON_DEPRECATED void setCaptureDevicePriorityForCategory(Category category, QList order); PulseStream *registerOutputStream(QString streamUuid, Category category); PulseStream *registerCaptureStream(QString streamUuid, CaptureCategory category); PHONON_DEPRECATED PulseStream *registerCaptureStream(QString streamUuid, Category category); /** * Whenever possible this function should be used to get Phonon * specific PulseAudio stream properties and set them on specific * streams. When precisely setting them per stream is not possible * the environment setup function PulseSupport::setupStreamEnvironment * should be called as close to stream creation as possible. The * more time passes between setup and stream creation the more * likely race conditions between setup of more than one AudioOutput * will appear. * * \param streamUuid the AudioOutputs' stream UUID set by the frontend through * AudioOutputInterface47::setStreamUuid * * \returns a hash of all properties set by setupStreamEnvironment * * \see setupStreamEnvironment * \since 4.7.0 */ QHash streamProperties(QString streamUuid) const; /** * Sets PulseAudio override properties in the process' environment. * Manually setting the properties on a per-stream basis is * preferred as environment overrides are subject to race conditions * when creating more than one stream around the same time. * * \param streamUuid the AudioOutputs' stream UUID set by the frontend * through AudioOutputInterface47::setStreamUuid * * \see streamProperties * \since 4.7.0 */ void setupStreamEnvironment(QString streamUuid); void emitObjectDescriptionChanged(ObjectDescriptionType); bool setOutputName(QString streamUuid, QString name); bool setOutputDevice(QString streamUuid, int device); bool setOutputVolume(QString streamUuid, qreal volume); bool setOutputMute(QString streamUuid, bool mute); bool setCaptureDevice(QString streamUuid, int device); // NB Capture Volume/Mute not set until PA supports per-source-output volumes/mutes // or phonon supports capture properly... which ever comes first. void clearStreamCache(QString streamUuid); static void debug(); public Q_SLOTS: void connectToDaemon(); Q_SIGNALS: void objectDescriptionChanged(ObjectDescriptionType); private: PulseSupport(); ~PulseSupport() override; bool mEnabled; bool m_requested; }; } // namespace Phonon #endif // PHONON_PULSESUPPORT_H