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
|
/* $OpenBSD: midicat.c,v 1.6 2022/12/02 22:29:59 cheloha Exp $ */
/*
* Copyright (c) 2015 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 <err.h>
#include <fcntl.h>
#include <sndio.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
void __dead usage(void);
int
main(int argc, char **argv)
{
#define MIDI_BUFSZ 1024
unsigned char buf[MIDI_BUFSZ];
struct mio_hdl *ih, *oh;
char *port0, *port1, *ifile, *ofile;
int ifd, ofd;
int dump, c, i, len, n, sep, mode;
dump = 0;
port0 = port1 = ifile = ofile = NULL;
ih = oh = NULL;
ifd = ofd = -1;
while ((c = getopt(argc, argv, "di:o:q:")) != -1) {
switch (c) {
case 'd':
dump = 1;
break;
case 'q':
if (port0 == NULL)
port0 = optarg;
else if (port1 == NULL)
port1 = optarg;
else {
fputs("too many -q options\n", stderr);
return 1;
}
break;
case 'i':
ifile = optarg;
break;
case 'o':
ofile = optarg;
break;
default:
usage();
}
}
argc -= optind;
argv += optind;
if (argc != 0)
usage();
/* we don't support more than one data flow */
if (ifile != NULL && ofile != NULL) {
fputs("-i and -o are exclusive\n", stderr);
return 1;
}
/* second port makes sense only for port-to-port transfers */
if (port1 != NULL && !(ifile == NULL && ofile == NULL)) {
fputs("too many -q options\n", stderr);
return 1;
}
/* if there're neither files nor ports, then we've nothing to do */
if (port0 == NULL && ifile == NULL && ofile == NULL)
usage();
/* if no port specified, use default one */
if (port0 == NULL)
port0 = MIO_PORTANY;
/* open input or output file (if any) */
if (ifile) {
if (strcmp(ifile, "-") == 0) {
ifile = "stdin";
ifd = STDIN_FILENO;
} else {
ifd = open(ifile, O_RDONLY);
if (ifd == -1) {
perror(ifile);
return 1;
}
}
} else if (ofile) {
if (strcmp(ofile, "-") == 0) {
ofile = "stdout";
ofd = STDOUT_FILENO;
} else {
ofd = open(ofile, O_WRONLY | O_CREAT | O_TRUNC, 0666);
if (ofd == -1) {
perror(ofile);
return 1;
}
}
}
/* open first port for input and output (if output needed) */
if (ofile)
mode = MIO_IN;
else if (ifile)
mode = MIO_OUT;
else if (port1 == NULL)
mode = MIO_IN | MIO_OUT;
else
mode = MIO_IN;
ih = mio_open(port0, mode, 0);
if (ih == NULL) {
fprintf(stderr, "%s: couldn't open port\n", port0);
return 1;
}
/* open second port, output only */
if (port1 == NULL)
oh = ih;
else {
oh = mio_open(port1, MIO_OUT, 0);
if (oh == NULL) {
fprintf(stderr, "%s: couldn't open port\n", port1);
exit(1);
}
}
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
/* transfer until end-of-file or error */
for (;;) {
if (ifile != NULL) {
len = read(ifd, buf, sizeof(buf));
if (len == 0)
break;
if (len == -1) {
perror("stdin");
break;
}
} else {
len = mio_read(ih, buf, sizeof(buf));
if (len == 0) {
fprintf(stderr, "%s: disconnected\n", port0);
break;
}
}
if (ofile != NULL) {
n = write(ofd, buf, len);
if (n != len) {
fprintf(stderr, "%s: short write\n", ofile);
break;
}
} else {
n = mio_write(oh, buf, len);
if (n != len) {
fprintf(stderr, "%s: disconnected\n", port1);
break;
}
}
if (dump) {
for (i = 0; i < len; i++) {
sep = (i % 16 == 15 || i == len - 1) ?
'\n' : ' ';
fprintf(stderr, "%02x%c", buf[i], sep);
}
}
}
/* clean-up */
if (port0)
mio_close(ih);
if (port1)
mio_close(oh);
if (ifile)
close(ifd);
if (ofile)
close(ofd);
return 0;
}
void __dead
usage(void)
{
fprintf(stderr, "usage: midicat [-d] [-i in-file] [-o out-file] "
"[-q in-port] [-q out-port]\n");
exit(1);
}
|