X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh.c;h=8e70750511381b425c33f0c7cf8237dc1a47af16;hp=ee55cf0e603d1ff0cfa8b4f1bf55eeb8aba10098;hb=6bcd10bc4ada11a04bc2b7425afe5a8855592cd2;hpb=7c8931ecbbf665d399ffbc101fde88eb8d78af85 diff --git a/afh.c b/afh.c index ee55cf0e..8e707505 100644 --- a/afh.c +++ b/afh.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2012 Andre Noll + * Copyright (C) 2008-2013 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -7,7 +7,6 @@ /** \file afh.c Paraslash's standalone audio format handler tool. */ #include -#include #include "para.h" #include "string.h" @@ -16,6 +15,7 @@ #include "afh.h" #include "error.h" #include "version.h" +#include "ggo.h" static struct afh_args_info conf; INIT_AFH_ERRLISTS; @@ -36,7 +36,7 @@ static void print_chunk_table(struct afh_info *afhi) { int i; - if (!conf.human_given) { + if (conf.parser_friendly_given) { printf("chunk_table: "); for (i = 0; i <= afhi->chunks_total; i++) printf("%u ", afhi->chunk_table[i]); @@ -57,80 +57,15 @@ static void print_chunk_table(struct afh_info *afhi) } } -static int cat_file(struct afh_info *afhi, int audio_format_id, - void *audio_file_data, size_t audio_file_size) +__noreturn static void print_help_and_die(void) { - int ret; - struct timeval stream_start; - long unsigned i, first_chunk, last_chunk; - const char *buf; - char *header; - size_t size; + struct ggo_help h = DEFINE_GGO_HELP(afh); + int d = conf.detailed_help_given; + unsigned flags = d? GPH_STANDARD_FLAGS_DETAILED : GPH_STANDARD_FLAGS; - if (conf.begin_chunk_arg < 0) { - if (-conf.begin_chunk_arg > afhi->chunks_total) - return -ERRNO_TO_PARA_ERROR(EINVAL); - first_chunk = afhi->chunks_total + conf.begin_chunk_arg; - } else - first_chunk = conf.begin_chunk_arg; - if (conf.end_chunk_given) { - if (conf.end_chunk_arg < 0) { - if (-conf.end_chunk_arg > afhi->chunks_total) - return -ERRNO_TO_PARA_ERROR(EINVAL); - last_chunk = afhi->chunks_total + conf.end_chunk_arg; - } else { - if (conf.end_chunk_arg >= afhi->chunks_total) - return -ERRNO_TO_PARA_ERROR(EINVAL); - last_chunk = conf.end_chunk_arg; - } - } else - last_chunk = afhi->chunks_total - 1; - if (first_chunk >= last_chunk) - return -ERRNO_TO_PARA_ERROR(EINVAL); - if (!afhi->chunks_total) - return 1; - /* eliminate the possibility of short writes */ - ret = mark_fd_blocking(STDOUT_FILENO); - if (ret < 0) - return ret; - if (first_chunk > 0 && !conf.no_header_given) { - afh_get_header(afhi, audio_format_id, audio_file_data, audio_file_size, - &header, &size); - if (size > 0) { - PARA_INFO_LOG("writing header (%zu bytes)\n", size); - ret = write_all(STDOUT_FILENO, header, size); - afh_free_header(header, audio_format_id); - if (ret < 0) - return ret; - if (ret != size) - return -E_AFH_SHORT_WRITE; - } - } - PARA_NOTICE_LOG("writing chunks %lu - %lu\n", first_chunk, last_chunk); - gettimeofday(&stream_start, NULL); - for (i = first_chunk; i <= last_chunk; i++) { - struct timeval now, diff, next_chunk; - afh_get_chunk(i, afhi, audio_file_data, &buf, &size); - PARA_DEBUG_LOG("chunk %lu: size %zu\n", i, size); - if (conf.just_in_time_given) { - compute_chunk_time(i - first_chunk, &afhi->chunk_tv, - &stream_start, &next_chunk); - gettimeofday(&now, NULL); - ret = tv_diff(&next_chunk, &now, &diff); - if (ret > 0) { - ret = para_select(1, NULL, NULL, &diff); - if (ret < 0) - return ret; - } - } - if (!size) - continue; - PARA_INFO_LOG("writing chunk %lu\n", i); - ret = write_all(STDOUT_FILENO, buf, size); - if (ret < 0) - return ret; - } - return 1; + ggo_print_help(&h, flags); + printf("supported audio formats: %s\n", AUDIO_FORMAT_HANDLERS); + exit(EXIT_SUCCESS); } /** @@ -149,14 +84,14 @@ int main(int argc, char **argv) struct afh_info afhi; afh_cmdline_parser(argc, argv, &conf); - HANDLE_VERSION_FLAG("afh", conf); loglevel = get_loglevel_by_name(conf.loglevel_arg); + version_handle_flag("afh", conf.version_given); + if (conf.help_given || conf.detailed_help_given) + print_help_and_die(); + afh_init(); ret = -E_AFH_SYNTAX; if (conf.inputs_num == 0) goto out; - if (conf.stream_given && conf.inputs_num != 1) - goto out; - afh_init(); for (i = 0; i < conf.inputs_num; i++) { int ret2; ret = mmap_full_file(conf.inputs[i], O_RDONLY, &audio_file_data, @@ -171,16 +106,11 @@ int main(int argc, char **argv) goto out; audio_format_num = ret; - if (conf.stream_given) - ret = cat_file(&afhi, audio_format_num, - audio_file_data, audio_file_size); - else { - printf("File %d: %s\n", i + 1, conf.inputs[i]); - print_info(audio_format_num, &afhi); - if (conf.chunk_table_given) - print_chunk_table(&afhi); - printf("\n"); - } + printf("File %d: %s\n", i + 1, conf.inputs[i]); + print_info(audio_format_num, &afhi); + if (conf.chunk_table_given) + print_chunk_table(&afhi); + printf("\n"); clear_afhi(&afhi); ret2 = para_munmap(audio_file_data, audio_file_size); if (ret2 < 0 && ret >= 0)