File: midi.h

package info (click to toggle)
libusbgx 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 992 kB
  • sloc: ansic: 13,134; xml: 176; makefile: 73; sh: 64; cpp: 14
file content (299 lines) | stat: -rw-r--r-- 9,315 bytes parent folder | download | duplicates (3)
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
/*
 * 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.1 of the License, 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.
 */

#ifndef USBG_FUNCTION_MIDI__
#define USBG_FUNCTION_MIDI__

#include <usbg/usbg.h>

#include <malloc.h>

#ifdef __cplusplus
extern "C" {
#endif

struct usbg_f_midi;
typedef struct usbg_f_midi usbg_f_midi;

struct usbg_f_midi_attrs {
	int index;
	const char *id;
	unsigned int in_ports;
	unsigned int out_ports;
	unsigned int buflen;
	unsigned int qlen;
};

enum usbg_f_midi_attr {
	USBG_F_MIDI_ATTR_MIN = 0,
	USBG_F_MIDI_INDEX = USBG_F_MIDI_ATTR_MIN,
	USBG_F_MIDI_ID,
	USBG_F_MIDI_IN_PORTS,
	USBG_F_MIDI_OUT_PORTS,
	USBG_F_MIDI_BUFLEN,
	USBG_F_MIDI_QLEN,
	USBG_F_MIDI_ATTR_MAX
};

union usbg_f_midi_attr_val {
	int index;
	const char *id;
	unsigned int in_ports;
	unsigned int out_ports;
	unsigned int buflen;
	unsigned int qlen;
};

#define USBG_F_MIDI_INT_TO_ATTR_VAL(WHAT)		\
	USBG_TO_UNION(usbg_f_midi_attr_val, index, WHAT)

#define USBG_F_MIDI_UINT_TO_ATTR_VAL(WHAT)		\
	USBG_TO_UNION(usbg_f_midi_attr_val, qlen, WHAT)

#define USBG_F_MIDI_CCHAR_PTR_TO_ATTR_VAL(WHAT)		\
	USBG_TO_UNION(usbg_f_midi_attr_val, id, WHAT)

/**
 * @brief Cast from generic function to midi function
 * @param[in] f function to be converted to midi funciton.
 *         Function should be one of type midi.
 * @return Converted midi function or NULL if function hasn't suitable type
 */
usbg_f_midi *usbg_to_midi_function(usbg_function *f);

/**
 * @brief Cast form midi function to generic one
 * @param[in] mf function to be converted to generic one
 * @return Generic usbg function
 */
usbg_function *usbg_from_midi_function(usbg_f_midi *mf);

/**
 * @brief Get attributes of given midi function
 * @param[in] mf Pointer to midi function
 * @param[out] attrs Structure to be filled with data
 * @return 0 on success usbg_error if error occurred.
 */
int usbg_f_midi_get_attrs(usbg_f_midi *mf,
			  struct usbg_f_midi_attrs *attrs);

/**
 * @brief Set attributes of given midi function
 * @param[in] mf Pointer to midi function
 * @param[in] attrs to be set
 * @return 0 on success usbg_error if error occurred.
 */
int usbg_f_midi_set_attrs(usbg_f_midi *mf,
			 const struct usbg_f_midi_attrs *attrs);

/**
 * @brief Cleanup attributes structure after usage
 * @param[in] attrs to be cleaned up
 */
static inline void usbg_f_midi_cleanup_attrs(struct usbg_f_midi_attrs *attrs)
{
	if (attrs) {
		free((char *)attrs->id);
		/* Just for safety */
		attrs->id = NULL;
	}
}

/**
 * @brief Get the value of single attribute
 * @param[in] mf Pointer to midi function
 * @param[in] attr Code of attribute which value should be taken
 * @param[out] val Current value of this attribute
 * @return 0 on success usbg_error if error occurred.
 */
int usbg_f_midi_get_attr_val(usbg_f_midi *mf, enum usbg_f_midi_attr attr,
			    union usbg_f_midi_attr_val *val);

/**
 * @brief Set the value of single attribute
 * @param[in] mf Pointer to midi function
 * @param[in] attr Code of attribute which value should be set
 * @param[in] val Value of attribute which should be set
 * @return 0 on success usbg_error if error occurred.
 */
int usbg_f_midi_set_attr_val(usbg_f_midi *mf, enum usbg_f_midi_attr attr,
			    union usbg_f_midi_attr_val val);

/**
 * @brief Get the index value of MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[out] index Current index value of MIDI adapter
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_get_index(usbg_f_midi *mf, int *index)
{
	return usbg_f_midi_get_attr_val(mf, USBG_F_MIDI_INDEX,
					(union usbg_f_midi_attr_val *)index);
}

/**
 * @brief Set the index value of MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[in] index value which should be set
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_set_index(usbg_f_midi *mf, int index)
{
	return usbg_f_midi_set_attr_val(mf, USBG_F_MIDI_INDEX,
					USBG_F_MIDI_INT_TO_ATTR_VAL(index));
}

/**
 * @brief Get the value of ID string for associated MIDI adapter
 *        into newly allocated storage
 * @param[in] mf Pointer to midi function
 * @param[out] id Newly allocated string containing id string of MIDI adapter
 * @return 0 on success usbg_error if error occurred.
 * @note returned id should be free() by caller
 */
static inline int usbg_f_midi_get_id(usbg_f_midi *mf, char **id)
{
	return usbg_f_midi_get_attr_val(mf, USBG_F_MIDI_ID,
					(union usbg_f_midi_attr_val *)id);
}

/**
 * @brief Get the value of ID string for associated MIDI adapter
 *         into user buffer
 * @param[in] mf Pointer to midi function
 * @param[out] buf Place where id should be stored
 * @param[in] len Size of buffer
 * @return Number of bytes placed into buf (excluding '\0') or the number of
 *         characters which would have been written to the buffer if enough
 *         space had been available. (just like snprintf() family). This may
 *         also return negative error code from usbg_error.
 * @note returned id should be free() by caller
 */
int usbg_f_midi_get_id_s(usbg_f_midi *mf, char *buf, int len);

/**
 * @brief Set the value of ID string for associated MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[in] id string for MIDI adapter
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_set_id(usbg_f_midi *mf, const char *id)
{
	return usbg_f_midi_set_attr_val(mf, USBG_F_MIDI_ID,
					USBG_F_MIDI_CCHAR_PTR_TO_ATTR_VAL(id));
}

/**
 * @brief Get the number of in ports of MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[out] in_ports Number of in ports of MIDI adapter
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_get_in_ports(usbg_f_midi *mf, unsigned *in_ports)
{
	return usbg_f_midi_get_attr_val(mf, USBG_F_MIDI_IN_PORTS,
					(union usbg_f_midi_attr_val *)in_ports);
}

/**
 * @brief Set the number of in ports of MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[in] in_ports number of in ports of MIDI adapters which should be set
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_set_in_ports(usbg_f_midi *mf, unsigned in_ports)
{
	return usbg_f_midi_set_attr_val(mf, USBG_F_MIDI_IN_PORTS,
					USBG_F_MIDI_UINT_TO_ATTR_VAL(in_ports));
}

/**
 * @brief Get the number of out ports of MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[out] out_ports Number of out ports of MIDI adapter
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_get_out_ports(usbg_f_midi *mf, unsigned *out_ports)
{
	return usbg_f_midi_get_attr_val(mf, USBG_F_MIDI_OUT_PORTS,
					(union usbg_f_midi_attr_val *)out_ports);
}

/**
 * @brief Set the number of out ports of MIDI adapter
 * @param[in] mf Pointer to midi function
 * @param[in] out_ports number of out ports of MIDI adapters which should be set
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_set_out_ports(usbg_f_midi *mf, unsigned out_ports)
{
	return usbg_f_midi_set_attr_val(mf, USBG_F_MIDI_OUT_PORTS,
					USBG_F_MIDI_UINT_TO_ATTR_VAL(out_ports));
}

/**
 * @brief Get the size of request buffer
 * @details This is the maximum number of bytes which can be received
 *        using single usb_request.
 * @param[in] lf Pointer to midi function
 * @param[out] buflen Current queue length
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_get_buflen(usbg_f_midi *mf, int *buflen)
{
	return usbg_f_midi_get_attr_val(mf, USBG_F_MIDI_BUFLEN,
					(union usbg_f_midi_attr_val *)buflen);
}

/**
 * @brief Set the size of request buffer
 * @details This is the maximum number of bytes which can be received
 *        using single usb_request.
 * @param[in] lf Pointer to midi function
 * @param[in] buflen Current queue length
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_set_buflen(usbg_f_midi *mf, unsigned buflen)
{
	return usbg_f_midi_set_attr_val(mf, USBG_F_MIDI_BUFLEN,
					USBG_F_MIDI_UINT_TO_ATTR_VAL(buflen));
}

/**
 * @brief Get the value of request queue length
 * @param[in] lf Pointer to midi function
 * @param[out] qlen Current queue length
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_get_qlen(usbg_f_midi *mf, unsigned *qlen)
{
	return usbg_f_midi_get_attr_val(mf, USBG_F_MIDI_QLEN,
					(union usbg_f_midi_attr_val *)qlen);
}

/**
 * @brief Set the value of request queue length
 * @param[in] lf Pointer to midi function
 * @param[in] qlen Current queue length
 * @return 0 on success usbg_error if error occurred.
 */
static inline int usbg_f_midi_set_qlen(usbg_f_midi *mf, unsigned qlen)
{
	return usbg_f_midi_set_attr_val(mf, USBG_F_MIDI_QLEN,
					USBG_F_MIDI_UINT_TO_ATTR_VAL(qlen));
}

#ifdef __cplusplus
}
#endif

#endif /* USBG_FUNCTION_MIDI__ */