summaryrefslogtreecommitdiff
path: root/backends/pulse/pulse-sink-input.c
blob: 54cd3b320a754f6307a918df42769e4ab79e5f6e (plain)
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
/*
 * Copyright (C) 2014 Michal Ratajsky <michal.ratajsky@gmail.com>
 *
 * 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 of the licence, or (at your option) any later version.
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

#include <string.h>
#include <glib.h>
#include <glib-object.h>

#include <libmatemixer/matemixer-client-stream.h>
#include <libmatemixer/matemixer-enums.h>
#include <libmatemixer/matemixer-stream.h>

#include <pulse/pulseaudio.h>

#include "pulse-connection.h"
#include "pulse-client-stream.h"
#include "pulse-helpers.h"
#include "pulse-monitor.h"
#include "pulse-sink.h"
#include "pulse-sink-input.h"
#include "pulse-stream.h"

static void pulse_sink_input_class_init (PulseSinkInputClass *klass);
static void pulse_sink_input_init       (PulseSinkInput      *input);

G_DEFINE_TYPE (PulseSinkInput, pulse_sink_input, PULSE_TYPE_CLIENT_STREAM);

static void          pulse_sink_input_reload         (PulseStream       *pstream);

static gboolean      pulse_sink_input_set_mute       (PulseStream       *pstream,
                                                      gboolean           mute);
static gboolean      pulse_sink_input_set_volume     (PulseStream       *pstream,
                                                      pa_cvolume        *cvolume);
static gboolean      pulse_sink_input_set_parent     (PulseClientStream *pclient,
                                                      PulseStream       *parent);
static gboolean      pulse_sink_input_remove         (PulseClientStream *pclient);
static PulseMonitor *pulse_sink_input_create_monitor (PulseStream       *pstream);

static void
pulse_sink_input_class_init (PulseSinkInputClass *klass)
{
    PulseStreamClass       *stream_class;
    PulseClientStreamClass *client_class;

    stream_class = PULSE_STREAM_CLASS (klass);

    stream_class->reload         = pulse_sink_input_reload;
    stream_class->set_mute       = pulse_sink_input_set_mute;
    stream_class->set_volume     = pulse_sink_input_set_volume;
    stream_class->create_monitor = pulse_sink_input_create_monitor;

    client_class = PULSE_CLIENT_STREAM_CLASS (klass);

    client_class->set_parent     = pulse_sink_input_set_parent;
    client_class->remove         = pulse_sink_input_remove;
}

static void
pulse_sink_input_init (PulseSinkInput *input)
{
}

PulseStream *
pulse_sink_input_new (PulseConnection          *connection,
                      const pa_sink_input_info *info,
                      PulseStream              *parent)
{
    PulseSinkInput *input;

    g_return_val_if_fail (PULSE_IS_CONNECTION (connection), NULL);
    g_return_val_if_fail (info != NULL, NULL);

    /* Consider the sink input index as unchanging parameter */
    input = g_object_new (PULSE_TYPE_SINK_INPUT,
                          "connection", connection,
                          "index", info->index,
                          NULL);

    /* Other data may change at any time, so let's make a use of our update function */
    pulse_sink_input_update (PULSE_STREAM (input), info, parent);

    return PULSE_STREAM (input);
}

