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

Diff for /mandoc/main.c between version 1.273.2.9 and 1.274

version 1.273.2.9, 2017/02/21 17:04:04 version 1.274, 2016/07/19 21:31:55
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2012, 2014-2017 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2012, 2014-2016 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2010 Joerg Sonnenberger <joerg@netbsd.org>   * Copyright (c) 2010 Joerg Sonnenberger <joerg@netbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 81  struct curparse {
Line 81  struct curparse {
         struct manoutput *outopts;      /* output options */          struct manoutput *outopts;      /* output options */
 };  };
   
   
 int                       mandocdb(int, char *[]);  int                       mandocdb(int, char *[]);
   
 static  int               fs_lookup(const struct manpaths *,  static  int               fs_lookup(const struct manpaths *,
                                 size_t ipath, const char *,                                  size_t ipath, const char *,
                                 const char *, const char *,                                  const char *, const char *,
Line 93  static int    koptions(int *, char *);
Line 95  static int    koptions(int *, char *);
 static  int               moptions(int *, char *);  static  int               moptions(int *, char *);
 static  void              mmsg(enum mandocerr, enum mandoclevel,  static  void              mmsg(enum mandocerr, enum mandoclevel,
                                 const char *, int, int, const char *);                                  const char *, int, int, const char *);
 static  void              outdata_alloc(struct curparse *);  
 static  void              parse(struct curparse *, int, const char *);  static  void              parse(struct curparse *, int, const char *);
 static  void              passthrough(const char *, int, int);  static  void              passthrough(const char *, int, int);
 static  pid_t             spawn_pager(struct tag_files *);  static  pid_t             spawn_pager(struct tag_files *);
 static  int               toptions(struct curparse *, char *);  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 *);
   
 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};
Line 111  int
Line 112  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         struct manconf   conf;          struct manconf   conf;
         struct mansearch search;  
         struct curparse  curp;          struct curparse  curp;
           struct mansearch search;
         struct tag_files *tag_files;          struct tag_files *tag_files;
         struct manpage  *res, *resp;          const char      *progname;
         const char      *progname, *sec, *thisarg;          char            *auxpaths;
         char            *conf_file, *defpaths, *auxpaths;          char            *defos;
         char            *defos, *oarg;  
         unsigned char   *uc;          unsigned char   *uc;
           struct manpage  *res, *resp;
           char            *conf_file, *defpaths;
           const char      *sec;
         size_t           i, sz;          size_t           i, sz;
         int              prio, best_prio;          int              prio, best_prio;
         enum outmode     outmode;          enum outmode     outmode;
Line 164  main(int argc, char *argv[])
Line 167  main(int argc, char *argv[])
   
         memset(&search, 0, sizeof(struct mansearch));          memset(&search, 0, sizeof(struct mansearch));
         search.outkey = "Nd";          search.outkey = "Nd";
         oarg = NULL;  
   
         if (strcmp(progname, BINM_MAN) == 0)          if (strcmp(progname, BINM_MAN) == 0)
                 search.argmode = ARG_NAME;                  search.argmode = ARG_NAME;
Line 243  main(int argc, char *argv[])
Line 245  main(int argc, char *argv[])
                         auxpaths = optarg;                          auxpaths = optarg;
                         break;                          break;
                 case 'O':                  case 'O':
                         oarg = optarg;                          search.outkey = optarg;
                           while (optarg != NULL)
                                   manconf_output(&conf.output,
                                       strsep(&optarg, ","));
                         break;                          break;
                 case 'S':                  case 'S':
                         search.arch = optarg;                          search.arch = optarg;
Line 288  main(int argc, char *argv[])
Line 293  main(int argc, char *argv[])
                 }                  }
         }          }
   
         if (oarg != NULL) {  
                 if (outmode == OUTMODE_LST)  
                         search.outkey = oarg;  
                 else {  
                         while (oarg != NULL) {  
                                 thisarg = oarg;  
                                 if (manconf_output(&conf.output,  
                                     strsep(&oarg, ","), 0) == 0)  
                                         continue;  
                                 warnx("-O %s: Bad argument", thisarg);  
                                 return (int)MANDOCLEVEL_BADARG;  
                         }  
                 }  
         }  
   
         if (outmode == OUTMODE_FLN ||          if (outmode == OUTMODE_FLN ||
             outmode == OUTMODE_LST ||              outmode == OUTMODE_LST ||
             !isatty(STDOUT_FILENO))              !isatty(STDOUT_FILENO))
