[BACK]Return to main.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/main.c between version 1.246 and 1.247

version 1.246, 2015/10/10 13:21:18 version 1.247, 2015/10/11 21:12:54
Line 24 
Line 24 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <errno.h>  #include <err.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <glob.h>  #include <glob.h>
 #include <signal.h>  #include <signal.h>
Line 109  static int    toptions(struct curparse *, char *);
Line 109  static int    toptions(struct curparse *, char *);
 static  void              usage(enum argmode) __attribute__((noreturn));  static  void              usage(enum argmode) __attribute__((noreturn));
 static  int               woptions(struct curparse *, char *);  static  int               woptions(struct curparse *, char *);
   
   extern  char             *__progname;
   
 static  const int sec_prios[] = {1, 4, 5, 8, 6, 3, 7, 2, 9};  static  const int sec_prios[] = {1, 4, 5, 8, 6, 3, 7, 2, 9};
 static  char              help_arg[] = "help";  static  char              help_arg[] = "help";
 static  char             *help_argv[] = {help_arg, NULL};  static  char             *help_argv[] = {help_arg, NULL};
 static  const char       *progname;  
 static  enum mandoclevel  rc;  static  enum mandoclevel  rc;
   
   
Line 139  main(int argc, char *argv[])
Line 140  main(int argc, char *argv[])
         int              use_pager;          int              use_pager;
         int              c;          int              c;
   
   #if !HAVE_PROGNAME
         if (argc < 1)          if (argc < 1)
                 progname = "mandoc";                  __progname = mandoc_strdup("mandoc");
         else if ((progname = strrchr(argv[0], '/')) == NULL)          else if ((__progname = strrchr(argv[0], '/')) == NULL)
                 progname = argv[0];                  __progname = argv[0];
         else          else
                 ++progname;                  ++__progname;
   #endif
   
 #if HAVE_SQLITE3  #if HAVE_SQLITE3
         if (strcmp(progname, BINM_MAKEWHATIS) == 0)          if (strcmp(__progname, BINM_MAKEWHATIS) == 0)
                 return mandocdb(argc, argv);                  return mandocdb(argc, argv);
 #endif  #endif
   
Line 160  main(int argc, char *argv[])
Line 163  main(int argc, char *argv[])
         memset(&search, 0, sizeof(struct mansearch));          memset(&search, 0, sizeof(struct mansearch));
         search.outkey = "Nd";          search.outkey = "Nd";
   
         if (strcmp(progname, BINM_MAN) == 0)          if (strcmp(__progname, BINM_MAN) == 0)
                 search.argmode = ARG_NAME;                  search.argmode = ARG_NAME;
         else if (strcmp(progname, BINM_APROPOS) == 0)          else if (strcmp(__progname, BINM_APROPOS) == 0)
                 search.argmode = ARG_EXPR;                  search.argmode = ARG_EXPR;
         else if (strcmp(progname, BINM_WHATIS) == 0)          else if (strcmp(__progname, BINM_WHATIS) == 0)
                 search.argmode = ARG_WORD;                  search.argmode = ARG_WORD;
         else if (strncmp(progname, "help", 4) == 0)          else if (strncmp(__progname, "help", 4) == 0)
                 search.argmode = ARG_NAME;                  search.argmode = ARG_NAME;
         else          else
                 search.argmode = ARG_FILE;                  search.argmode = ARG_FILE;
Line 207  main(int argc, char *argv[])
Line 210  main(int argc, char *argv[])
                         break;                          break;
                 case 'I':                  case 'I':
                         if (strncmp(optarg, "os=", 3)) {                          if (strncmp(optarg, "os=", 3)) {
                                 fprintf(stderr,                                  warnx("-I %s: Bad argument", optarg);
                                     "%s: -I %s: Bad argument\n",  
                                     progname, optarg);  
                                 return (int)MANDOCLEVEL_BADARG;                                  return (int)MANDOCLEVEL_BADARG;
                         }                          }
                         if (defos) {                          if (defos) {
                                 fprintf(stderr,                                  warnx("-I %s: Duplicate argument", optarg);
                                     "%s: -I %s: Duplicate argument\n",  
                                     progname, optarg);  
                                 return (int)MANDOCLEVEL_BADARG;                                  return (int)MANDOCLEVEL_BADARG;
                         }                          }
                         defos = mandoc_strdup(optarg + 3);                          defos = mandoc_strdup(optarg + 3);
