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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
|
/* $OpenBSD: midi.c,v 1.7 2012/12/20 16:15:55 ratchov Exp $ */
/*
* Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "abuf.h"
#include "defs.h"
#include "dev.h"
#include "file.h"
#include "midi.h"
#include "miofile.h"
#include "sysex.h"
#include "utils.h"
/*
* input data rate is XFER / TIMO (in bytes per microsecond),
* it must be slightly larger than the MIDI standard 3125 bytes/s
*/
#define MIDI_XFER 1
#define MIDI_TIMO 100000
int port_open(struct port *);
void port_imsg(void *, unsigned char *, int);
void port_omsg(void *, unsigned char *, int);
void port_fill(void *, int);
void port_exit(void *);
struct midiops port_midiops = {
port_imsg,
port_omsg,
port_fill,
port_exit
};
#define MIDI_NEP 32
struct midi midi_ep[MIDI_NEP];
struct timo midi_timo;
struct port *port_list = NULL;
unsigned int midi_portnum = 0;
struct midithru {
unsigned int txmask, rxmask;
#define MIDITHRU_NMAX 32
} midithru[MIDITHRU_NMAX];
/*
* length of voice and common messages (status byte included)
*/
unsigned int voice_len[] = { 3, 3, 3, 3, 2, 2, 3 };
unsigned int common_len[] = { 0, 2, 3, 2, 0, 0, 1, 1 };
void
midi_log(struct midi *ep)
{
log_puts("midi");
log_putu(ep - midi_ep);
}
void
midi_ontimo(void *arg)
{
int i;
struct midi *ep;
for (i = MIDI_NEP, ep = midi_ep; i > 0; i--, ep++) {
}
timo_add(&midi_timo, MIDI_TIMO);
}
void
midi_init(void)
{
timo_set(&midi_timo, midi_ontimo, NULL);
timo_add(&midi_timo, MIDI_TIMO);
}
void
midi_done(void)
{
timo_del(&midi_timo);
}
struct midi *
midi_new(struct midiops *ops, void *arg, int mode)
{
int i;
struct midi *ep;
for (i = 0, ep = midi_ep;; i++, ep++) {
if (i == MIDI_NEP)
return NULL;
if (ep->ops == NULL)
break;
}
ep->ops = ops;
ep->arg = arg;
ep->used = 0;
ep->len = 0;
ep->idx = 0;
ep->st = 0;
ep->txmask = 0;
ep->self = 1 << i;
ep->tickets = 0;
ep->mode = mode;
/*
* the output buffer is the client intput
*/
if (ep->mode & MODE_MIDIIN)
abuf_init(&ep->obuf, MIDI_BUFSZ);
midi_tickets(ep);
return ep;
}
void
midi_del(struct midi *ep)
{
int i;
struct midi *peer;
ep->txmask = 0;
for (i = 0; i < MIDI_NEP; i++) {
peer = midi_ep + i;
if (peer->txmask & ep->self) {
peer->txmask &= ~ep->self;
midi_tickets(peer);
}
}
for (i = 0; i < MIDITHRU_NMAX; i++) {
midithru[i].txmask &= ~ep->self;
midithru[i].rxmask &= ~ep->self;
}
ep->ops = NULL;
if (ep->mode & MODE_MIDIIN) {
abuf_done(&ep->obuf);
}
}
/*
* connect two midi endpoints
*/
void
midi_link(struct midi *ep, struct midi *peer)
{
if (ep->mode & MODE_MIDIOUT) {
ep->txmask |= peer->self;
midi_tickets(ep);
}
if (ep->mode & MODE_MIDIIN) {
#ifdef DEBUG
if (ep->obuf.used > 0) {
midi_log(ep);
log_puts(": linked with non-empty buffer\n");
panic();
}
#endif
/* ep has empry buffer, so no need to call midi_tickets() */
peer->txmask |= ep->self;
}
}
/*
* add the midi endpoint in the ``tag'' midi thru box
*/
void
midi_tag(struct midi *ep, unsigned int tag)
{
struct midi *peer;
struct midithru *t = midithru + tag;
int i;
if (ep->mode & MODE_MIDIOUT) {
ep->txmask |= t->txmask;
midi_tickets(ep);
}
if (ep->mode & MODE_MIDIIN) {
#ifdef DEBUG
if (ep->obuf.used > 0) {
midi_log(ep);
log_puts(": tagged with non-empty buffer\n");
panic();
}
#endif
for (i = 0; i < MIDI_NEP; i++) {
if (!(t->rxmask & (1 << i)))
continue;
peer = midi_ep + i;
peer->txmask |= ep->self;
}
}
if (ep->mode & MODE_MIDIOUT)
t->rxmask |= ep->self;
if (ep->mode & MODE_MIDIIN)
t->txmask |= ep->self;
}
/*
* broadcast the given message to other endpoints
*/
void
midi_send(struct midi *iep, unsigned char *msg, int size)
{
struct midi *oep;
int i;
#ifdef DEBUG
if (log_level >= 4) {
midi_log(iep);
log_puts(": sending:");
for (i = 0; i < size; i++) {
log_puts(" ");
log_putx(msg[i]);
}
log_puts("\n");
}
#endif
for (i = 0; i < MIDI_NEP ; i++) {
if ((iep->txmask & (1 << i)) == 0)
continue;
oep = midi_ep + i;
if (msg[0] <= 0x7f) {
if (oep->owner != iep)
continue;
} else if (msg[0] <= 0xf7)
oep->owner = iep;
#ifdef DEBUG
if (log_level >= 4) {
midi_log(iep);
log_puts(" -> ");
midi_log(oep);
log_puts("\n");
}
#endif
oep->ops->omsg(oep->arg, msg, size);
}
}
/*
* determine if we have gained more input tickets, and if so call the
* fill() call-back to notify the i/o layer that it can send more data
*/
void
midi_tickets(struct midi *iep)
{
int i, tickets, avail, maxavail;
struct midi *oep;
maxavail = MIDI_BUFSZ;
for (i = 0; i < MIDI_NEP ; i++) {
if ((iep->txmask & (1 << i)) == 0)
continue;
oep = midi_ep + i;
avail = oep->obuf.len - oep->obuf.used;
if (maxavail > avail)
maxavail = avail;
}
/*
* in the worst case output message is twice the
* input message (2-byte messages with running status)
*/
tickets = maxavail / 2 - iep->tickets;
if (tickets > 0) {
iep->tickets += tickets;
iep->ops->fill(iep->arg, tickets);
}
}
/*
* recalculate tickets of endpoints sending data to this one
*/
void
midi_fill(struct midi *oep)
{
int i;
struct midi *iep;
for (i = 0; i < MIDI_NEP; i++) {
iep = midi_ep + i;
if (iep->txmask & oep->self)
midi_tickets(iep);
}
}
/*
* parse then give data chunk, and calling imsg() for each message
*/
void
midi_in(struct midi *iep, unsigned char *idata, int icount)
{
int i;
unsigned char c;
for (i = 0; i < icount; i++) {
c = *idata++;
if (c >= 0xf8) {
if (c != MIDI_ACK)
iep->ops->imsg(iep->arg, &c, 1);
} else if (c == SYSEX_END) {
if (iep->st == SYSEX_START) {
iep->msg[iep->idx++] = c;
iep->ops->imsg(iep->arg, iep->msg, iep->idx);
}
iep->st = 0;
iep->idx = 0;
} else if (c >= 0xf0) {
iep->msg[0] = c;
iep->len = common_len[c & 7];
iep->st = c;
iep->idx = 1;
} else if (c >= 0x80) {
iep->msg[0] = c;
iep->len = voice_len[(c >> 4) & 7];
iep->st = c;
iep->idx = 1;
} else if (iep->st) {
if (iep->idx == 0 && iep->st != SYSEX_START)
iep->msg[iep->idx++] = iep->st;
iep->msg[iep->idx++] = c;
if (iep->idx == iep->len) {
iep->ops->imsg(iep->arg, iep->msg, iep->idx);
if (iep->st >= 0xf0)
iep->st = 0;
iep->idx = 0;
} else if (iep->idx == MIDI_MSGMAX) {
/* sysex continued */
iep->ops->imsg(iep->arg, iep->msg, iep->idx);
iep->idx = 0;
}
}
}
iep->tickets -= icount;
if (iep->tickets < 0)
iep->tickets = 0;
midi_tickets(iep);
}
/*
* store the given message in the output buffer
*/
void
midi_out(struct midi *oep, unsigned char *idata, int icount)
{
unsigned char *odata;
int ocount;
#ifdef DEBUG
int i;
#endif
while (icount > 0) {
if (oep->obuf.used == oep->obuf.len) {
#ifdef DEBUG
if (log_level >= 2) {
midi_log(oep);
log_puts(": too slow, discarding ");
log_putu(oep->obuf.used);
log_puts(" bytes\n");
}
#endif
abuf_rdiscard(&oep->obuf, oep->obuf.used);
oep->owner = NULL;
return;
}
odata = abuf_wgetblk(&oep->obuf, &ocount);
if (ocount > icount)
ocount = icount;
memcpy(odata, idata, ocount);
#ifdef DEBUG
if (log_level >= 4) {
midi_log(oep);
log_puts(": out: ");
for (i = 0; i < ocount; i++) {
log_puts(" ");
log_putx(odata[i]);
}
log_puts("\n");
}
#endif
abuf_wcommit(&oep->obuf, ocount);
icount -= ocount;
idata += ocount;
}
}
#ifdef DEBUG
void
port_log(struct port *p)
{
midi_log(p->midi);
}
#endif
void
port_imsg(void *arg, unsigned char *msg, int size)
{
struct port *p = arg;
midi_send(p->midi, msg, size);
}
void
port_omsg(void *arg, unsigned char *msg, int size)
{
struct port *p = arg;
midi_out(p->midi, msg, size);
}
void
port_fill(void *arg, int count)
{
/* no flow control */
}
void
port_exit(void *arg)
{
#ifdef DEBUG
struct port *p = arg;
if (log_level >= 3) {
port_log(p);
log_puts(": port exit\n");
panic();
}
#endif
}
/*
* create a new midi port
*/
struct port *
port_new(char *path, unsigned int mode, int hold)
{
struct port *c;
c = xmalloc(sizeof(struct port));
c->path = path;
c->state = PORT_CFG;
c->hold = hold;
c->midi = midi_new(&port_midiops, c, mode);
midi_portnum++;
c->next = port_list;
port_list = c;
return c;
}
/*
* destroy the given midi port
*/
void
port_del(struct port *c)
{
struct port **p;
if (c->state != PORT_CFG)
port_close(c);
midi_del(c->midi);
for (p = &port_list; *p != c; p = &(*p)->next) {
#ifdef DEBUG
if (*p == NULL) {
log_puts("port to delete not on list\n");
panic();
}
#endif
}
*p = c->next;
xfree(c);
}
int
port_ref(struct port *c)
{
#ifdef DEBUG
if (log_level >= 3) {
port_log(c);
log_puts(": port requested\n");
}
#endif
if (c->state == PORT_CFG && !port_open(c))
return 0;
return 1;
}
void
port_unref(struct port *c)
{
int i, rxmask;
#ifdef DEBUG
if (log_level >= 3) {
port_log(c);
log_puts(": port released\n");
}
#endif
for (rxmask = 0, i = 0; i < MIDI_NEP; i++)
rxmask |= midi_ep[i].txmask;
if ((rxmask & c->midi->self) == 0 && c->state == PORT_INIT && !c->hold)
port_drain(c);
}
struct port *
port_bynum(int num)
{
struct port *p;
for (p = port_list; p != NULL; p = p->next) {
if (num-- == 0)
return p;
}
return NULL;
}
int
port_open(struct port *c)
{
if (!port_mio_open(c)) {
if (log_level >= 1) {
log_puts(c->path);
log_puts(": failed to open midi port\n");
}
return 0;
}
c->state = PORT_INIT;
return 1;
}
int
port_close(struct port *c)
{
int i;
struct midi *ep;
#ifdef DEBUG
if (c->state == PORT_CFG) {
port_log(c);
log_puts(": can't close port (not opened)\n");
panic();
}
#endif
c->state = PORT_CFG;
port_mio_close(c);
for (i = 0; i < MIDI_NEP; i++) {
ep = midi_ep + i;
if ((ep->txmask & c->midi->self) ||
(c->midi->txmask & ep->self))
ep->ops->exit(ep->arg);
}
return 1;
}
void
port_drain(struct port *c)
{
struct midi *ep = c->midi;
if (!(ep->mode & MODE_MIDIOUT) || ep->obuf.used == 0)
port_close(c);
else {
c->state = PORT_DRAIN;
#ifdef DEBUG
if (log_level >= 3) {
port_log(c);
log_puts(": draining\n");
}
#endif
}
}
int
port_init(struct port *c)
{
if (c->hold)
return port_open(c);
return 1;
}
void
port_done(struct port *c)
{
if (c->state == PORT_INIT)
port_drain(c);
}
|