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

Diff for /mandoc/main.c between version 1.293 and 1.296

version 1.293, 2017/06/24 14:38:32 version 1.296, 2017/07/01 12:54:07
Line 43 
Line 43 
   
 #include "mandoc_aux.h"  #include "mandoc_aux.h"
 #include "mandoc.h"  #include "mandoc.h"
   #include "mandoc_xr.h"
 #include "roff.h"  #include "roff.h"
 #include "mdoc.h"  #include "mdoc.h"
 #include "man.h"  #include "man.h"
Line 86  struct curparse {
Line 87  struct curparse {
   
 int                       mandocdb(int, char *[]);  int                       mandocdb(int, char *[]);
   
   static  void              check_xr(const 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 *,
                                 struct manpage **, size_t *);                                  struct manpage **, size_t *);
 static  void              fs_search(const struct mansearch *,  static  int               fs_search(const struct mansearch *,
                                 const struct manpaths *, int, char**,                                  const struct manpaths *, int, char**,
                                 struct manpage **, size_t *);                                  struct manpage **, size_t *);
 static  int               koptions(int *, char *);  static  int               koptions(int *, char *);
Line 517  main(int argc, char *argv[])
Line 519  main(int argc, char *argv[])
                         break;                          break;
                 }                  }
         }          }
           mandoc_xr_free();
         mparse_free(curp.mp);          mparse_free(curp.mp);
         mchars_free();          mchars_free();
   
Line 660  fs_lookup(const struct manpaths *paths, size_t ipath,
Line 663  fs_lookup(const struct manpaths *paths, size_t ipath,
         if (globres == 0)          if (globres == 0)
                 file = mandoc_strdup(*globinfo.gl_pathv);                  file = mandoc_strdup(*globinfo.gl_pathv);
         globfree(&globinfo);          globfree(&globinfo);
         if (globres != 0)          if (globres == 0)
                   goto found;
           if (res != NULL || ipath + 1 != paths->sz)
                 return 0;                  return 0;
   
           mandoc_asprintf(&file, "%s.%s", name, sec);
           globres = access(file, R_OK);
           free(file);
           return globres != -1;
   
 found:  found:
         warnx("outdated mandoc.db lacks %s(%s) entry, run %s %s",          warnx("outdated mandoc.db lacks %s(%s) entry, run %s %s",
             name, sec, BINM_MAKEWHATIS, paths->paths[ipath]);              name, sec, BINM_MAKEWHATIS, paths->paths[ipath]);
           if (res == NULL) {
                   free(file);
                   return 1;
           }
         *res = mandoc_reallocarray(*res, ++*ressz, sizeof(struct manpage));          *res = mandoc_reallocarray(*res, ++*ressz, sizeof(struct manpage));
         page = *res + (*ressz - 1);          page = *res + (*ressz - 1);
         page->file = file;          page->file = file;
Line 678  found:
Line 692  found:
         return 1;          return 1;
 }  }
   
 static void  static int
 fs_search(const struct mansearch *cfg, const struct manpaths *paths,  fs_search(const struct mansearch *cfg, const struct manpaths *paths,
         int argc, char **argv, struct manpage **res, size_t *ressz)          int argc, char **argv, struct manpage **res, size_t *ressz)
 {  {
Line 690  fs_search(const struct mansearch *cfg, const struct ma
Line 704  fs_search(const struct mansearch *cfg, const struct ma
   
         assert(cfg->argmode == ARG_NAME);          assert(cfg->argmode == ARG_NAME);
   
         *res = NULL;          if (res != NULL)
                   *res = NULL;
         *ressz = lastsz = 0;          *ressz = lastsz = 0;
         while (argc) {          while (argc) {
                 for (ipath = 0; ipath < paths->sz; ipath++) {                  for (ipath = 0; ipath < paths->sz; ipath++) {
Line 698  fs_search(const struct mansearch *cfg, const struct ma
Line 713  fs_search(const struct mansearch *cfg, const struct ma
                                 if (fs_lookup(paths, ipath, cfg->sec,                                  if (fs_lookup(paths, ipath, cfg->sec,
                                     cfg->arch, *argv, res, ressz) &&                                      cfg->arch, *argv, res, ressz) &&
                                     cfg->firstmatch)                                      cfg->firstmatch)
                                         return;                                          return 1;
                         } else for (isec = 0; isec < nsec; isec++)                          } else for (isec = 0; isec < nsec; isec++)
                                 if (fs_lookup(paths, ipath, sections[isec],                                  if (fs_lookup(paths, ipath, sections[isec],
                                     cfg->arch, *argv, res, ressz) &&                                      cfg->arch, *argv, res, ressz) &&
                                     cfg->firstmatch)                                      cfg->firstmatch)
                                         return;                                          return 1;
                 }                  }
                 if (*ressz == lastsz)                  if (res != NULL && *ressz == lastsz)
                         warnx("No entry for %s in the manual.", *argv);                          warnx("No entry for %s in the manual.", *argv);
                 lastsz = *ressz;                  lastsz = *ressz;
                 argv++;                  argv++;
                 argc--;                  argc--;
         }          }
           return 0;
 }  }
   
 static void  static void
Line 747  parse(struct curparse *curp, int fd, const char *file)
Line 763  parse(struct curparse *curp, int fd, const char *file)
   
         if (man == NULL)          if (man == NULL)
                 return;                  return;
           if (curp->mmin < MANDOCERR_STYLE)
                   mandoc_xr_reset();
         if (man->macroset == MACROSET_MDOC) {          if (man->macroset == MACROSET_MDOC) {
                 if (curp->outtype != OUTT_TREE || !curp->outopts->noval)                  if (curp->outtype != OUTT_TREE || !curp->outopts->noval)
                         mdoc_validate(man);                          mdoc_validate(man);
Line 798  parse(struct curparse *curp, int fd, const char *file)
Line 816  parse(struct curparse *curp, int fd, const char *file)
                         break;                          break;
                 }                  }
         }          }
           check_xr(file);
         mparse_updaterc(curp->mp, &rc);          mparse_updaterc(curp->mp, &rc);
   }
   
   static void
   check_xr(const char *file)
   {
           static struct manpaths   paths;
           struct mansearch         search;
           struct mandoc_xr        *xr;
           char                    *cp;
           size_t                   sz;
   
           if (paths.sz == 0)
                   manpath_base(&paths);
   
           for (xr = mandoc_xr_get(); xr != NULL; xr = xr->next) {
                   search.arch = NULL;
                   search.sec = xr->sec;
                   search.outkey = NULL;
                   search.argmode = ARG_NAME;
                   search.firstmatch = 1;
                   if (mansearch(&search, &paths, 1, &xr->name, NULL, &sz))
                           continue;
                   if (fs_search(&search, &paths, 1, &xr->name, NULL, &sz))
                           continue;
                   mandoc_asprintf(&cp, "Xr %s %s", xr->name, xr->sec);
                   mmsg(MANDOCERR_XR_BAD, MANDOCLEVEL_STYLE,
                       file, xr->line, xr->pos + 1, cp);
                   free(cp);
           }
 }  }
   
 static void  static void

Legend:
Removed from v.1.293  
changed lines
  Added in v.1.296

CVSweb