Line 308  main(int argc, char *argv[])
Line 307  main(int argc, char *argv[])
          */           */
   
         if (search.argmode == ARG_NAME) {          if (search.argmode == ARG_NAME) {
                 if (*progname == 'h') {                  if (*__progname == 'h') {
                         if (argc == 0) {                          if (argc == 0) {
                                 argv = help_argv;                                  argv = help_argv;
                                 argc = 1;                                  argc = 1;
Line 364  main(int argc, char *argv[])
Line 363  main(int argc, char *argv[])
                                 fs_search(&search, &conf.manpath,                                  fs_search(&search, &conf.manpath,
                                     argc, argv, &res, &sz);                                      argc, argv, &res, &sz);
                         else                          else
                                 fprintf(stderr,                                  warnx("nothing appropriate");
                                     "%s: nothing appropriate\n",  
                                     progname);  
                 }                  }
   
                 if (sz == 0) {                  if (sz == 0) {
Line 577  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 574  fs_lookup(const struct manpaths *paths, size_t ipath,
             paths->paths[ipath], sec, name);              paths->paths[ipath], sec, name);
         globres = glob(file, 0, NULL, &globinfo);          globres = glob(file, 0, NULL, &globinfo);
         if (globres != 0 && globres != GLOB_NOMATCH)          if (globres != 0 && globres != GLOB_NOMATCH)
                 fprintf(stderr, "%s: %s: glob: %s\n",                  warn("%s: glob", file);
                     progname, file, strerror(errno));  
         free(file);          free(file);
         if (globres == 0)          if (globres == 0)
                 file = mandoc_strdup(*globinfo.gl_pathv);                  file = mandoc_strdup(*globinfo.gl_pathv);
Line 588  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 584  fs_lookup(const struct manpaths *paths, size_t ipath,
   
 found:  found:
 #if HAVE_SQLITE3  #if HAVE_SQLITE3
         fprintf(stderr, "%s: outdated mandoc.db lacks %s(%s) entry, run "          warnx("outdated mandoc.db lacks %s(%s) entry, run makewhatis %s\n",
             "makewhatis %s\n", progname, name, sec, paths->paths[ipath]);              name, sec, paths->paths[ipath]);
 #endif  #endif
         *res = mandoc_reallocarray(*res, ++*ressz, sizeof(struct manpage));          *res = mandoc_reallocarray(*res, ++*ressz, sizeof(struct manpage));
         page = *res + (*ressz - 1);          page = *res + (*ressz - 1);
Line 631  fs_search(const struct mansearch *cfg, const struct ma
Line 627  fs_search(const struct mansearch *cfg, const struct ma
                                         return;                                          return;
                 }                  }
                 if (*ressz == lastsz)                  if (*ressz == lastsz)
                         fprintf(stderr,                          warnx("No entry for %s in the manual.", *argv);
                             "%s: No entry for %s in the manual.\n",  
                             progname, *argv);  
                 lastsz = *ressz;                  lastsz = *ressz;
                 argv++;                  argv++;
                 argc--;                  argc--;
Line 804  done:
Line 798  done:
         return;          return;
   
 fail:  fail:
         fprintf(stderr, "%s: %s: SYSERR: %s: %s",          warn("%s: SYSERR: %s", file, syscall);
             progname, file, syscall, strerror(errno));  
         if (rc < MANDOCLEVEL_SYSERR)          if (rc < MANDOCLEVEL_SYSERR)
                 rc = MANDOCLEVEL_SYSERR;                  rc = MANDOCLEVEL_SYSERR;
 }  }
Line 823  koptions(int *options, char *arg)
Line 816  koptions(int *options, char *arg)
         } else if ( ! strcmp(arg, "us-ascii")) {          } else if ( ! strcmp(arg, "us-ascii")) {
                 *options &= ~(MPARSE_UTF8 | MPARSE_LATIN1);                  *options &= ~(MPARSE_UTF8 | MPARSE_LATIN1);
         } else {          } else {
                 fprintf(stderr, "%s: -K %s: Bad argument\n",                  warnx("-K %s: Bad argument", arg);
                     progname, arg);  
                 return 0;                  return 0;
         }          }
         return 1;          return 1;
Line 843  moptions(int *options, char *arg)
Line 835  moptions(int *options, char *arg)
         else if (0 == strcmp(arg, "an"))          else if (0 == strcmp(arg, "an"))
                 *options |= MPARSE_MAN;                  *options |= MPARSE_MAN;
         else {          else {
                 fprintf(stderr, "%s: -m %s: Bad argument\n",                  warnx("-m %s: Bad argument", arg);
                     progname, arg);  
                 return 0;                  return 0;
         }          }
   
Line 877  toptions(struct curparse *curp, char *arg)
Line 868  toptions(struct curparse *curp, char *arg)
         else if (0 == strcmp(arg, "pdf"))          else if (0 == strcmp(arg, "pdf"))
                 curp->outtype = OUTT_PDF;                  curp->outtype = OUTT_PDF;
         else {          else {
                 fprintf(stderr, "%s: -T %s: Bad argument\n",                  warnx("-T %s: Bad argument", arg);
                     progname, arg);  
                 return 0;                  return 0;
         }          }
   
Line 920  woptions(struct curparse *curp, char *arg)
Line 910  woptions(struct curparse *curp, char *arg)
                         curp->wlevel = MANDOCLEVEL_BADARG;                          curp->wlevel = MANDOCLEVEL_BADARG;
                         break;                          break;
                 default:                  default:
                         fprintf(stderr, "%s: -W %s: Bad argument\n",                          warnx("-W %s: Bad argument", o);
                             progname, o);  
                         return 0;                          return 0;
                 }                  }
         }          }