Line 355  main(int argc, char *argv[])
Line 345  main(int argc, char *argv[])
         /* man(1), whatis(1), apropos(1) */          /* man(1), whatis(1), apropos(1) */
   
         if (search.argmode != ARG_FILE) {          if (search.argmode != ARG_FILE) {
                 if (argc == 0)  
                         usage(search.argmode);  
   
                 if (search.argmode == ARG_NAME &&                  if (search.argmode == ARG_NAME &&
                     outmode == OUTMODE_ONE)                      outmode == OUTMODE_ONE)
                         search.firstmatch = 1;                          search.firstmatch = 1;
Line 365  main(int argc, char *argv[])
Line 352  main(int argc, char *argv[])
                 /* Access the mandoc database. */                  /* Access the mandoc database. */
   
                 manconf_parse(&conf, conf_file, defpaths, auxpaths);                  manconf_parse(&conf, conf_file, defpaths, auxpaths);
                 mansearch_setup(1);  
                 if ( ! mansearch(&search, &conf.manpath,                  if ( ! mansearch(&search, &conf.manpath,
                     argc, argv, &res, &sz))                      argc, argv, &res, &sz))
                         usage(search.argmode);                          usage(search.argmode);
   
                 if (sz == 0) {                  if (sz == 0) {
                         if (search.argmode == ARG_NAME)                          if (search.argmode == ARG_NAME)
                                 fs_search(&search, &conf.manpath,                                  fs_search(&search, &conf.manpath,
Line 470  main(int argc, char *argv[])
Line 457  main(int argc, char *argv[])
   
                         if (resp == NULL)                          if (resp == NULL)
                                 parse(&curp, fd, *argv);                                  parse(&curp, fd, *argv);
                         else if (resp->form & FORM_SRC) {                          else if (resp->form == FORM_SRC) {
                                 /* For .so only; ignore failure. */                                  /* For .so only; ignore failure. */
                                 chdir(conf.manpath.paths[resp->ipath]);                                  chdir(conf.manpath.paths[resp->ipath]);
                                 parse(&curp, fd, resp->file);                                  parse(&curp, fd, resp->file);
Line 478  main(int argc, char *argv[])
Line 465  main(int argc, char *argv[])
                                 passthrough(resp->file, fd,                                  passthrough(resp->file, fd,
                                     conf.output.synopsisonly);                                      conf.output.synopsisonly);
   
                         if (argc > 1 && curp.outtype <= OUTT_UTF8) {                          if (argc > 1 && curp.outtype <= OUTT_UTF8)
                                 if (curp.outdata == NULL)  
                                         outdata_alloc(&curp);  
                                 terminal_sepline(curp.outdata);                                  terminal_sepline(curp.outdata);
                         }  
                 } else if (rc < MANDOCLEVEL_ERROR)                  } else if (rc < MANDOCLEVEL_ERROR)
                         rc = MANDOCLEVEL_ERROR;                          rc = MANDOCLEVEL_ERROR;
   
Line 522  out:
Line 506  out:
         if (search.argmode != ARG_FILE) {          if (search.argmode != ARG_FILE) {
                 manconf_free(&conf);                  manconf_free(&conf);
                 mansearch_free(res, sz);                  mansearch_free(res, sz);
                 mansearch_setup(0);  
         }          }
   
         free(defos);          free(defos);
Line 544  out:
Line 527  out:
   
                         /* Stop here until moved to the foreground. */                          /* Stop here until moved to the foreground. */
   
                         tc_pgid = tcgetpgrp(tag_files->ofd);                          tc_pgid = tcgetpgrp(STDIN_FILENO);
                         if (tc_pgid != man_pgid) {                          if (tc_pgid != man_pgid) {
                                 if (tc_pgid == pager_pid) {                                  if (tc_pgid == pager_pid) {
                                         (void)tcsetpgrp(tag_files->ofd,                                          (void)tcsetpgrp(STDIN_FILENO,
                                             man_pgid);                                              man_pgid);
                                         if (signum == SIGTTIN)                                          if (signum == SIGTTIN)
                                                 continue;                                                  continue;
Line 560  out:
Line 543  out:
                         /* Once in the foreground, activate the pager. */                          /* Once in the foreground, activate the pager. */
   
                         if (pager_pid) {                          if (pager_pid) {
                                 (void)tcsetpgrp(tag_files->ofd, pager_pid);                                  (void)tcsetpgrp(STDIN_FILENO, pager_pid);
                                 kill(pager_pid, SIGCONT);                                  kill(pager_pid, SIGCONT);
                         } else                          } else
                                 pager_pid = spawn_pager(tag_files);                                  pager_pid = spawn_pager(tag_files);
Line 626  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 609  fs_lookup(const struct manpaths *paths, size_t ipath,
         glob_t           globinfo;          glob_t           globinfo;
         struct manpage  *page;          struct manpage  *page;
         char            *file;          char            *file;
         int              form, globres;          int              globres;
           enum form        form;
   
         form = FORM_SRC;          form = FORM_SRC;
         mandoc_asprintf(&file, "%s/man%s/%s.%s",          mandoc_asprintf(&file, "%s/man%s/%s.%s",
Line 738  parse(struct curparse *curp, int fd, const char *file)
Line 722  parse(struct curparse *curp, int fd, const char *file)
         if (rctmp != MANDOCLEVEL_OK && curp->wstop)          if (rctmp != MANDOCLEVEL_OK && curp->wstop)
                 return;                  return;
   
         if (curp->outdata == NULL)          /* If unset, allocate output dev now (if applicable). */
                 outdata_alloc(curp);  
   
           if (curp->outdata == NULL) {
                   switch (curp->outtype) {
                   case OUTT_HTML:
                           curp->outdata = html_alloc(curp->outopts);
                           break;
                   case OUTT_UTF8:
                           curp->outdata = utf8_alloc(curp->outopts);
                           break;
                   case OUTT_LOCALE:
                           curp->outdata = locale_alloc(curp->outopts);
                           break;
                   case OUTT_ASCII:
                           curp->outdata = ascii_alloc(curp->outopts);
                           break;
                   case OUTT_PDF:
                           curp->outdata = pdf_alloc(curp->outopts);
                           break;
                   case OUTT_PS:
                           curp->outdata = ps_alloc(curp->outopts);
                           break;
                   default:
                           break;
                   }
           }
   
         mparse_result(curp->mp, &man, NULL);          mparse_result(curp->mp, &man, NULL);
   
         /* Execute the out device, if it exists. */          /* Execute the out device, if it exists. */
Line 748  parse(struct curparse *curp, int fd, const char *file)
Line 756  parse(struct curparse *curp, int fd, const char *file)
         if (man == NULL)          if (man == NULL)
                 return;                  return;
         if (man->macroset == MACROSET_MDOC) {          if (man->macroset == MACROSET_MDOC) {
                 if (curp->outtype != OUTT_TREE || !curp->outopts->noval)                  mdoc_validate(man);
                         mdoc_validate(man);  
                 switch (curp->outtype) {                  switch (curp->outtype) {
                 case OUTT_HTML:                  case OUTT_HTML:
                         html_mdoc(curp->outdata, man);                          html_mdoc(curp->outdata, man);
Line 772  parse(struct curparse *curp, int fd, const char *file)
Line 779  parse(struct curparse *curp, int fd, const char *file)
                 }                  }
         }          }
         if (man->macroset == MACROSET_MAN) {          if (man->macroset == MACROSET_MAN) {
                 if (curp->outtype != OUTT_TREE || !curp->outopts->noval)                  man_validate(man);
                         man_validate(man);  
                 switch (curp->outtype) {                  switch (curp->outtype) {
                 case OUTT_HTML:                  case OUTT_HTML:
                         html_man(curp->outdata, man);                          html_man(curp->outdata, man);
Line 795  parse(struct curparse *curp, int fd, const char *file)
Line 801  parse(struct curparse *curp, int fd, const char *file)
                         break;                          break;
                 }                  }
         }          }
         mparse_updaterc(curp->mp, &rc);  
 }  }
   
 static void  static void
 outdata_alloc(struct curparse *curp)  
 {  
         switch (curp->outtype) {  
         case OUTT_HTML:  
                 curp->outdata = html_alloc(curp->outopts);  
                 break;  
         case OUTT_UTF8:  
                 curp->outdata = utf8_alloc(curp->outopts);  
                 break;  
         case OUTT_LOCALE:  
                 curp->outdata = locale_alloc(curp->outopts);  
                 break;  
         case OUTT_ASCII:  
                 curp->outdata = ascii_alloc(curp->outopts);  
                 break;  
         case OUTT_PDF:  
                 curp->outdata = pdf_alloc(curp->outopts);  
                 break;  
         case OUTT_PS:  
                 curp->outdata = ps_alloc(curp->outopts);  
                 break;  
         default:  
                 break;  
         }  
 }  
   
 static void  
 passthrough(const char *file, int fd, int synopsis_only)  passthrough(const char *file, int fd, int synopsis_only)
 {  {
         const char       synb[] = "S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS";          const char       synb[] = "S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS";
Line 835  passthrough(const char *file, int fd, int synopsis_onl
Line 813  passthrough(const char *file, int fd, int synopsis_onl
         const char      *syscall;          const char      *syscall;
         char            *line, *cp;          char            *line, *cp;
         size_t           linesz;          size_t           linesz;
         ssize_t          len, written;  
         int              print;          int              print;
   
         line = NULL;          line = NULL;
         linesz = 0;          linesz = 0;
   
         if (fflush(stdout) == EOF) {  
                 syscall = "fflush";  
                 goto fail;  
         }  
   
         if ((stream = fdopen(fd, "r")) == NULL) {          if ((stream = fdopen(fd, "r")) == NULL) {
                 close(fd);                  close(fd);
                 syscall = "fdopen";                  syscall = "fdopen";
Line 853  passthrough(const char *file, int fd, int synopsis_onl
Line 825  passthrough(const char *file, int fd, int synopsis_onl
         }          }
   
         print = 0;          print = 0;
         while ((len = getline(&line, &linesz, stream)) != -1) {          while (getline(&line, &linesz, stream) != -1) {
                 cp = line;                  cp = line;
                 if (synopsis_only) {                  if (synopsis_only) {
                         if (print) {                          if (print) {
                                 if ( ! isspace((unsigned char)*cp))                                  if ( ! isspace((unsigned char)*cp))
                                         goto done;                                          goto done;
                                 while (isspace((unsigned char)*cp)) {                                  while (isspace((unsigned char)*cp))
                                         cp++;                                          cp++;
                                         len--;  
                                 }  
                         } else {                          } else {
                                 if (strcmp(cp, synb) == 0 ||                                  if (strcmp(cp, synb) == 0 ||
                                     strcmp(cp, synr) == 0)                                      strcmp(cp, synr) == 0)
Line 870  passthrough(const char *file, int fd, int synopsis_onl
Line 840  passthrough(const char *file, int fd, int synopsis_onl
                                 continue;                                  continue;
                         }                          }
                 }                  }
                 for (; len > 0; len -= written) {                  if (fputs(cp, stdout)) {
                         if ((written = write(STDOUT_FILENO, cp, len)) != -1)  
                                 continue;  
                         fclose(stream);                          fclose(stream);
                         syscall = "write";                          syscall = "fputs";
                         goto fail;                          goto fail;
                 }                  }
         }          }
Line 1017  mmsg(enum mandocerr t, enum mandoclevel lvl,
Line 985  mmsg(enum mandocerr t, enum mandoclevel lvl,
 {  {
         const char      *mparse_msg;          const char      *mparse_msg;
   
         fprintf(stderr, "%s: %s:", getprogname(),          fprintf(stderr, "%s: %s:", getprogname(), file);
             file == NULL ? "<stdin>" : file);  
   
         if (line)          if (line)
                 fprintf(stderr, "%d:%d:", line, col + 1);                  fprintf(stderr, "%d:%d:", line, col + 1);
Line 1090  spawn_pager(struct tag_files *tag_files)
Line 1057  spawn_pager(struct tag_files *tag_files)
                 break;                  break;
         default:          default:
                 (void)setpgid(pager_pid, 0);                  (void)setpgid(pager_pid, 0);
                 (void)tcsetpgrp(tag_files->ofd, pager_pid);                  (void)tcsetpgrp(STDIN_FILENO, pager_pid);
 #if HAVE_PLEDGE  #if HAVE_PLEDGE
                 if (pledge("stdio rpath tmppath tty proc", NULL) == -1)                  if (pledge("stdio rpath tmppath tty proc", NULL) == -1)
                         err((int)MANDOCLEVEL_SYSERR, "pledge");                          err((int)MANDOCLEVEL_SYSERR, "pledge");
Line 1108  spawn_pager(struct tag_files *tag_files)
Line 1075  spawn_pager(struct tag_files *tag_files)
   
         /* Do not start the pager before controlling the terminal. */          /* Do not start the pager before controlling the terminal. */
   
         while (tcgetpgrp(STDOUT_FILENO) != getpid())          while (tcgetpgrp(STDIN_FILENO) != getpid())
                 nanosleep(&timeout, NULL);                  nanosleep(&timeout, NULL);
   
         execvp(argv[0], argv);          execvp(argv[0], argv);

Legend:
Removed from v.1.273.2.9  
changed lines
  Added in v.1.274

CVSweb