gboolean
pulse_sink_input_update (PulseStream              *pstream,
                         const pa_sink_input_info *info,
                         PulseStream              *parent)
{
    MateMixerStreamFlags flags = MATE_MIXER_STREAM_OUTPUT |
                                 MATE_MIXER_STREAM_CLIENT |
                                 MATE_MIXER_STREAM_HAS_MUTE |
                                 MATE_MIXER_STREAM_HAS_MONITOR;
    PulseClientStream   *pclient;
    const gchar         *prop;
    const gchar         *description = NULL;
    gchar               *name;

    g_return_val_if_fail (PULSE_IS_SINK_INPUT (pstream), FALSE);
    g_return_val_if_fail (info != NULL, FALSE);

    pclient = PULSE_CLIENT_STREAM (pstream);

    /* Let all the information update before emitting notify signals */
    g_object_freeze_notify (G_OBJECT (pstream));

    /* Many mixer applications query the Pulse client list and use the client
     * name here, but we use the name only as an identifier, so let's avoid
     * this unnecessary overhead and use a custom name.
     * Also make sure to make the name unique by including the PulseAudio index. */
    name = g_strdup_printf ("pulse-stream-client-output-%lu", (gulong) info->index);

    pulse_stream_update_name (pstream, name);
    g_free (name);

    prop = pa_proplist_gets (info->proplist, PA_PROP_MEDIA_ROLE);
    if (prop != NULL) {
        MateMixerClientStreamRole role = pulse_convert_media_role_name (prop);

        if (role == MATE_MIXER_CLIENT_STREAM_ROLE_EVENT) {
            /* The event description seems to provide much better readable
             * description for event streams */
            prop = pa_proplist_gets (info->proplist, PA_PROP_EVENT_DESCRIPTION);

            if (G_LIKELY (prop != NULL))
                description = prop;
        }
        pulse_client_stream_update_role (pclient, role);
    } else
        pulse_client_stream_update_role (pclient, MATE_MIXER_CLIENT_STREAM_ROLE_NONE);

    if (description == NULL)
        description = info->name;

    pulse_stream_update_description (pstream, description);
    pulse_stream_update_mute (pstream, info->mute ? TRUE : FALSE);

    if (info->client != PA_INVALID_INDEX)
        pulse_client_stream_update_flags (pclient, MATE_MIXER_CLIENT_STREAM_APPLICATION);
    else
        pulse_client_stream_update_flags (pclient, MATE_MIXER_CLIENT_STREAM_NO_FLAGS);

    if (G_LIKELY (parent != NULL)) {
        if (pulse_sink_get_monitor_index (parent) != PA_INVALID_INDEX)
            flags |= MATE_MIXER_STREAM_HAS_MONITOR;

        pulse_client_stream_update_parent (pclient, MATE_MIXER_STREAM (parent));
    } else
        pulse_client_stream_update_parent (pclient, NULL);

#if PA_CHECK_VERSION(1, 0, 0)
    if (info->has_volume) {
        flags |=
            MATE_MIXER_STREAM_HAS_VOLUME |
            MATE_MIXER_STREAM_HAS_DECIBEL_VOLUME;

        if (info->volume_writable)
            flags |= MATE_MIXER_STREAM_CAN_SET_VOLUME;
    }

    /* Flags needed before volume */
    pulse_stream_update_flags (pstream, flags);
    pulse_stream_update_channel_map (pstream, &info->channel_map);

    if (info->has_volume)
        pulse_stream_update_volume (pstream, &info->volume, 0);
    else
        pulse_stream_update_volume (pstream, NULL, 0);
#else
    /* Pre-1.0 PulseAudio does not include the has_volume and volume_writable
     * fields, but does include the volume info, so let's give it a try */
    flags |=
        MATE_MIXER_STREAM_HAS_VOLUME |
        MATE_MIXER_STREAM_HAS_DECIBEL_VOLUME |
        MATE_MIXER_STREAM_CAN_SET_VOLUME;

    /* Flags needed before volume */
    pulse_stream_update_flags (pstream, flags);
    pulse_stream_update_channel_map (pstream, &info->channel_map);

    pulse_stream_update_volume (pstream, &info->volume, 0);
#endif

    prop = pa_proplist_gets (info->proplist, PA_PROP_APPLICATION_NAME);
    if (prop != NULL)
        pulse_client_stream_update_app_name (pclient, prop);

    prop = pa_proplist_gets (info->proplist, PA_PROP_APPLICATION_ID);
    if (prop != NULL)
        pulse_client_stream_update_app_id (pclient, prop);

    prop = pa_proplist_gets (info->proplist, PA_PROP_APPLICATION_VERSION);
    if (prop != NULL)
        pulse_client_stream_update_app_version (pclient, prop);

    prop = pa_proplist_gets (info->proplist, PA_PROP_APPLICATION_ICON_NAME);
    if (prop != NULL)
        pulse_client_stream_update_app_icon (pclient, prop);

    // XXX needs to fix monitor if parent changes

    g_object_thaw_notify (G_OBJECT (pstream));
    return TRUE;
}

