📄 options.c
字号:
/* metaflac - Command-line FLAC metadata editor
* Copyright (C) 2001,2002,2003,2004,2005 Josh Coalson
*
* 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; either version 2
* of the License, or (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "options.h"
#include "usage.h"
#include "utils.h"
#include "FLAC/assert.h"
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
share__getopt format struct; note we don't use short options so we just
set the 'val' field to 0 everywhere to indicate a valid option.
*/
struct share__option long_options_[] = {
/* global options */
{ "preserve-modtime", 0, 0, 0 },
{ "with-filename", 0, 0, 0 },
{ "no-filename", 0, 0, 0 },
{ "no-utf8-convert", 0, 0, 0 },
{ "dont-use-padding", 0, 0, 0 },
{ "no-cued-seekpoints", 0, 0, 0 },
/* shorthand operations */
{ "show-md5sum", 0, 0, 0 },
{ "show-min-blocksize", 0, 0, 0 },
{ "show-max-blocksize", 0, 0, 0 },
{ "show-min-framesize", 0, 0, 0 },
{ "show-max-framesize", 0, 0, 0 },
{ "show-sample-rate", 0, 0, 0 },
{ "show-channels", 0, 0, 0 },
{ "show-bps", 0, 0, 0 },
{ "show-total-samples", 0, 0, 0 },
{ "set-md5sum", 1, 0, 0 }, /* undocumented */
{ "set-min-blocksize", 1, 0, 0 }, /* undocumented */
{ "set-max-blocksize", 1, 0, 0 }, /* undocumented */
{ "set-min-framesize", 1, 0, 0 }, /* undocumented */
{ "set-max-framesize", 1, 0, 0 }, /* undocumented */
{ "set-sample-rate", 1, 0, 0 }, /* undocumented */
{ "set-channels", 1, 0, 0 }, /* undocumented */
{ "set-bps", 1, 0, 0 }, /* undocumented */
{ "set-total-samples", 1, 0, 0 }, /* undocumented */ /* WATCHOUT: used by test/test_flac.sh on windows */
{ "show-vendor-tag", 0, 0, 0 },
{ "show-tag", 1, 0, 0 },
{ "remove-all-tags", 0, 0, 0 },
{ "remove-tag", 1, 0, 0 },
{ "remove-first-tag", 1, 0, 0 },
{ "set-tag", 1, 0, 0 },
{ "import-tags-from", 1, 0, 0 },
{ "export-tags-to", 1, 0, 0 },
{ "show-vc-vendor", 0, 0, 0 }, /* deprecated */
{ "show-vc-field", 1, 0, 0 }, /* deprecated */
{ "remove-vc-all", 0, 0, 0 }, /* deprecated */
{ "remove-vc-field", 1, 0, 0 }, /* deprecated */
{ "remove-vc-firstfield", 1, 0, 0 }, /* deprecated */
{ "set-vc-field", 1, 0, 0 }, /* deprecated */
{ "import-vc-from", 1, 0, 0 }, /* deprecated */
{ "export-vc-to", 1, 0, 0 }, /* deprecated */
{ "import-cuesheet-from", 1, 0, 0 },
{ "export-cuesheet-to", 1, 0, 0 },
{ "add-seekpoint", 1, 0, 0 },
{ "add-replay-gain", 0, 0, 0 },
{ "add-padding", 1, 0, 0 },
/* major operations */
{ "help", 0, 0, 0 },
{ "version", 0, 0, 0 },
{ "list", 0, 0, 0 },
{ "append", 0, 0, 0 },
{ "remove", 0, 0, 0 },
{ "remove-all", 0, 0, 0 },
{ "merge-padding", 0, 0, 0 },
{ "sort-padding", 0, 0, 0 },
/* major operation arguments */
{ "block-number", 1, 0, 0 },
{ "block-type", 1, 0, 0 },
{ "except-block-type", 1, 0, 0 },
{ "data-format", 1, 0, 0 },
{ "application-data-format", 1, 0, 0 },
{ "from-file", 1, 0, 0 },
{0, 0, 0, 0}
};
static FLAC__bool parse_option(int option_index, const char *option_argument, CommandLineOptions *options);
static void append_new_operation(CommandLineOptions *options, Operation operation);
static void append_new_argument(CommandLineOptions *options, Argument argument);
static Operation *append_major_operation(CommandLineOptions *options, OperationType type);
static Operation *append_shorthand_operation(CommandLineOptions *options, OperationType type);
static Operation *find_shorthand_operation(CommandLineOptions *options, OperationType type);
static Argument *append_argument(CommandLineOptions *options, ArgumentType type);
static FLAC__bool parse_md5(const char *src, FLAC__byte dest[16]);
static FLAC__bool parse_uint32(const char *src, FLAC__uint32 *dest);
static FLAC__bool parse_uint64(const char *src, FLAC__uint64 *dest);
static FLAC__bool parse_filename(const char *src, char **dest);
static FLAC__bool parse_vorbis_comment_field_name(const char *field_ref, char **name, const char **violation);
static FLAC__bool parse_add_seekpoint(const char *in, char **out, const char **violation);
static FLAC__bool parse_add_padding(const char *in, unsigned *out);
static FLAC__bool parse_block_number(const char *in, Argument_BlockNumber *out);
static FLAC__bool parse_block_type(const char *in, Argument_BlockType *out);
static FLAC__bool parse_data_format(const char *in, Argument_DataFormat *out);
static FLAC__bool parse_application_data_format(const char *in, FLAC__bool *out);
static void undocumented_warning(const char *opt);
void init_options(CommandLineOptions *options)
{
options->preserve_modtime = false;
/* '2' is a hack to mean "use default if not forced on command line" */
FLAC__ASSERT(true != 2);
options->prefix_with_filename = 2;
options->utf8_convert = true;
options->use_padding = true;
options->cued_seekpoints = true;
options->show_long_help = false;
options->show_version = false;
options->application_data_format_is_hexdump = false;
options->ops.operations = 0;
options->ops.num_operations = 0;
options->ops.capacity = 0;
options->args.arguments = 0;
options->args.num_arguments = 0;
options->args.capacity = 0;
options->args.checks.num_shorthand_ops = 0;
options->args.checks.num_major_ops = 0;
options->args.checks.has_block_type = false;
options->args.checks.has_except_block_type = false;
options->num_files = 0;
options->filenames = 0;
}
FLAC__bool parse_options(int argc, char *argv[], CommandLineOptions *options)
{
int ret;
int option_index = 1;
FLAC__bool had_error = false;
while ((ret = share__getopt_long(argc, argv, "", long_options_, &option_index)) != -1) {
switch (ret) {
case 0:
had_error |= !parse_option(option_index, share__optarg, options);
break;
case '?':
case ':':
had_error = true;
break;
default:
FLAC__ASSERT(0);
break;
}
}
if(options->prefix_with_filename == 2)
options->prefix_with_filename = (argc - share__optind > 1);
if(share__optind >= argc && !options->show_long_help && !options->show_version) {
fprintf(stderr,"ERROR: you must specify at least one FLAC file;\n");
fprintf(stderr," metaflac cannot be used as a pipe\n");
had_error = true;
}
options->num_files = argc - share__optind;
if(options->num_files > 0) {
unsigned i = 0;
if(0 == (options->filenames = (char**)malloc(sizeof(char*) * options->num_files)))
die("out of memory allocating space for file names list");
while(share__optind < argc)
options->filenames[i++] = local_strdup(argv[share__optind++]);
}
if(options->args.checks.num_major_ops > 0) {
if(options->args.checks.num_major_ops > 1) {
fprintf(stderr, "ERROR: you may only specify one major operation at a time\n");
had_error = true;
}
else if(options->args.checks.num_shorthand_ops > 0) {
fprintf(stderr, "ERROR: you may not mix shorthand and major operations\n");
had_error = true;
}
}
/* check for only one FLAC file used with --import-cuesheet-from/--export-cuesheet-to */
if((0 != find_shorthand_operation(options, OP__IMPORT_CUESHEET_FROM) || 0 != find_shorthand_operation(options, OP__EXPORT_CUESHEET_TO)) && options->num_files > 1) {
fprintf(stderr, "ERROR: you may only specify one FLAC file when using '--import-cuesheet-from' or '--export-cuesheet-to'\n");
had_error = true;
}
if(options->args.checks.has_block_type && options->args.checks.has_except_block_type) {
fprintf(stderr, "ERROR: you may not specify both '--block-type' and '--except-block-type'\n");
had_error = true;
}
if(had_error)
short_usage(0);
/*
* We need to create an OP__ADD_SEEKPOINT operation if there is
* not one already, and --import-cuesheet-from was specified but
* --no-cued-seekpoints was not:
*/
if(options->cued_seekpoints) {
Operation *op = find_shorthand_operation(options, OP__IMPORT_CUESHEET_FROM);
if(0 != op) {
Operation *op2 = find_shorthand_operation(options, OP__ADD_SEEKPOINT);
if(0 == op2)
op2 = append_shorthand_operation(options, OP__ADD_SEEKPOINT);
op->argument.import_cuesheet_from.add_seekpoint_link = &(op2->argument.add_seekpoint);
}
}
return !had_error;
}
void free_options(CommandLineOptions *options)
{
unsigned i;
Operation *op;
Argument *arg;
FLAC__ASSERT(0 == options->ops.operations || options->ops.num_operations > 0);
FLAC__ASSERT(0 == options->args.arguments || options->args.num_arguments > 0);
for(i = 0, op = options->ops.operations; i < options->ops.num_operations; i++, op++) {
switch(op->type) {
case OP__SHOW_VC_FIELD:
case OP__REMOVE_VC_FIELD:
case OP__REMOVE_VC_FIRSTFIELD:
if(0 != op->argument.vc_field_name.value)
free(op->argument.vc_field_name.value);
break;
case OP__SET_VC_FIELD:
if(0 != op->argument.vc_field.field)
free(op->argument.vc_field.field);
if(0 != op->argument.vc_field.field_name)
free(op->argument.vc_field.field_name);
if(0 != op->argument.vc_field.field_value)
free(op->argument.vc_field.field_value);
break;
case OP__IMPORT_VC_FROM:
case OP__EXPORT_VC_TO:
case OP__EXPORT_CUESHEET_TO:
if(0 != op->argument.filename.value)
free(op->argument.filename.value);
break;
case OP__IMPORT_CUESHEET_FROM:
if(0 != op->argument.import_cuesheet_from.filename)
free(op->argument.import_cuesheet_from.filename);
break;
case OP__ADD_SEEKPOINT:
if(0 != op->argument.add_seekpoint.specification)
free(op->argument.add_seekpoint.specification);
break;
default:
break;
}
}
for(i = 0, arg = options->args.arguments; i < options->args.num_arguments; i++, arg++) {
switch(arg->type) {
case ARG__BLOCK_NUMBER:
if(0 != arg->value.block_number.entries)
free(arg->value.block_number.entries);
break;
case ARG__BLOCK_TYPE:
case ARG__EXCEPT_BLOCK_TYPE:
if(0 != arg->value.block_type.entries)
free(arg->value.block_type.entries);
break;
case ARG__FROM_FILE:
if(0 != arg->value.from_file.file_name)
free(arg->value.from_file.file_name);
break;
default:
break;
}
}
if(0 != options->ops.operations)
free(options->ops.operations);
if(0 != options->args.arguments)
free(options->args.arguments);
if(0 != options->filenames) {
for(i = 0; i < options->num_files; i++) {
if(0 != options->filenames[i])
free(options->filenames[i]);
}
free(options->filenames);
}
}
/*
* local routines
*/
FLAC__bool parse_option(int option_index, const char *option_argument, CommandLineOptions *options)
{
const char *opt = long_options_[option_index].name;
Operation *op;
Argument *arg;
FLAC__bool ok = true;
if(0 == strcmp(opt, "preserve-modtime")) {
options->preserve_modtime = true;
}
else if(0 == strcmp(opt, "with-filename")) {
options->prefix_with_filename = true;
}
else if(0 == strcmp(opt, "no-filename")) {
options->prefix_with_filename = false;
}
else if(0 == strcmp(opt, "no-utf8-convert")) {
options->utf8_convert = false;
}
else if(0 == strcmp(opt, "dont-use-padding")) {
options->use_padding = false;
}
else if(0 == strcmp(opt, "no-cued-seekpoints")) {
options->cued_seekpoints = false;
}
else if(0 == strcmp(opt, "show-md5sum")) {
(void) append_shorthand_operation(options, OP__SHOW_MD5SUM);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -