summaryrefslogtreecommitdiff
path: root/backends/oss4/oss4-device.c
blob: b68648b6b311f71c65f23d707c897c1f736d2c18 (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
/*
 * 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 <errno.h>
#include <unistd.h>
#include <glib.h>
#include <glib/gi18n.h>
#include <glib/gstdio.h>
#include <glib-object.h>

#include <libmatemixer/matemixer-device.h>
#include <libmatemixer/matemixer-enums.h>
#include <libmatemixer/matemixer-port.h>
#include <libmatemixer/matemixer-port-private.h>
#include <libmatemixer/matemixer-stream.h>
#include <libmatemixer/matemixer-stream-control.h>

#include "oss4-common.h"
#include "oss4-device.h"

#define OSS4_DEVICE_ICON "audio-card"

struct _Oss4DevicePrivate
{
    gint             fd;
    gint             index;
    gchar           *name;
    gchar           *description;
    gchar           *icon;
    MateMixerStream *input;
    MateMixerStream *output;
};

enum {
    PROP_0,
    PROP_NAME,
    PROP_DESCRIPTION,
    PROP_ICON,
    PROP_ACTIVE_PROFILE,
    PROP_FD,
    PROP_INDEX
};

static void mate_mixer_device_interface_init (MateMixerDeviceInterface *iface);

static void oss4_device_class_init   (Oss4DeviceClass *klass);

static void oss4_device_get_property (GObject        *object,
                                      guint           param_id,
                                      GValue         *value,
                                      GParamSpec     *pspec);
static void oss4_device_set_property (GObject        *object,
                                      guint           param_id,
                                      const GValue   *value,
                                      GParamSpec     *pspec);

static void oss4_device_init         (Oss4Device     *device);
static void oss4_device_finalize     (GObject        *object);

G_DEFINE_TYPE_WITH_CODE (Oss4Device, oss4_device, G_TYPE_OBJECT,
                         G_IMPLEMENT_INTERFACE (MATE_MIXER_TYPE_DEVICE,
                                                mate_mixer_device_interface_init))

static const gchar *oss4_device_get_name        (MateMixerDevice *device);
static const gchar *oss4_device_get_description (MateMixerDevice *device);
static const gchar *oss4_device_get_icon        (MateMixerDevice *device);

static gboolean     read_mixer_devices          (Oss4Device      *device);

static void
mate_mixer_device_interface_init (MateMixerDeviceInterface *iface)
{
    iface->get_name        = oss4_device_get_name;
    iface->get_description = oss4_device_get_description;
    iface->get_icon        = oss4_device_get_icon;
}

static void
oss4_device_class_init (Oss4DeviceClass *klass)
{
    GObjectClass *object_class;

    object_class = G_OBJECT_CLASS (klass);
    object_class->finalize     = oss4_device_finalize;
    object_class->get_property = oss4_device_get_property;
    object_class->set_property = oss4_device_set_property;

    g_object_class_install_property (object_class,
                                     PROP_FD,
                                     g_param_spec_int ("fd",
                                                       "File descriptor",
                                                       "File descriptor of the device",
                                                       G_MININT,
                                                       G_MAXINT,
                                                       -1,
                                                       G_PARAM_CONSTRUCT_ONLY |
                                                       G_PARAM_READWRITE |
                                                       G_PARAM_STATIC_STRINGS));

    g_object_class_install_property (object_class,
                                     PROP_INDEX,
                                     g_param_spec_int ("index",
                                                       "Index",
                                                       "Index of the device",
                                                       G_MININT,
                                                       G_MAXINT,
                                                       0,
                                                       G_PARAM_CONSTRUCT_ONLY |
                                                       G_PARAM_READWRITE |
                                                       G_PARAM_STATIC_STRINGS));

    g_object_class_override_property (object_class, PROP_NAME, "name");
    g_object_class_override_property (object_class, PROP_DESCRIPTION, "description");
    g_object_class_override_property (object_class, PROP_ICON, "icon");
    g_object_class_override_property (object_class, PROP_ACTIVE_PROFILE, "active-profile");

    g_type_class_add_private (object_class, sizeof (Oss4DevicePrivate));
}

static void
oss4_device_get_property (GObject    *object,
                         guint       param_id,
                         GValue     *value,
                         GParamSpec *pspec)
{
    Oss4Device *device;

    device = OSS4_DEVICE (object);

    switch (param_id) {
    case PROP_NAME:
        g_value_set_string (value, device->priv->name);
        break;
    case PROP_DESCRIPTION:
        g_value_set_string (value, device->priv->description);
        break;
    case PROP_ICON:
        g_value_set_string (value, OSS4_DEVICE_ICON);
        break;
    case PROP_ACTIVE_PROFILE:
        /* Not supported */
        g_value_set_object (value, NULL);
        break;
    case PROP_FD:
        g_value_set_int (value, device->priv->fd);
        break;
    case PROP_INDEX:
        g_value_set_int (value, device->priv->index);
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    }
}