static void
pulse_sink_input_reload (PulseStream *pstream)
{
    g_return_if_fail (PULSE_IS_SINK_INPUT (pstream));

    pulse_connection_load_sink_input_info (pulse_stream_get_connection (pstream),
                                           pulse_stream_get_index (pstream));
}

static gboolean
pulse_sink_input_set_mute (PulseStream *pstream, gboolean mute)
{
    g_return_val_if_fail (PULSE_IS_SINK_INPUT (pstream), FALSE);

    return pulse_connection_set_sink_input_mute (pulse_stream_get_connection (pstream),
                                                 pulse_stream_get_index (pstream),
                                                 mute);
}

static gboolean
pulse_sink_input_set_volume (PulseStream *pstream, pa_cvolume *cvolume)
{
    g_return_val_if_fail (PULSE_IS_SINK_INPUT (pstream), FALSE);
    g_return_val_if_fail (cvolume != NULL, FALSE);

    return pulse_connection_set_sink_input_volume (pulse_stream_get_connection (pstream),
                                                   pulse_stream_get_index (pstream),
                                                   cvolume);
}

static gboolean
pulse_sink_input_set_parent (PulseClientStream *pclient, PulseStream *parent)
{
    PulseStream *pstream;

    g_return_val_if_fail (PULSE_IS_SINK_INPUT (pclient), FALSE);

    if (!PULSE_IS_SINK (parent)) {
        g_warning ("Could not change stream parent to %s: not a parent output stream",
                   mate_mixer_stream_get_name (MATE_MIXER_STREAM (parent)));
        return FALSE;
    }

    pstream = PULSE_STREAM (pclient);

    return pulse_connection_move_sink_input (pulse_stream_get_connection (pstream),
                                             pulse_stream_get_index (pstream),
                                             pulse_stream_get_index (parent));
}

static gboolean
pulse_sink_input_remove (PulseClientStream *pclient)
{
    PulseStream *pstream;

    g_return_val_if_fail (PULSE_IS_SINK_INPUT (pclient), FALSE);

    pstream = PULSE_STREAM (pclient);

    return pulse_connection_kill_sink_input (pulse_stream_get_connection (pstream),
                                             pulse_stream_get_index (pstream));
}

static PulseMonitor *
pulse_sink_input_create_monitor (PulseStream *pstream)
{
    MateMixerStream *parent;
    guint32          index;

    g_return_val_if_fail (PULSE_IS_SINK_INPUT (pstream), NULL);

    parent = mate_mixer_client_stream_get_parent (MATE_MIXER_CLIENT_STREAM (pstream));
    if (G_UNLIKELY (parent == NULL)) {
        g_debug ("Not creating monitor for client stream %s as it is not available",
                 mate_mixer_stream_get_name (MATE_MIXER_STREAM (pstream)));
        return NULL;
    }

    index = pulse_sink_get_monitor_index (PULSE_STREAM (parent));

    if (G_UNLIKELY (index == PA_INVALID_INDEX)) {
        g_debug ("Not creating monitor for client stream %s as it is not available",
                 mate_mixer_stream_get_name (MATE_MIXER_STREAM (pstream)));
        return NULL;
    }

    return pulse_connection_create_monitor (pulse_stream_get_connection (pstream),
                                            index,
                                            pulse_stream_get_index (pstream));
}