Files
cuetools/tools/cueconvert.c
2005-02-09 03:13:08 +00:00

121 lines
2.4 KiB
C

/*
* cueconvert.c -- convert between cue/toc formats
*
* Copyright (C) 2004 Svend Sorensen
* For license terms, see the file COPYING in this distribution.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include "cuefile.h"
char *progname;
void usage (int status)
{
if (0 == status) {
fprintf(stdout, "%s: usage: cueconvert [option...] [infile [outfile]]\n", progname);
fputs("\
\n\
OPTIONS\n\
-h, --help print usage\n\
-i, --input-format cue|toc set format of input file\n\
-o, --output-format cue|toc set format of output file\n\
", stdout);
} else {
fprintf(stderr, "run `%s --help' for usage\n", progname);
}
exit (status);
}
int convert (char *iname, int iformat, char *oname, int oformat)
{
Cd *cd = NULL;
if (NULL == (cd = cf_parse(iname, &iformat))) {
fprintf(stderr, "input file error\n");
return -1;
}
if (UNKNOWN == oformat) {
/* first use file suffix */
if (UNKNOWN == (oformat = cf_format_from_suffix(oname))) {
/* then use opposite of input format */
switch(iformat) {
case CUE:
oformat = TOC;
break;
case TOC:
oformat = CUE;
break;
}
}
}
return cf_print(oname, &oformat, cd);
}
int main (int argc, char **argv)
{
int iformat = UNKNOWN;
int oformat = UNKNOWN;
/* option variables */
char c;
/* getopt_long() variables */
extern char *optarg;
extern int optind;
static struct option longopts[] = {
{"help", no_argument, NULL, 'h'},
{"input-format", required_argument, NULL, 'i'},
{"output-format", required_argument, NULL, 'o'},
{NULL, 0, NULL, 0}
};
progname = *argv;
while (-1 != (c = getopt_long(argc, argv, "hi:o:", longopts, NULL))) {
switch (c) {
case 'h':
usage(0);
break;
case 'i':
if (0 == strcmp("cue", optarg))
iformat = CUE;
else if (0 == strcmp("toc", optarg))
iformat = TOC;
else
fprintf(stderr, "%s: illegal format `%s'\n", progname, optarg);
usage(1);
break;
case 'o':
if (0 == strcmp("cue", optarg))
oformat = CUE;
else if (0 == strcmp("toc", optarg))
oformat = TOC;
else
fprintf(stderr, "%s: illegal format `%s'\n", progname, optarg);
usage(1);
break;
default:
usage(1);
break;
}
}
if (optind == argc) {
convert("-", iformat, "-", oformat);
} else if (optind == argc - 1) {
convert(argv[optind], iformat, "-", oformat);
} else if (optind == argc - 2) {
convert(argv[optind], iformat, argv[optind + 1], oformat);
} else {
usage(1);
}
return 0;
}