Skip to content

Commit

Permalink
aseqsend: Support long options
Browse files Browse the repository at this point in the history
Add the support for long-style options such as --verbose.

Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Jul 22, 2024
1 parent c95db63 commit d480eac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
16 changes: 8 additions & 8 deletions seq/aseqsend/aseqsend.1
Original file line number Diff line number Diff line change
Expand Up @@ -21,35 +21,35 @@ name. A port is specified by its number; for port 0 of a client, the
.SH OPTIONS

.TP
\-h
\-h, \-\-help
Prints a list of options.

.TP
\-V
\-V, \-\-version
Prints the current version.

.TP
\-l
\-l, \-\-list
Prints a list of possible output ports.

.TP
\-v
\-v, \-\-verbose
Prints number of bytes actually sent

.TP
\-p
\-p, -\-port=client:port
Target port by number or name

.TP
\-s
\-s, \-\-file=filename
Send raw binary data from given file name

.TP
\-i
\-i, \-\-interval=msec
Interval between SysEx messages in miliseconds

.TP
\-u
\-u, \-\-ump=version
Specify the MIDI version. 0 for the legacy MIDI 1.0 (default),
1 for UMP MIDI 1.0 protocol and 2 for UMP MIDI 2.0 protocol.

Expand Down
13 changes: 12 additions & 1 deletion seq/aseqsend/aseqsend.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,17 @@ static int msg_byte_in_range(mbyte_t *data, mbyte_t len)

int main(int argc, char *argv[])
{
static const struct option long_options[] = {
{"help", 0, NULL, 'h'},
{"version", 0, NULL, 'V'},
{"verbose", 0, NULL, 'v'},
{"list", 0, NULL, 'l'},
{"port", 1, NULL, 'p'},
{"file", 1, NULL, 's'},
{"interval", 1, NULL, 'i'},
{"ump", 1, NULL, 'u'},
{0}
};
char c = 0;
char do_send_file = 0;
char do_port_list = 0;
Expand All @@ -370,7 +381,7 @@ int main(int argc, char *argv[])
int sent_data_c;
int k;

while ((c = getopt(argc, argv, "hi:Vvlp:s:u:")) != -1) {
while ((c = getopt_long(argc, argv, "hi:Vvlp:s:u:", long_options, NULL)) != -1) {
switch (c) {
case 'h':
usage();
Expand Down

0 comments on commit d480eac

Please sign in to comment.