-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBinaural_player.java
290 lines (261 loc) · 6.37 KB
/
Binaural_player.java
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
/*
* Binaural player
* © Nicolas George -- 2010
* Player service
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; version 2 of the License.
*
* This program 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 General
* Public License for more details.
*/
package org.cigaes.binaural_player;
import java.util.ArrayList;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.app.Notification;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.Bundle;
import android.os.IBinder;
import android.os.Handler;
import android.os.Message;
import android.os.Messenger;
import android.os.RemoteException;
public class Binaural_player extends Service implements Handler.Callback
{
int playing_time = -1;
boolean playing_paused = false;
String playing_sequence;
int playing_total_time;
/*
* Client interraction
*/
final Messenger incoming_messenger = new Messenger(new Handler(this));
final ArrayList<Messenger> clients = new ArrayList<Messenger>();
@Override
public IBinder onBind(Intent intent)
{
return incoming_messenger.getBinder();
}
@Override
public boolean onUnbind(Intent intent)
{
exit_if_finished();
return true;
}
public boolean handleMessage(Message msg)
{
Bundle b;
switch(msg.what) {
case 'I':
clients.add(msg.replyTo);
client_send_status(msg.replyTo);
client_send_time(msg.replyTo);
client_send_pause(msg.replyTo);
return true;
case 'J':
clients.remove(msg.replyTo);
exit_if_finished();
return true;
case 'R':
b = msg.getData();
decoder_start(b.getString("seq"));
return true;
case 'C':
handle_client_control((char)msg.arg1);
return true;
case 't':
playing_paused = false;
if(msg.arg1 >= 0) {
playing_time = msg.arg1;
client_send_time(null);
} else {
decoder_reap();
}
return true;
case 'e':
b = msg.getData();
client_send_error(null, b.getString("message"));
decoder_reap();
return true;
default:
warn("Unknown message: %s", msg);
return false;
}
}
void handle_client_control(char cmd)
{
switch(cmd) {
case 'S':
decoder_stop();
break;
case 'P':
decoder_pause(true);
break;
case 'R':
decoder_pause(false);
break;
default:
warn("Unknown control: %c", cmd);
}
}
void client_send_status(Messenger client)
{
Bundle b = new Bundle(2);
b.putString("seq", playing_sequence);
b.putInt("duration", playing_total_time);
client_send_message(client, 'S', 0, b);
}
void client_send_time(Messenger client)
{
client_send_message(client, 'T', playing_time, null);
}
void client_send_pause(Messenger client)
{
client_send_message(client, 'P', playing_paused ? 1 : 0, null);
}
void client_send_error(Messenger client, String error)
{
Bundle b = new Bundle(1);
b.putString("message", error);
client_send_message(client, 'E', 0, b);
}
void client_send_message(Messenger client, char code, int arg1, Bundle b)
{
Message msg = Message.obtain(null, code);
msg.arg1 = arg1;
msg.setData(b);
client_send_message(client, msg);
}
void client_send_message(Messenger client, Message msg)
{
if(client == null) {
for(Messenger c : clients)
client_send_message(c, msg);
return;
}
try {
client.send(msg);
} catch(RemoteException e) {
warn("client_send: exception: %s", e);
clients.remove(client);
}
}
/*
* Decoder thread interaction
*/
Binaural_decoder decoder;
Thread decoder_thread;
String playing_next;
void decoder_start(String seq)
{
if(decoder != null) {
decoder_stop();
playing_next = seq;
return;
}
playing_sequence = seq;
playing_total_time = parse_total_time(seq);
playing_time = 0;
playing_paused = false;
decoder = new Binaural_decoder(incoming_messenger, seq);
decoder_thread = new Thread(decoder);
decoder_thread.start();
client_send_status(null);
set_foreground();
}
void decoder_stop()
{
if(decoder == null)
return;
decoder.set_command('S');
}
void decoder_pause(boolean pause)
{
if(decoder == null)
return;
decoder.set_command(pause ? 'P' : 'R');
playing_paused = pause;
client_send_pause(null);
}
void decoder_reap()
{
playing_sequence = null;
client_send_status(null);
if(decoder == null)
return;
stopForeground(true);
while(true) {
warn("reaping decoder");
try {
decoder_thread.join();
warn("decoder reaped");
break;
} catch(InterruptedException e) {
}
}
decoder = null;
decoder_thread = null;
if(playing_next != null) {
String s = playing_next;
playing_next = null;
decoder_start(s);
} else {
exit_if_finished();
}
}
/*
* System interaction
*/
public void exit_if_finished()
{
if(clients.size() == 0 && decoder == null) {
stopSelf();
System.exit(0);
}
}
void set_foreground()
{
Notification notification = new Notification(R.drawable.icon,
null, System.currentTimeMillis());
Intent intent = new Intent();
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setAction(Intent.ACTION_VIEW);
intent.setType("application/x-sbagen-sequence");
PendingIntent pintent = PendingIntent.getActivity(this, 0, intent, 0);
notification.setLatestEventInfo(this, "Binaural player",
null, pintent);
startForeground(1, notification);
}
/*
* Utility functions
*/
final Matcher sequence_time_parser =
Pattern.compile("\\s*\\+(\\d+(?::\\d+)*)\\s+.*").matcher("");
int parse_total_time(String seq)
{
String[] lines = seq.split("\n");
for(int i = lines.length - 1; i >= 0; i--) {
if(lines[i].length() > 0) {
sequence_time_parser.reset(lines[i]);
if(sequence_time_parser.matches()) {
String[] c = sequence_time_parser.group(1).split(":");
int r = 0;
for(int j = 0; j < c.length; j++)
r = r * 60 + Integer.parseInt(c[j]);
return r * 1000;
}
break;
}
}
return -1;
}
static void warn(String fmt, Object... args) {
android.util.Log.v("Binaural_player", String.format(fmt, args));
}
}