cmdutils.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * Various utilities for command line tools
  3. * Copyright (c) 2000-2003 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <string.h>
  22. #include <stdlib.h>
  23. #include <errno.h>
  24. #include "avformat.h"
  25. #include "cmdutils.h"
  26. #include "avstring.h"
  27. #undef exit
  28. void show_help_options(const OptionDef *options, const char *msg, int mask, int value)
  29. {
  30. const OptionDef *po;
  31. int first;
  32. first = 1;
  33. for(po = options; po->name != NULL; po++) {
  34. char buf[64];
  35. if ((po->flags & mask) == value) {
  36. if (first) {
  37. printf("%s", msg);
  38. first = 0;
  39. }
  40. av_strlcpy(buf, po->name, sizeof(buf));
  41. if (po->flags & HAS_ARG) {
  42. av_strlcat(buf, " ", sizeof(buf));
  43. av_strlcat(buf, po->argname, sizeof(buf));
  44. }
  45. printf("-%-17s %s\n", buf, po->help);
  46. }
  47. }
  48. }
  49. static const OptionDef* find_option(const OptionDef *po, const char *name){
  50. while (po->name != NULL) {
  51. if (!strcmp(name, po->name))
  52. break;
  53. po++;
  54. }
  55. return po;
  56. }
  57. void parse_options(int argc, char **argv, const OptionDef *options)
  58. {
  59. const char *opt, *arg;
  60. int optindex, handleoptions=1;
  61. const OptionDef *po;
  62. /* parse options */
  63. optindex = 1;
  64. while (optindex < argc) {
  65. opt = argv[optindex++];
  66. if (handleoptions && opt[0] == '-' && opt[1] != '\0') {
  67. if (opt[1] == '-' && opt[2] == '\0') {
  68. handleoptions = 0;
  69. continue;
  70. }
  71. po= find_option(options, opt + 1);
  72. if (!po->name)
  73. po= find_option(options, "default");
  74. if (!po->name) {
  75. unknown_opt:
  76. fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], opt);
  77. exit(1);
  78. }
  79. arg = NULL;
  80. if (po->flags & HAS_ARG) {
  81. arg = argv[optindex++];
  82. if (!arg) {
  83. fprintf(stderr, "%s: missing argument for option '%s'\n", argv[0], opt);
  84. exit(1);
  85. }
  86. }
  87. if (po->flags & OPT_STRING) {
  88. char *str;
  89. str = av_strdup(arg);
  90. *po->u.str_arg = str;
  91. } else if (po->flags & OPT_BOOL) {
  92. *po->u.int_arg = 1;
  93. } else if (po->flags & OPT_INT) {
  94. *po->u.int_arg = atoi(arg);
  95. } else if (po->flags & OPT_INT64) {
  96. *po->u.int64_arg = strtoll(arg, (char **)NULL, 10);
  97. } else if (po->flags & OPT_FLOAT) {
  98. *po->u.float_arg = atof(arg);
  99. } else if (po->flags & OPT_FUNC2) {
  100. if(po->u.func2_arg(opt+1, arg)<0)
  101. goto unknown_opt;
  102. } else {
  103. po->u.func_arg(arg);
  104. }
  105. } else {
  106. parse_arg_file(opt);
  107. }
  108. }
  109. }
  110. void print_error(const char *filename, int err)
  111. {
  112. switch(err) {
  113. case AVERROR_NUMEXPECTED:
  114. fprintf(stderr, "%s: Incorrect image filename syntax.\n"
  115. "Use '%%d' to specify the image number:\n"
  116. " for img1.jpg, img2.jpg, ..., use 'img%%d.jpg';\n"
  117. " for img001.jpg, img002.jpg, ..., use 'img%%03d.jpg'.\n",
  118. filename);
  119. break;
  120. case AVERROR_INVALIDDATA:
  121. fprintf(stderr, "%s: Error while parsing header\n", filename);
  122. break;
  123. case AVERROR_NOFMT:
  124. fprintf(stderr, "%s: Unknown format\n", filename);
  125. break;
  126. case AVERROR(EIO):
  127. fprintf(stderr, "%s: I/O error occured\n"
  128. "Usually that means that input file is truncated and/or corrupted.\n",
  129. filename);
  130. break;
  131. case AVERROR(ENOMEM):
  132. fprintf(stderr, "%s: memory allocation error occured\n", filename);
  133. break;
  134. case AVERROR(ENOENT):
  135. fprintf(stderr, "%s: no such file or directory\n", filename);
  136. break;
  137. default:
  138. fprintf(stderr, "%s: Error while opening file\n", filename);
  139. break;
  140. }
  141. }