summaryrefslogtreecommitdiff
path: root/libmatemixer/matemixer-stream.c
blob: 6bec2be670ee7b1933578bac8d230c033d1027a7 (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
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
/*
 * 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 <glib.h>
#include <glib-object.h>

#include "matemixer-device.h"
#include "matemixer-enums.h"
#include "matemixer-enum-types.h"
#include "matemixer-port.h"
#include "matemixer-stream.h"

/**
 * SECTION:matemixer-stream
 * @include: libmatemixer/matemixer.h
 */

enum {
    MONITOR_VALUE,
    N_SIGNALS
};

static guint signals[N_SIGNALS] = { 0, };

G_DEFINE_INTERFACE (MateMixerStream, mate_mixer_stream, G_TYPE_OBJECT)

static void
mate_mixer_stream_default_init (MateMixerStreamInterface *iface)
{
    g_object_interface_install_property (iface,
                                         g_param_spec_string ("name",
                                                              "Name",
                                                              "Name of the stream",
                                                              NULL,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_string ("description",
                                                              "Description",
                                                              "Description of the stream",
                                                              NULL,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_object ("device",
                                                              "Device",
                                                              "Device the stream belongs to",
                                                              MATE_MIXER_TYPE_DEVICE,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_flags ("flags",
                                                             "Flags",
                                                             "Capability flags of the stream",
                                                              MATE_MIXER_TYPE_STREAM_FLAGS,
                                                              MATE_MIXER_STREAM_NO_FLAGS,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_enum ("state",
                                                            "State",
                                                            "Current state of the stream",
                                                            MATE_MIXER_TYPE_STREAM_STATE,
                                                            MATE_MIXER_STREAM_STATE_UNKNOWN,
                                                            G_PARAM_READABLE |
                                                            G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_boolean ("mute",
                                                               "Mute",
                                                               "Mute state of the stream",
                                                               FALSE,
                                                               G_PARAM_READABLE |
                                                               G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_uint ("volume",
                                                            "Volume",
                                                            "Volume of the stream",
                                                            0,
                                                            G_MAXUINT,
                                                            0,
                                                            G_PARAM_READABLE |
                                                            G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_float ("balance",
                                                             "Balance",
                                                             "Balance value of the stream",
                                                             -1.0f,
                                                             1.0f,
                                                             0.0f,
                                                             G_PARAM_READABLE |
                                                             G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_float ("fade",
                                                             "Fade",
                                                             "Fade value of the stream",
                                                             -1.0f,
                                                             1.0f,
                                                             0.0f,
                                                             G_PARAM_READABLE |
                                                             G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_object ("active-port",
                                                              "Active port",
                                                              "The currently active port of the stream",
                                                              MATE_MIXER_TYPE_PORT,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    signals[MONITOR_VALUE] =
        g_signal_new ("monitor-value",
                      G_TYPE_FROM_INTERFACE (iface),
                      G_SIGNAL_RUN_LAST,
                      G_STRUCT_OFFSET (MateMixerStreamInterface, monitor_value),
                      NULL,
                      NULL,
                      g_cclosure_marshal_VOID__DOUBLE,
                      G_TYPE_NONE,
                      1,
                      G_TYPE_DOUBLE);
}

const gchar *
mate_mixer_stream_get_name (MateMixerStream *stream)
{
    return MATE_MIXER_STREAM_GET_INTERFACE (stream)->get_name (stream);
}

const gchar *
mate_mixer_stream_get_description (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), NULL);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_description)
        return iface->get_description (stream);

    return NULL;
}

MateMixerDevice *
mate_mixer_stream_get_device (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), NULL);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_device)
        return iface->get_device (stream);

    return NULL;
}

MateMixerStreamFlags
mate_mixer_stream_get_flags (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), MATE_MIXER_STREAM_NO_FLAGS);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_flags)
        return iface->get_flags (stream);

    return MATE_MIXER_STREAM_NO_FLAGS;
}

MateMixerStreamState
mate_mixer_stream_get_state (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), MATE_MIXER_STREAM_STATE_UNKNOWN);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_state)
        return iface->get_state (stream);

    return MATE_MIXER_STREAM_STATE_UNKNOWN;
}

gboolean
mate_mixer_stream_get_mute (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_mute)
        return iface->get_mute (stream);

    return FALSE;
}

gboolean
mate_mixer_stream_set_mute (MateMixerStream *stream, gboolean mute)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_mute)
        return iface->set_mute (stream, mute);

    return FALSE;
}

guint
mate_mixer_stream_get_volume (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_volume)
        return iface->get_volume (stream);

    return 0;
}

gboolean
mate_mixer_stream_set_volume (MateMixerStream *stream, guint volume)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_volume)
        return iface->set_volume (stream, volume);

    return FALSE;
}

