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

Diff for /mandoc/main.c between version 1.245 and 1.250

version 1.245, 2015/10/06 18:32:19 version 1.250, 2015/10/19 19:51:22
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 59  enum outmode {
Line 59  enum outmode {
         OUTMODE_ONE          OUTMODE_ONE
 };  };
   
 typedef void            (*out_mdoc)(void *, const struct roff_man *);  
 typedef void            (*out_man)(void *, const struct roff_man *);  
 typedef void            (*out_free)(void *);  
   
 enum    outt {  enum    outt {
         OUTT_ASCII = 0, /* -Tascii */          OUTT_ASCII = 0, /* -Tascii */
         OUTT_LOCALE,    /* -Tlocale */          OUTT_LOCALE,    /* -Tlocale */
Line 77  enum outt {
Line 73  enum outt {
   
 struct  curparse {  struct  curparse {
         struct mparse    *mp;          struct mparse    *mp;
         struct mchars    *mchars;       /* character table */  
         enum mandoclevel  wlevel;       /* ignore messages below this */          enum mandoclevel  wlevel;       /* ignore messages below this */
         int               wstop;        /* stop after a file with a warning */          int               wstop;        /* stop after a file with a warning */
         enum outt         outtype;      /* which output to use */          enum outt         outtype;      /* which output to use */
         out_mdoc          outmdoc;      /* mdoc output ptr */  
         out_man           outman;       /* man output ptr */  
         out_free          outfree;      /* free output ptr */  
         void             *outdata;      /* data for output */          void             *outdata;      /* data for output */
         struct manoutput *outopts;      /* output options */          struct manoutput *outopts;      /* output options */
 };  };
Line 109  static int    toptions(struct curparse *, char *);
Line 101  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 132  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 155  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 202  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 289  main(int argc, char *argv[])
Line 280  main(int argc, char *argv[])
                 }                  }
         }          }
   
           if (outmode == OUTMODE_FLN ||
               outmode == OUTMODE_LST ||
               !isatty(STDOUT_FILENO))
                   use_pager = 0;
   
         /* Parse arguments. */          /* Parse arguments. */
   
         if (argc > 0) {          if (argc > 0) {
Line 303  main(int argc, char *argv[])
Line 299  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 359  main(int argc, char *argv[])
Line 355  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 420  main(int argc, char *argv[])
Line 414  main(int argc, char *argv[])
         if (search.argmode == ARG_FILE && ! moptions(&options, auxpaths))          if (search.argmode == ARG_FILE && ! moptions(&options, auxpaths))
                 return (int)MANDOCLEVEL_BADARG;                  return (int)MANDOCLEVEL_BADARG;
   
         if (use_pager && ! isatty(STDOUT_FILENO))          mchars_alloc();
                 use_pager = 0;          curp.mp = mparse_alloc(options, curp.wlevel, mmsg, defos);
   
         curp.mchars = mchars_alloc();  
         curp.mp = mparse_alloc(options, curp.wlevel, mmsg,  
             curp.mchars, defos);  
   
         /*          /*
          * Conditionally start up the lookaside buffer before parsing.           * Conditionally start up the lookaside buffer before parsing.
          */           */
Line 476  main(int argc, char *argv[])
Line 466  main(int argc, char *argv[])
                         mparse_reset(curp.mp);                          mparse_reset(curp.mp);
         }          }
   
         if (curp.outfree)          switch (curp.outtype) {
                 (*curp.outfree)(curp.outdata);          case OUTT_HTML:
                   html_free(curp.outdata);
                   break;
           case OUTT_UTF8:
           case OUTT_LOCALE:
           case OUTT_ASCII:
                   ascii_free(curp.outdata);
                   break;
           case OUTT_PDF:
           case OUTT_PS:
                   pspdf_free(curp.outdata);
                   break;
           default:
                   break;
           }
         mparse_free(curp.mp);          mparse_free(curp.mp);
         mchars_free(curp.mchars);          mchars_free();
   
 out:  out:
         if (search.argmode != ARG_FILE) {          if (search.argmode != ARG_FILE) {
Line 575  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 579  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 586  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 589  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 629  fs_search(const struct mansearch *cfg, const struct ma
Line 632  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 663  parse(struct curparse *curp, int fd, const char *file)
Line 664  parse(struct curparse *curp, int fd, const char *file)
   
         /* If unset, allocate output dev now (if applicable). */          /* If unset, allocate output dev now (if applicable). */
   
         if ( ! (curp->outman && curp->outmdoc)) {          if (curp->outdata == NULL) {
                 switch (curp->outtype) {                  switch (curp->outtype) {
                 case OUTT_HTML:                  case OUTT_HTML:
                         curp->outdata = html_alloc(curp->mchars,                          curp->outdata = html_alloc(curp->outopts);
                             curp->outopts);  
                         curp->outfree = html_free;  
                         break;                          break;
                 case OUTT_UTF8:                  case OUTT_UTF8:
                         curp->outdata = utf8_alloc(curp->mchars,                          curp->outdata = utf8_alloc(curp->outopts);
                             curp->outopts);  
                         curp->outfree = ascii_free;  
                         break;                          break;
                 case OUTT_LOCALE:                  case OUTT_LOCALE:
                         curp->outdata = locale_alloc(curp->mchars,                          curp->outdata = locale_alloc(curp->outopts);
                             curp->outopts);  
                         curp->outfree = ascii_free;  
                         break;                          break;
                 case OUTT_ASCII:                  case OUTT_ASCII:
                         curp->outdata = ascii_alloc(curp->mchars,                          curp->outdata = ascii_alloc(curp->outopts);
                             curp->outopts);  
                         curp->outfree = ascii_free;  
                         break;                          break;
                 case OUTT_PDF:                  case OUTT_PDF:
                         curp->outdata = pdf_alloc(curp->mchars,                          curp->outdata = pdf_alloc(curp->outopts);
                             curp->outopts);  
                         curp->outfree = pspdf_free;  
                         break;                          break;
                 case OUTT_PS:                  case OUTT_PS:
                         curp->outdata = ps_alloc(curp->mchars,                          curp->outdata = ps_alloc(curp->outopts);
                             curp->outopts);  
                         curp->outfree = pspdf_free;  
                         break;                          break;
                 default:                  default:
                         break;                          break;
                 }                  }
           }
   
           mparse_result(curp->mp, &man, NULL);
   
           /* Execute the out device, if it exists. */
   
           if (man == NULL)
                   return;
           if (man->macroset == MACROSET_MDOC) {
                 switch (curp->outtype) {                  switch (curp->outtype) {
                 case OUTT_HTML:                  case OUTT_HTML:
                         curp->outman = html_man;                          html_mdoc(curp->outdata, man);
                         curp->outmdoc = html_mdoc;  
                         break;                          break;
                 case OUTT_TREE:                  case OUTT_TREE:
                         curp->outman = tree_man;                          tree_mdoc(curp->outdata, man);
                         curp->outmdoc = tree_mdoc;  
                         break;                          break;
                 case OUTT_MAN:                  case OUTT_MAN:
                         curp->outmdoc = man_mdoc;                          man_mdoc(curp->outdata, man);
                         curp->outman = man_man;  
                         break;                          break;
                 case OUTT_PDF:                  case OUTT_PDF:
                         /* FALLTHROUGH */  
                 case OUTT_ASCII:                  case OUTT_ASCII:
                         /* FALLTHROUGH */  
                 case OUTT_UTF8:                  case OUTT_UTF8:
                         /* FALLTHROUGH */  
                 case OUTT_LOCALE:                  case OUTT_LOCALE:
                         /* FALLTHROUGH */  
                 case OUTT_PS:                  case OUTT_PS:
                         curp->outman = terminal_man;                          terminal_mdoc(curp->outdata, man);
                         curp->outmdoc = terminal_mdoc;  
                         break;                          break;
                 default:                  default:
                         break;                          break;
                 }                  }
         }          }
           if (man->macroset == MACROSET_MAN) {
         mparse_result(curp->mp, &man, NULL);                  switch (curp->outtype) {
                   case OUTT_HTML:
         /* Execute the out device, if it exists. */                          html_man(curp->outdata, man);
                           break;
         if (man == NULL)                  case OUTT_TREE:
                 return;                          tree_man(curp->outdata, man);
         if (curp->outmdoc != NULL && man->macroset == MACROSET_MDOC)                          break;
                 (*curp->outmdoc)(curp->outdata, man);                  case OUTT_MAN:
         if (curp->outman != NULL && man->macroset == MACROSET_MAN)                          man_man(curp->outdata, man);
                 (*curp->outman)(curp->outdata, man);                          break;
                   case OUTT_PDF:
                   case OUTT_ASCII:
                   case OUTT_UTF8:
                   case OUTT_LOCALE:
                   case OUTT_PS:
                           terminal_man(curp->outdata, man);
                           break;
                   default:
                           break;
                   }
           }
 }  }
   
 static void  static void
Line 802  done:
Line 802  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 821  koptions(int *options, char *arg)
Line 820  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 841  moptions(int *options, char *arg)
Line 839  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 875  toptions(struct curparse *curp, char *arg)
Line 872  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 904  woptions(struct curparse *curp, char *arg)
Line 900  woptions(struct curparse *curp, char *arg)
                         curp->wstop = 1;                          curp->wstop = 1;
                         break;                          break;
                 case 1:                  case 1:
                         /* FALLTHROUGH */  
                 case 2:                  case 2:
                         curp->wlevel = MANDOCLEVEL_WARNING;                          curp->wlevel = MANDOCLEVEL_WARNING;
                         break;                          break;
Line 918  woptions(struct curparse *curp, char *arg)
Line 913  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 933  mmsg(enum mandocerr t, enum mandoclevel lvl,
Line 927  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 999  spawn_pager(struct tag_files *tag_files)
Line 993  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 1010  spawn_pager(struct tag_files *tag_files)
Line 1002  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.245  
changed lines
  Added in v.1.250

CVSweb