static void
oss4_device_set_property (GObject      *object,
                         guint         param_id,
                         const GValue *value,
                         GParamSpec   *pspec)
{
    Oss4Device *device;

    device = OSS4_DEVICE (object);

    switch (param_id) {
    case PROP_NAME:
        /* Construct-only string */
        device->priv->name = g_strdup (g_value_get_string (value));
        break;
    case PROP_DESCRIPTION:
        /* Construct-only string */
        device->priv->description = g_strdup (g_value_get_string (value));
        break;
    case PROP_ICON:
        /* Construct-only string */
        device->priv->icon = g_strdup (g_value_get_string (value));
        break;
    case PROP_FD:
        device->priv->fd = dup (g_value_get_int (value));
        break;
    case PROP_INDEX:
        device->priv->index = g_value_get_int (value);
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    }
}

static void
oss4_device_init (Oss4Device *device)
{
    device->priv = G_TYPE_INSTANCE_GET_PRIVATE (device,
                                                OSS4_TYPE_DEVICE,
                                                Oss4DevicePrivate);
}

static void
oss4_device_finalize (GObject *object)
{
    Oss4Device *device;

    device = OSS4_DEVICE (object);

    g_free (device->priv->name);
    g_free (device->priv->description);

    if (device->priv->fd != -1)
        g_close (device->priv->fd, NULL);

    G_OBJECT_CLASS (oss4_device_parent_class)->finalize (object);
}

Oss4Device *
oss4_device_new (const gchar *name,
                 const gchar *description,
                 gint         fd,
                 gint         index)
{
    Oss4Device *device;

    device = g_object_new (OSS4_TYPE_DEVICE,
                           "name", name,
                           "description", description,
                           "fd", fd,
                           "index", index,
                           NULL);

    return device;
}

gboolean
oss4_device_read (Oss4Device *odevice)
{
    gint exts;
    gint ret;
    gint i;

    ret = ioctl (odevice->priv->fd, SNDCTL_MIX_NREXT, &exts);
    if (ret == -1)
        return FALSE;

    for (i = 0; i < exts; i++) {
        oss_mixext ext;

        ext.dev  = odevice->priv->index;
        ext.ctrl = i;
        ret = ioctl (odevice->priv->fd, SNDCTL_MIX_EXTINFO, &ext);
        if (ret == -1)
            continue;

        g_debug ("Mixer control %d type %d\n"
                 " min %d max %d\n"
                 " id %s\n"
                 " extname %s",
                 i,ext.type, ext.minvalue, ext.maxvalue, ext.id, ext.extname);
    }

    return TRUE;
}

gint
oss4_device_get_index (Oss4Device *odevice)
{
    g_return_val_if_fail (OSS4_IS_DEVICE (odevice), FALSE);

    return odevice->priv->index;
}

MateMixerStream *
oss4_device_get_input_stream (Oss4Device *odevice)
{
    g_return_val_if_fail (OSS4_IS_DEVICE (odevice), FALSE);

    return odevice->priv->input;
}

MateMixerStream *
oss4_device_get_output_stream (Oss4Device *odevice)
{
    g_return_val_if_fail (OSS4_IS_DEVICE (odevice), FALSE);

    return odevice->priv->output;
}

static gboolean
read_mixer_devices (Oss4Device *device)
{
}

static const gchar *
oss4_device_get_name (MateMixerDevice *device)
{
    g_return_val_if_fail (OSS4_IS_DEVICE (device), NULL);

    return OSS4_DEVICE (device)->priv->name;
}

static const gchar *
oss4_device_get_description (MateMixerDevice *device)
{
    g_return_val_if_fail (OSS4_IS_DEVICE (device), NULL);

    return OSS4_DEVICE (device)->priv->description;
}

static const gchar *
oss4_device_get_icon (MateMixerDevice *device)
{
    g_return_val_if_fail (OSS4_IS_DEVICE (device), NULL);

    return OSS4_DEVICE_ICON;
}