gdouble
mate_mixer_stream_get_decibel (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), -MATE_MIXER_INFINITY);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_decibel)
        return iface->get_decibel (stream);

    return -MATE_MIXER_INFINITY;
}

gboolean
mate_mixer_stream_set_decibel (MateMixerStream *stream, gdouble decibel)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_decibel)
        return iface->set_decibel (stream, decibel);

    return FALSE;
}

guint
mate_mixer_stream_get_num_channels (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_num_channels)
        return iface->get_num_channels (stream);

    return 0;
}

MateMixerChannelPosition
mate_mixer_stream_get_channel_position (MateMixerStream *stream, guint channel)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), MATE_MIXER_CHANNEL_UNKNOWN);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_channel_position)
        return iface->get_channel_position (stream, channel);

    return MATE_MIXER_CHANNEL_UNKNOWN;
}

guint
mate_mixer_stream_get_channel_volume (MateMixerStream *stream, guint channel)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_channel_volume)
        return iface->get_channel_volume (stream, channel);

    return 0;
}

gboolean
mate_mixer_stream_set_channel_volume (MateMixerStream *stream,
                                      guint            channel,
                                      guint            volume)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_channel_volume)
        return iface->set_channel_volume (stream, channel, volume);

    return FALSE;
}

gdouble
mate_mixer_stream_get_channel_decibel (MateMixerStream *stream, guint channel)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), -MATE_MIXER_INFINITY);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_channel_decibel)
        return iface->get_channel_decibel (stream, channel);

    return -MATE_MIXER_INFINITY;
}

gboolean
mate_mixer_stream_set_channel_decibel (MateMixerStream *stream,
                                       guint            channel,
                                       gdouble          decibel)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_channel_decibel)
        return iface->set_channel_decibel (stream, channel, decibel);

    return FALSE;
}

gboolean
mate_mixer_stream_has_channel_position (MateMixerStream          *stream,
                                        MateMixerChannelPosition  position)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->has_channel_position)
        return iface->has_channel_position (stream, position);

    return FALSE;
}

gfloat
mate_mixer_stream_get_balance (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0.0f);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_balance)
        return iface->get_balance (stream);

    return 0.0f;
}

gboolean
mate_mixer_stream_set_balance (MateMixerStream *stream, gfloat balance)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_balance)
        return iface->set_balance (stream, balance);

    return FALSE;
}

gfloat
mate_mixer_stream_get_fade (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0.0f);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_fade)
        return iface->get_fade (stream);

    return 0.0f;
}

gboolean
mate_mixer_stream_set_fade (MateMixerStream *stream, gfloat fade)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_fade)
        return iface->set_fade (stream, fade);

    return FALSE;
}

gboolean
mate_mixer_stream_suspend (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->suspend)
        return iface->suspend (stream);

    return FALSE;
}

gboolean
mate_mixer_stream_resume (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->resume)
        return iface->resume (stream);

    return FALSE;
}

gboolean
mate_mixer_stream_monitor_start (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->monitor_start)
        return iface->monitor_start (stream);

    return FALSE;
}

void
mate_mixer_stream_monitor_stop (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_if_fail (MATE_MIXER_IS_STREAM (stream));

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->monitor_stop)
        iface->monitor_stop (stream);
}

gboolean
mate_mixer_stream_monitor_is_running (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->monitor_is_running)
        return iface->monitor_is_running (stream);

    return FALSE;
}

gboolean
mate_mixer_stream_monitor_set_name (MateMixerStream *stream, const gchar *name)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->monitor_set_name)
        return iface->monitor_set_name (stream, name);

    return FALSE;
}

const GList *
mate_mixer_stream_list_ports (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), NULL);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->list_ports)
        return iface->list_ports (stream);

    return NULL;
}

MateMixerPort *
mate_mixer_stream_get_active_port (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), NULL);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_active_port)
        return iface->get_active_port (stream);

    return NULL;
}

gboolean
mate_mixer_stream_set_active_port (MateMixerStream *stream, MateMixerPort *port)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), FALSE);
    g_return_val_if_fail (MATE_MIXER_IS_PORT (port), FALSE);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->set_active_port)
        return iface->set_active_port (stream, port);

    return FALSE;
}

guint
mate_mixer_stream_get_min_volume (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_min_volume)
        return iface->get_min_volume (stream);

    return 0;
}

guint
mate_mixer_stream_get_max_volume (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_max_volume)
        return iface->get_max_volume (stream);

    return 0;
}

guint
mate_mixer_stream_get_normal_volume (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_normal_volume)
        return iface->get_normal_volume (stream);

    return 0;
}

guint
mate_mixer_stream_get_base_volume (MateMixerStream *stream)
{
    MateMixerStreamInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_STREAM (stream), 0);

    iface = MATE_MIXER_STREAM_GET_INTERFACE (stream);

    if (iface->get_base_volume)
        return iface->get_base_volume (stream);

    return 0;
}