summaryrefslogtreecommitdiff
path: root/libmatemixer/matemixer-control.c
blob: c122a7edb68af90895c0455dd05a4c041ee52a60 (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
/*
 * 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-backend.h"
#include "matemixer-backend-module.h"
#include "matemixer-control.h"
#include "matemixer-enums.h"
#include "matemixer-private.h"
#include "matemixer-stream.h"

struct _MateMixerControlPrivate
{
    GList                  *devices;
    GList                  *streams;
    MateMixerBackend       *backend;
    MateMixerBackendModule *module;
};

G_DEFINE_TYPE (MateMixerControl, mate_mixer_control, G_TYPE_OBJECT);

static void              mate_mixer_control_class_init (MateMixerControlClass  *klass);
static void              mate_mixer_control_init       (MateMixerControl       *control);
static void              mate_mixer_control_dispose    (GObject                *object);

static MateMixerBackend *mixer_control_init_module     (MateMixerBackendModule *module);

static void
mate_mixer_control_class_init (MateMixerControlClass *klass)
{
    GObjectClass *object_class;

    object_class = G_OBJECT_CLASS (klass);
    object_class->dispose = mate_mixer_control_dispose;

    g_type_class_add_private (object_class, sizeof (MateMixerControlPrivate));
}

static void
mate_mixer_control_init (MateMixerControl *control)
{
    control->priv = G_TYPE_INSTANCE_GET_PRIVATE (control,
                                                 MATE_MIXER_TYPE_CONTROL,
                                                 MateMixerControlPrivate);
}

static void
mate_mixer_control_dispose (GObject *object)
{
    MateMixerControl *control;

    control = MATE_MIXER_CONTROL (object);

    if (control->priv->backend) {
        mate_mixer_backend_close (control->priv->backend);
        g_clear_object (&control->priv->backend);
    }

    g_clear_object (&control->priv->module);

    if (control->priv->devices) {
        g_list_free_full (control->priv->devices, g_object_unref);
        control->priv->devices = NULL;
    }
    if (control->priv->streams) {
        g_list_free_full (control->priv->streams, g_object_unref);
        control->priv->streams = NULL;
    }

    G_OBJECT_CLASS (mate_mixer_control_parent_class)->dispose (object);
}

MateMixerControl *
mate_mixer_control_new (void)
{
    const GList            *modules;
    MateMixerControl       *control;
    MateMixerBackend       *backend = NULL;
    MateMixerBackendModule *module = NULL;

    if (!mate_mixer_is_initialized ()) {
        g_critical ("The library has not been initialized");
        return NULL;
    }

    modules = mate_mixer_get_modules ();
    while (modules) {
        module  = MATE_MIXER_BACKEND_MODULE (modules->data);
        backend = mixer_control_init_module (module);
        if (backend != NULL)
            break;

        modules = modules->next;
    }

    /* The last module in the priority list is the "null" module which
     * should always be initialized correctly, but in case "null" is absent,
     * all the other modules might fail their initializations */
    if (backend == NULL)
        return NULL;

    control = g_object_new (MATE_MIXER_TYPE_CONTROL, NULL);

    control->priv->module  = g_object_ref (module);
    control->priv->backend = backend;

    return control;
}

MateMixerControl *
mate_mixer_control_new_backend (MateMixerBackendType backend_type)
{
    const GList            *modules;
    MateMixerControl       *control;
    MateMixerBackend       *backend = NULL;
    MateMixerBackendModule *module = NULL;

    if (!mate_mixer_is_initialized ()) {
        g_critical ("The library has not been initialized");
        return NULL;
    }

    modules = mate_mixer_get_modules ();
    while (modules) {
        const MateMixerBackendInfo *info;

        module = MATE_MIXER_BACKEND_MODULE (modules->data);
        info   = mate_mixer_backend_module_get_info (module);

        if (info->backend_type == backend_type) {
            backend = mixer_control_init_module (module);
            break;
        }
        modules = modules->next;
    }

    /* The initialization might fail or the selected module might be absent */
    if (backend == NULL)
        return NULL;

    control = g_object_new (MATE_MIXER_TYPE_CONTROL, NULL);

    control->priv->module  = g_object_ref (module);
    control->priv->backend = backend;

    return control;
}

const GList *
mate_mixer_control_list_devices (MateMixerControl *control)
{
    g_return_val_if_fail (MATE_MIXER_IS_CONTROL (control), NULL);

    /* This list is cached here and invalidated when the backend notifies us
     * about a change */
    if (control->priv->devices == NULL)
        control->priv->devices =
            mate_mixer_backend_list_devices (MATE_MIXER_BACKEND (control->priv->backend));

    return (const GList *) control->priv->devices;
}

const GList *
mate_mixer_control_list_streams (MateMixerControl *control)
{
    g_return_val_if_fail (MATE_MIXER_IS_CONTROL (control), NULL);

    /* This list is cached here and invalidated when the backend notifies us
     * about a change */
    if (control->priv->streams == NULL)
        control->priv->streams =
            mate_mixer_backend_list_streams (MATE_MIXER_BACKEND (control->priv->backend));

    return (const GList *) control->priv->streams;
}

MateMixerStream *
mate_mixer_control_get_default_input_stream (MateMixerControl *control)
{
    g_return_val_if_fail (MATE_MIXER_IS_CONTROL (control), NULL);

    return mate_mixer_backend_get_default_input_stream (control->priv->backend);
}

MateMixerStream *
mate_mixer_control_get_default_output_stream (MateMixerControl *control)
{
    g_return_val_if_fail (MATE_MIXER_IS_CONTROL (control), NULL);

    return mate_mixer_backend_get_default_output_stream (control->priv->backend);
}

const gchar *
mate_mixer_control_get_backend_name (MateMixerControl *control)
{
    const MateMixerBackendInfo *info;

    g_return_val_if_fail (MATE_MIXER_IS_CONTROL (control), NULL);

    info = mate_mixer_backend_module_get_info (control->priv->module);

    return info->name;
}

MateMixerBackendType
mate_mixer_control_get_backend_type (MateMixerControl *control)
{
    const MateMixerBackendInfo *info;

    g_return_val_if_fail (MATE_MIXER_IS_CONTROL (control), FALSE);

    info = mate_mixer_backend_module_get_info (control->priv->module);

    return info->backend_type;
}

static MateMixerBackend *
mixer_control_init_module (MateMixerBackendModule *module)
{
    MateMixerBackend           *backend;
    const MateMixerBackendInfo *info;

    info = mate_mixer_backend_module_get_info (module);
    backend = g_object_newv (info->g_type, 0, NULL);

    if (!mate_mixer_backend_open (backend)) {
        g_object_unref (backend);
        return NULL;
    }
    return backend;
}