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
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
private with
Ada.Finalization,
Ada.Containers.Vectors,
Interfaces.C.Strings,
System;
package Libao is
---------------------------------
-- Data Types and Structures --
---------------------------------
type Driver_ID_Number is new Natural;
type Data_Buffer is new String;
type Device is private;
type Info is tagged private;
type Info_Array is array (Positive range <>) of Info;
type Output_Kind is (Live_Output, File_Output);
type Endianness is (Little_Endian, Big_Endian, Machine_Native);
function Kind
(Attributes : in Info)
return Output_Kind;
function Name
(Attributes : in Info)
return String;
function Short_Name
(Attributes : in Info)
return String;
function Preferred_Byte_Format
(Attributes : in Info)
return Endianness;
function Priority_Level
(Attributes : in Info)
return Positive;
function Comment
(Attributes : in Info)
return String;
function Option_Count
(Attributes : in Info)
return Natural;
function Option_Key
(Attributes : in Info;
Index : in Positive)
return String;
type Option_List is tagged private;
Empty_Options : constant Option_List;
type Sample_Format is private;
type Channel_Mnemonic is (L, R, C, M, CL, CR, BL, BR, BC, SL, SR, LFE, A1, A2, A3, A4, X);
type Mnemonic_Array is array (Positive range <>) of Channel_Mnemonic;
function Create
(Bits, Rate, Channels : in Positive;
Byte_Format : in Endianness;
Channel_Matrix : in Mnemonic_Array)
return Sample_Format;
Stereo : constant Mnemonic_Array := (L, R);
Quadraphonic : constant Mnemonic_Array := (L, R, BL, BR);
------------------
-- Exceptions --
------------------
-- May be raised by Open_Live, Open_File, Driver_ID, Driver_Info
No_Driver_Error : exception;
-- May be raised by Open_File
Not_File_Error : exception;
-- May be raised by Open_Live
Not_Live_Error : exception;
-- May be raised by Open_Live, Open_File
Bad_Option_Error : exception;
-- May be raised by Open_Live
Open_Device_Error : exception;
-- May be raised by Shutdown, Close
Close_Device_Error : exception;
-- May be raised by Default_Driver_ID
No_Device_Error : exception;
-- May be raised by Open_File
Open_File_Error : exception;
-- May be raised by Open_File
File_Exists_Error : exception;
-- Documentation lacking, but presumably may be raised by Open_Live, Open_File
Bad_Format_Error : exception;
-- May be raised by Open_Live, Open_File, Play
General_Failure : exception;
-- Storage_Error may be raised by Append, Append_Global_Option
-- Program_Error may be raised if libao in general does something out of spec
--------------------------------------
-- Device Setup/Playback/Teardown --
--------------------------------------
procedure Append
(This : in out Option_List;
Key : in String;
Value : in String);
procedure Append_Global_Option
(Key : in String;
Value : in String);
function Open_Live
(Driver_ID : in Driver_ID_Number;
Format : in Sample_Format;
Options : in Option_List'Class)
return Device;
function Open_File
(Driver_ID : in Driver_ID_Number;
Filename : in String;
Format : in Sample_Format;
Options : in Option_List'Class;
Overwrite : in Boolean := False)
return Device;
procedure Play
(Output_Device : in Device;
Samples : in Data_Buffer);
procedure Close
(Output_Device : in out Device);
--------------------------
-- Driver Information --
--------------------------
function Driver_ID
(Short_Name : in String)
return Driver_ID_Number;
function Default_Driver_ID
return Driver_ID_Number;
function Driver_Info
(Ident : in Driver_ID_Number)
return Info;
function Driver_Info_List
return Info_Array;
function File_Extension
(Ident : in Driver_ID_Number)
return String;
---------------------
-- Miscellaneous --
---------------------
function Is_Big_Endian
return Boolean;
private
pragma Linker_Options ("-lao");
procedure Do_Append
(Ptr : in out System.Address;
Key : in Interfaces.C.char_array;
Value : in Interfaces.C.char_array);
procedure Do_Close
(Ptr : in System.Address);
type Device is record
Ptr : System.Address;
end record;
type Info is tagged record
Ptr : System.Address;
end record;
type Option_List is new Ada.Finalization.Controlled with record
Ptr : System.Address := System.Null_Address;
end record;
overriding procedure Adjust
(This : in out Option_List);
overriding procedure Finalize
(This : in out Option_List);
Empty_Options : constant Option_List :=
(Ada.Finalization.Controlled with Ptr => System.Null_Address);
type C_Sample_Format is record
Bits : Interfaces.C.int;
Rate : Interfaces.C.int;
Channels : Interfaces.C.int;
Byte_Format : Interfaces.C.int;
Matrix : Interfaces.C.Strings.chars_ptr;
end record with Convention => C;
type Sample_Format is new Ada.Finalization.Controlled with record
C_Struct : C_Sample_Format;
end record;
overriding procedure Adjust
(This : in out Sample_Format);
overriding procedure Finalize
(This : in out Sample_Format);
-- Keep track of
package Address_Vectors is new Ada.Containers.Vectors
(Index_Type => Positive,
Element_Type => System.Address,
"=" => System."=");
Device_List : Address_Vectors.Vector := Address_Vectors.Empty_Vector;
-- The clunky way of ensuring that libao is always shut down properly
type Final_Controller is new Ada.Finalization.Controlled with null record;
overriding procedure Finalize
(This : in out Final_Controller);
Cleanup : Final_Controller;
end Libao;
|