Add missing calls to refcount_init()
[helenos.git] / uspace / lib / drv / generic / remote_audio_mixer.c
blob34d8cfac24b350f0cfde99fe58d6a93d3c1e6b99
1 /*
2 * Copyright (c) 2011 Jan Vesely
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 /** @addtogroup libdrv
30 * @{
32 /** @file
35 #include <async.h>
36 #include <errno.h>
37 #include <assert.h>
38 #include <str.h>
39 #include <macros.h>
41 #include "audio_mixer_iface.h"
42 #include "ddf/driver.h"
44 typedef enum {
45 /** Asks for basic mixer info: Mixer name and number of controllable
46 * items.
47 * Answer:
48 * - ENOTSUP - call not supported
49 * - EOK - call successful, info is valid
50 * Answer arguments:
51 * - Mixer name
52 * - Number of controllable items
54 IPC_M_AUDIO_MIXER_GET_INFO,
56 /** Asks for item mixer info: Item name and number of controllable
57 * channels.
58 * Answer:
59 * - ENOTSUP - call not supported
60 * - ENOENT - no such item
61 * - EOK - call successful, info is valid
62 * Answer arguments:
63 * - Item name
64 * - Number of controllable channels
66 IPC_M_AUDIO_MIXER_GET_ITEM_INFO,
68 /** Set new control item setting
69 * Answer:
70 * - ENOTSUP - call not supported
71 * - ENOENT - no such control item
72 * - EOK - call successful, info is valid
74 IPC_M_AUDIO_MIXER_SET_ITEM_LEVEL,
76 /** Get control item setting
77 * Answer:
78 * - ENOTSUP - call not supported
79 * - ENOENT - no such control item
80 * - EOK - call successful, info is valid
82 IPC_M_AUDIO_MIXER_GET_ITEM_LEVEL,
83 } audio_mixer_iface_funcs_t;
86 * CLIENT SIDE
89 /**
90 * Query audio mixer for basic info (name and items count).
91 * @param[in] exch IPC exchange connected to the device
92 * @param[out] name Audio mixer string identifier
93 * @param[out] items Number of items controlled by the mixer.
94 * @return Error code.
96 errno_t audio_mixer_get_info(async_exch_t *exch, char **name, unsigned *items)
98 if (!exch)
99 return EINVAL;
100 sysarg_t name_size, itemc;
101 const errno_t ret = async_req_1_2(exch, DEV_IFACE_ID(AUDIO_MIXER_IFACE),
102 IPC_M_AUDIO_MIXER_GET_INFO, &name_size, &itemc);
103 if (ret == EOK && name) {
104 char *name_place = calloc(1, name_size);
105 if (!name_place) {
107 * Make the other side fail
108 * as it waits for read request
110 async_data_read_start(exch, (void *)-1, 0);
111 return ENOMEM;
113 const errno_t ret =
114 async_data_read_start(exch, name_place, name_size);
115 if (ret != EOK) {
116 free(name_place);
117 return ret;
119 *name = name_place;
121 if (ret == EOK && items)
122 *items = itemc;
123 return ret;
127 * Query audio mixer for item specific info (name and channels count).
128 * @param[in] exch IPC exchange connected to the device
129 * @param[in] item The control item
130 * @param[out] name Control item string identifier.
131 * @param[out] channles Number of channels associated with this control item.
132 * @return Error code.
134 errno_t audio_mixer_get_item_info(async_exch_t *exch, unsigned item,
135 char **name, unsigned *levels)
137 if (!exch)
138 return EINVAL;
139 sysarg_t name_size, lvls;
140 const errno_t ret = async_req_2_2(exch, DEV_IFACE_ID(AUDIO_MIXER_IFACE),
141 IPC_M_AUDIO_MIXER_GET_ITEM_INFO, item, &name_size, &lvls);
142 if (ret == EOK && name) {
143 char *name_place = calloc(1, name_size);
144 if (!name_place) {
146 * Make the other side fail
147 * as it waits for read request
149 async_data_read_start(exch, (void *)-1, 0);
150 return ENOMEM;
152 const errno_t ret =
153 async_data_read_start(exch, name_place, name_size);
154 if (ret != EOK) {
155 free(name_place);
156 return ret;
158 *name = name_place;
160 if (ret == EOK && levels)
161 *levels = lvls;
162 return ret;
166 * Set control item to a new level.
167 * @param[in] exch IPC exchange connected to the device.
168 * @param[in] item The control item controlling the channel.
169 * @param[in] level The new value.
170 * @return Error code.
172 errno_t audio_mixer_set_item_level(async_exch_t *exch, unsigned item,
173 unsigned level)
175 if (!exch)
176 return EINVAL;
177 return async_req_3_0(exch, DEV_IFACE_ID(AUDIO_MIXER_IFACE),
178 IPC_M_AUDIO_MIXER_SET_ITEM_LEVEL, item, level);
182 * Get current level of a control item.
183 * @param[in] exch IPC exchange connected to the device.
184 * @param[in] item The control item controlling the channel.
185 * @param[in] channel The channel index.
186 * @param[out] level Currently set value.
187 * @return Error code.
189 errno_t audio_mixer_get_item_level(async_exch_t *exch, unsigned item,
190 unsigned *level)
192 if (!exch)
193 return EINVAL;
194 sysarg_t current;
195 const errno_t ret = async_req_2_1(exch, DEV_IFACE_ID(AUDIO_MIXER_IFACE),
196 IPC_M_AUDIO_MIXER_GET_ITEM_LEVEL, item, &current);
197 if (ret == EOK && level)
198 *level = current;
199 return ret;
203 * SERVER SIDE
205 static void remote_audio_mixer_get_info(ddf_fun_t *, void *, ipc_call_t *);
206 static void remote_audio_mixer_get_item_info(ddf_fun_t *, void *, ipc_call_t *);
207 static void remote_audio_mixer_get_item_level(ddf_fun_t *, void *, ipc_call_t *);
208 static void remote_audio_mixer_set_item_level(ddf_fun_t *, void *, ipc_call_t *);
210 /** Remote audio mixer interface operations. */
211 static const remote_iface_func_ptr_t remote_audio_mixer_iface_ops[] = {
212 [IPC_M_AUDIO_MIXER_GET_INFO] = remote_audio_mixer_get_info,
213 [IPC_M_AUDIO_MIXER_GET_ITEM_INFO] = remote_audio_mixer_get_item_info,
214 [IPC_M_AUDIO_MIXER_GET_ITEM_LEVEL] = remote_audio_mixer_get_item_level,
215 [IPC_M_AUDIO_MIXER_SET_ITEM_LEVEL] = remote_audio_mixer_set_item_level,
218 /** Remote audio mixer interface structure. */
219 const remote_iface_t remote_audio_mixer_iface = {
220 .method_count = ARRAY_SIZE(remote_audio_mixer_iface_ops),
221 .methods = remote_audio_mixer_iface_ops
224 void remote_audio_mixer_get_info(ddf_fun_t *fun, void *iface, ipc_call_t *icall)
226 audio_mixer_iface_t *mixer_iface = iface;
228 if (!mixer_iface->get_info) {
229 async_answer_0(icall, ENOTSUP);
230 return;
233 const char *name = NULL;
234 unsigned items = 0;
235 const errno_t ret = mixer_iface->get_info(fun, &name, &items);
236 const size_t name_size = name ? str_size(name) + 1 : 0;
237 async_answer_2(icall, ret, name_size, items);
239 /* Send the name. */
240 if (ret == EOK && name_size > 0) {
241 ipc_call_t call;
242 size_t size;
243 if (!async_data_read_receive(&call, &size)) {
244 async_answer_0(&call, EPARTY);
245 return;
248 if (size != name_size) {
249 async_answer_0(&call, ELIMIT);
250 return;
253 async_data_read_finalize(&call, name, name_size);
257 void remote_audio_mixer_get_item_info(ddf_fun_t *fun, void *iface,
258 ipc_call_t *icall)
260 audio_mixer_iface_t *mixer_iface = iface;
262 if (!mixer_iface->get_item_info) {
263 async_answer_0(icall, ENOTSUP);
264 return;
267 const unsigned item = DEV_IPC_GET_ARG1(*icall);
268 const char *name = NULL;
269 unsigned values = 0;
270 const errno_t ret = mixer_iface->get_item_info(fun, item, &name, &values);
271 const size_t name_size = name ? str_size(name) + 1 : 0;
272 async_answer_2(icall, ret, name_size, values);
274 /* Send the name. */
275 if (ret == EOK && name_size > 0) {
276 ipc_call_t call;
277 size_t size;
278 if (!async_data_read_receive(&call, &size)) {
279 async_answer_0(&call, EPARTY);
280 return;
283 if (size != name_size) {
284 async_answer_0(&call, ELIMIT);
285 return;
288 async_data_read_finalize(&call, name, name_size);
292 void remote_audio_mixer_set_item_level(ddf_fun_t *fun, void *iface,
293 ipc_call_t *icall)
295 audio_mixer_iface_t *mixer_iface = iface;
297 if (!mixer_iface->set_item_level) {
298 async_answer_0(icall, ENOTSUP);
299 return;
302 const unsigned item = DEV_IPC_GET_ARG1(*icall);
303 const unsigned value = DEV_IPC_GET_ARG2(*icall);
304 const errno_t ret = mixer_iface->set_item_level(fun, item, value);
305 async_answer_0(icall, ret);
308 void remote_audio_mixer_get_item_level(ddf_fun_t *fun, void *iface,
309 ipc_call_t *icall)
311 audio_mixer_iface_t *mixer_iface = iface;
313 if (!mixer_iface->get_item_level) {
314 async_answer_0(icall, ENOTSUP);
315 return;
318 const unsigned item = DEV_IPC_GET_ARG1(*icall);
319 unsigned current = 0;
320 const errno_t ret =
321 mixer_iface->get_item_level(fun, item, &current);
322 async_answer_1(icall, ret, current);
326 * @}