Line 935  mmsg(enum mandocerr t, enum mandoclevel lvl,
Line 924  mmsg(enum mandocerr t, enum mandoclevel lvl,
 {  {
         const char      *mparse_msg;          const char      *mparse_msg;
   
         fprintf(stderr, "%s: %s:", progname, file);          fprintf(stderr, "%s: %s:", __progname, file);
   
         if (line)          if (line)
                 fprintf(stderr, "%d:%d:", line, col + 1);                  fprintf(stderr, "%d:%d:", line, col + 1);
Line 1001  spawn_pager(struct tag_files *tag_files)
Line 990  spawn_pager(struct tag_files *tag_files)
   
         switch (pager_pid = fork()) {          switch (pager_pid = fork()) {
         case -1:          case -1:
                 fprintf(stderr, "%s: fork: %s\n",                  err((int)MANDOCLEVEL_SYSERR, "fork");
                     progname, strerror(errno));  
                 exit((int)MANDOCLEVEL_SYSERR);  
         case 0:          case 0:
                 break;                  break;
         default:          default:
Line 1012  spawn_pager(struct tag_files *tag_files)
Line 999  spawn_pager(struct tag_files *tag_files)
   
         /* The child process becomes the pager. */          /* The child process becomes the pager. */
   
         if (dup2(tag_files->ofd, STDOUT_FILENO) == -1) {          if (dup2(tag_files->ofd, STDOUT_FILENO) == -1)
                 fprintf(stderr, "pager: stdout: %s\n", strerror(errno));                  err((int)MANDOCLEVEL_SYSERR, "pager stdout");
                 exit((int)MANDOCLEVEL_SYSERR);  
         }  
         close(tag_files->ofd);          close(tag_files->ofd);
         close(tag_files->tfd);          close(tag_files->tfd);
         execvp(argv[0], argv);          execvp(argv[0], argv);
         fprintf(stderr, "%s: exec %s: %s\n",          err((int)MANDOCLEVEL_SYSERR, "exec %s", argv[0]);
             progname, argv[0], strerror(errno));  
         exit((int)MANDOCLEVEL_SYSERR);  
 }  }

Legend:
Removed from v.1.246  
changed lines
  Added in v.1.247

CVSweb