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
#![doc = include_str!("../README.md")]
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(
clippy::approx_constant,
clippy::type_complexity,
clippy::unreadable_literal,
clippy::upper_case_acronyms
)]
#![cfg_attr(feature = "dox", feature(doc_cfg))]
#[allow(unused_imports)]
use libc::{
c_char, c_double, c_float, c_int, c_long, c_short, c_uchar, c_uint, c_ulong, c_ushort, c_void,
intptr_t, size_t, ssize_t, uintptr_t, FILE,
};
#[allow(unused_imports)]
use glib::{gboolean, gconstpointer, gpointer, GType};
pub type ALSATimerClass = c_int;
pub const ALSATIMER_CLASS_NONE: ALSATimerClass = -1;
pub const ALSATIMER_CLASS_GLOBAL: ALSATimerClass = 1;
pub const ALSATIMER_CLASS_CARD: ALSATimerClass = 2;
pub const ALSATIMER_CLASS_PCM: ALSATimerClass = 3;
pub type ALSATimerEventType = c_int;
pub const ALSATIMER_EVENT_TYPE_TICK_TIME: ALSATimerEventType = 0;
pub const ALSATIMER_EVENT_TYPE_REAL_TIME: ALSATimerEventType = 1;
pub type ALSATimerRealTimeEventType = c_int;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_RESOLUTION: ALSATimerRealTimeEventType = 0;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_TICK: ALSATimerRealTimeEventType = 1;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_START: ALSATimerRealTimeEventType = 2;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_STOP: ALSATimerRealTimeEventType = 3;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_CONTINUE: ALSATimerRealTimeEventType = 4;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_PAUSE: ALSATimerRealTimeEventType = 5;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_EARLY: ALSATimerRealTimeEventType = 6;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_SUSPEND: ALSATimerRealTimeEventType = 7;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_RESUME: ALSATimerRealTimeEventType = 8;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_MSTART: ALSATimerRealTimeEventType = 12;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_MSTOP: ALSATimerRealTimeEventType = 13;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_MCONTINUE: ALSATimerRealTimeEventType = 14;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_MPAUSE: ALSATimerRealTimeEventType = 15;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_MSUSPEND: ALSATimerRealTimeEventType = 17;
pub const ALSATIMER_REAL_TIME_EVENT_TYPE_MRESUME: ALSATimerRealTimeEventType = 18;
pub type ALSATimerSlaveClass = c_int;
pub const ALSATIMER_SLAVE_CLASS_NONE: ALSATimerSlaveClass = 0;
pub const ALSATIMER_SLAVE_CLASS_APPLICATION: ALSATimerSlaveClass = 1;
pub const ALSATIMER_SLAVE_CLASS_SEQUENCER: ALSATimerSlaveClass = 2;
pub type ALSATimerSpecificGlobalDevice = c_int;
pub const ALSATIMER_SPECIFIC_GLOBAL_DEVICE_SYSTEM: ALSATimerSpecificGlobalDevice = 0;
pub const ALSATIMER_SPECIFIC_GLOBAL_DEVICE_HRTIMER: ALSATimerSpecificGlobalDevice = 3;
pub type ALSATimerUserInstanceError = c_int;
pub const ALSATIMER_USER_INSTANCE_ERROR_FAILED: ALSATimerUserInstanceError = 0;
pub const ALSATIMER_USER_INSTANCE_ERROR_TIMER_NOT_FOUND: ALSATimerUserInstanceError = 1;
pub const ALSATIMER_USER_INSTANCE_ERROR_NOT_ATTACHED: ALSATimerUserInstanceError = 2;
pub const ALSATIMER_USER_INSTANCE_ERROR_ATTACHED: ALSATimerUserInstanceError = 3;
pub type ALSATimerDeviceInfoFlag = c_uint;
pub const ALSATIMER_DEVICE_INFO_FLAG_SLAVE: ALSATimerDeviceInfoFlag = 1;
pub type ALSATimerInstanceParamFlag = c_uint;
pub const ALSATIMER_INSTANCE_PARAM_FLAG_AUTO: ALSATimerInstanceParamFlag = 1;
pub const ALSATIMER_INSTANCE_PARAM_FLAG_EXCLUSIVE: ALSATimerInstanceParamFlag = 2;
pub const ALSATIMER_INSTANCE_PARAM_FLAG_EARLY_EVENT: ALSATimerInstanceParamFlag = 4;
#[repr(C)]
pub struct ALSATimerDeviceId {
_data: [u8; 0],
_marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}
impl ::std::fmt::Debug for ALSATimerDeviceId {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceId @ {:p}", self))
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerDeviceInfoClass {
pub parent_class: gobject::GObjectClass,
}
impl ::std::fmt::Debug for ALSATimerDeviceInfoClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceInfoClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerDeviceParamsClass {
pub parent_class: gobject::GObjectClass,
}
impl ::std::fmt::Debug for ALSATimerDeviceParamsClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceParamsClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerDeviceStatusClass {
pub parent_class: gobject::GObjectClass,
}
impl ::std::fmt::Debug for ALSATimerDeviceStatusClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceStatusClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerInstanceInfoClass {
pub parent_class: gobject::GObjectClass,
}
impl ::std::fmt::Debug for ALSATimerInstanceInfoClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerInstanceInfoClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerInstanceParamsClass {
pub parent_class: gobject::GObjectClass,
}
impl ::std::fmt::Debug for ALSATimerInstanceParamsClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerInstanceParamsClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerInstanceStatusClass {
pub parent_class: gobject::GObjectClass,
}
impl ::std::fmt::Debug for ALSATimerInstanceStatusClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerInstanceStatusClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.finish()
}
}
#[repr(C)]
pub struct ALSATimerRealTimeEvent {
_data: [u8; 0],
_marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}
impl ::std::fmt::Debug for ALSATimerRealTimeEvent {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerRealTimeEvent @ {:p}", self))
.finish()
}
}
#[repr(C)]
pub struct ALSATimerTickTimeEvent {
_data: [u8; 0],
_marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}
impl ::std::fmt::Debug for ALSATimerTickTimeEvent {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerTickTimeEvent @ {:p}", self))
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerUserInstanceClass {
pub parent_class: gobject::GObjectClass,
pub handle_tick_time_event:
Option<unsafe extern "C" fn(*mut ALSATimerUserInstance, *const ALSATimerTickTimeEvent)>,
pub handle_real_time_event:
Option<unsafe extern "C" fn(*mut ALSATimerUserInstance, *const ALSATimerRealTimeEvent)>,
pub handle_disconnection: Option<unsafe extern "C" fn(*mut ALSATimerUserInstance)>,
}
impl ::std::fmt::Debug for ALSATimerUserInstanceClass {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerUserInstanceClass @ {:p}", self))
.field("parent_class", &self.parent_class)
.field("handle_tick_time_event", &self.handle_tick_time_event)
.field("handle_real_time_event", &self.handle_real_time_event)
.field("handle_disconnection", &self.handle_disconnection)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerDeviceInfo {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerDeviceInfo {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceInfo @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerDeviceParams {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerDeviceParams {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceParams @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerDeviceStatus {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerDeviceStatus {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerDeviceStatus @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerInstanceInfo {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerInstanceInfo {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerInstanceInfo @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerInstanceParams {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerInstanceParams {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerInstanceParams @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerInstanceStatus {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerInstanceStatus {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerInstanceStatus @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ALSATimerUserInstance {
pub parent_instance: gobject::GObject,
}
impl ::std::fmt::Debug for ALSATimerUserInstance {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.debug_struct(&format!("ALSATimerUserInstance @ {:p}", self))
.field("parent_instance", &self.parent_instance)
.finish()
}
}
#[link(name = "alsatimer")]
extern "C" {
pub fn alsatimer_class_get_type() -> GType;
pub fn alsatimer_event_type_get_type() -> GType;
pub fn alsatimer_real_time_event_type_get_type() -> GType;
pub fn alsatimer_slave_class_get_type() -> GType;
pub fn alsatimer_specific_global_device_get_type() -> GType;
pub fn alsatimer_user_instance_error_get_type() -> GType;
pub fn alsatimer_user_instance_error_quark() -> glib::GQuark;
pub fn alsatimer_device_info_flag_get_type() -> GType;
pub fn alsatimer_instance_param_flag_get_type() -> GType;
pub fn alsatimer_device_id_get_type() -> GType;
pub fn alsatimer_device_id_new(
class: ALSATimerClass,
card_id: c_int,
device_id: c_int,
subdevice_id: c_int,
) -> *mut ALSATimerDeviceId;
pub fn alsatimer_device_id_get_card_id(self_: *const ALSATimerDeviceId, card_id: *mut c_int);
pub fn alsatimer_device_id_get_class(
self_: *const ALSATimerDeviceId,
class: *mut ALSATimerClass,
);
pub fn alsatimer_device_id_get_device_id(
self_: *const ALSATimerDeviceId,
device_id: *mut c_int,
);
pub fn alsatimer_device_id_get_subdevice_id(
self_: *const ALSATimerDeviceId,
subdevice_id: *mut c_int,
);
pub fn alsatimer_real_time_event_get_type() -> GType;
pub fn alsatimer_real_time_event_get_event(
self_: *const ALSATimerRealTimeEvent,
event: *mut ALSATimerRealTimeEventType,
);
pub fn alsatimer_real_time_event_get_time(
self_: *const ALSATimerRealTimeEvent,
real_time: *const *mut [i64; 2],
);
pub fn alsatimer_real_time_event_get_val(
self_: *const ALSATimerRealTimeEvent,
val: *mut c_uint,
);
pub fn alsatimer_tick_time_event_get_type() -> GType;
pub fn alsatimer_tick_time_event_get_count(
self_: *const ALSATimerTickTimeEvent,
count: *mut c_uint,
);
pub fn alsatimer_tick_time_event_get_resolution(
self_: *const ALSATimerTickTimeEvent,
resolution: *mut c_uint,
);
pub fn alsatimer_device_info_get_type() -> GType;
pub fn alsatimer_device_params_get_type() -> GType;
pub fn alsatimer_device_params_new() -> *mut ALSATimerDeviceParams;
pub fn alsatimer_device_status_get_type() -> GType;
pub fn alsatimer_device_status_new() -> *mut ALSATimerDeviceStatus;
pub fn alsatimer_instance_info_get_type() -> GType;
pub fn alsatimer_instance_params_get_type() -> GType;
pub fn alsatimer_instance_params_new() -> *mut ALSATimerInstanceParams;
pub fn alsatimer_instance_params_get_event_filter(
self_: *mut ALSATimerInstanceParams,
entries: *mut *mut ALSATimerRealTimeEventType,
entry_count: *mut size_t,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_instance_params_set_event_filter(
self_: *mut ALSATimerInstanceParams,
entries: *const ALSATimerRealTimeEventType,
entry_count: size_t,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_instance_status_get_type() -> GType;
pub fn alsatimer_instance_status_new() -> *mut ALSATimerInstanceStatus;
pub fn alsatimer_instance_status_get_time(
self_: *mut ALSATimerInstanceStatus,
real_time: *mut *const [i64; 2],
);
pub fn alsatimer_user_instance_get_type() -> GType;
pub fn alsatimer_user_instance_new() -> *mut ALSATimerUserInstance;
pub fn alsatimer_user_instance_attach(
self_: *mut ALSATimerUserInstance,
device_id: *mut ALSATimerDeviceId,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_attach_as_slave(
self_: *mut ALSATimerUserInstance,
slave_class: ALSATimerSlaveClass,
slave_id: c_int,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_choose_event_type(
self_: *mut ALSATimerUserInstance,
event_type: ALSATimerEventType,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_continue(
self_: *mut ALSATimerUserInstance,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_create_source(
self_: *mut ALSATimerUserInstance,
gsrc: *mut *mut glib::GSource,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_get_info(
self_: *mut ALSATimerUserInstance,
instance_info: *mut *mut ALSATimerInstanceInfo,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_get_protocol_version(
self_: *mut ALSATimerUserInstance,
proto_ver_triplet: *mut *const [u16; 3],
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_get_status(
self_: *mut ALSATimerUserInstance,
instance_status: *const *mut ALSATimerInstanceStatus,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_open(
self_: *mut ALSATimerUserInstance,
open_flag: c_int,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_pause(
self_: *mut ALSATimerUserInstance,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_set_params(
self_: *mut ALSATimerUserInstance,
instance_params: *const *mut ALSATimerInstanceParams,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_start(
self_: *mut ALSATimerUserInstance,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_user_instance_stop(
self_: *mut ALSATimerUserInstance,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_get_device_id_list(
entries: *mut *mut glib::GList,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_get_device_info(
device_id: *mut ALSATimerDeviceId,
device_info: *mut *mut ALSATimerDeviceInfo,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_get_device_status(
device_id: *mut ALSATimerDeviceId,
device_status: *const *mut ALSATimerDeviceStatus,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_get_devnode(
devnode: *mut *mut c_char,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_get_real_time_clock_id(
clock_id: *mut c_int,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_get_sysname(
sysname: *mut *mut c_char,
error: *mut *mut glib::GError,
) -> gboolean;
pub fn alsatimer_set_device_params(
device_id: *mut ALSATimerDeviceId,
device_params: *const ALSATimerDeviceParams,
error: *mut *mut glib::GError,
) -> gboolean;
}