[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.281

version 1.273.2.9, 2017/02/21 17:04:04 version 1.281, 2017/02/10 15:45:28
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 98  static void    parse(struct curparse *, int, const cha
Line 100  static void    parse(struct curparse *, int, const cha
 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 113  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;
           const char      *thisarg;
         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 169  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 247  main(int argc, char *argv[])
                         auxpaths = optarg;                          auxpaths = optarg;
                         break;                          break;
                 case 'O':                  case 'O':
                         oarg = optarg;                          search.outkey = optarg;
                           while (optarg != NULL) {
                                   thisarg = optarg;
                                   if (manconf_output(&conf.output,
                                       strsep(&optarg, ","), 0) == 0)
                                           continue;
                                   warnx("-O %s: Bad argument", thisarg);
                                   return (int)MANDOCLEVEL_BADARG;
                           }
                         break;                          break;
                 case 'S':                  case 'S':
                         search.arch = optarg;                          search.arch = optarg;
Line 288  main(int argc, char *argv[])
Line 300  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 352  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 359  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 464  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 522  out:
Line 516  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 626  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 619  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",

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

CVSweb