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

Diff for /mandoc/mandocdb.c between version 1.68 and 1.69

version 1.68, 2013/06/07 05:27:50 version 1.69, 2013/07/02 11:40:40
Line 106  struct of {
Line 106  struct of {
         char            *arch; /* path-cued arch. (or empty) */          char            *arch; /* path-cued arch. (or empty) */
 };  };
   
   struct  title {
           char            *title; /* name(sec/arch) given inside the file */
           char            *file; /* file name in case of mismatch */
   };
   
 enum    stmt {  enum    stmt {
         STMT_DELETE = 0, /* delete manpage */          STMT_DELETE = 0, /* delete manpage */
         STMT_INSERT_DOC, /* insert manpage */          STMT_INSERT_DOC, /* insert manpage */
Line 136  static void  ofadd(int, const char *, const char *, co
Line 141  static void  ofadd(int, const char *, const char *, co
                         const char *, const char *, const struct stat *);                          const char *, const char *, const struct stat *);
 static  void     offree(void);  static  void     offree(void);
 static  void     ofmerge(struct mchars *, struct mparse *,  static  void     ofmerge(struct mchars *, struct mparse *,
                         struct ohash_info*);                          struct ohash_info*, int);
 static  void     parse_catpage(struct of *);  static  void     parse_catpage(struct of *);
 static  void     parse_man(struct of *, const struct man_node *);  static  void     parse_man(struct of *, const struct man_node *);
 static  void     parse_mdoc(struct of *, const struct mdoc_node *);  static  void     parse_mdoc(struct of *, const struct mdoc_node *);
Line 422  main(int argc, char *argv[])
Line 427  main(int argc, char *argv[])
                 if (OP_TEST != op)                  if (OP_TEST != op)
                         dbprune();                          dbprune();
                 if (OP_DELETE != op)                  if (OP_DELETE != op)
                         ofmerge(mc, mp, &str_info);                          ofmerge(mc, mp, &str_info, 0);
                 dbclose(1);                  dbclose(1);
         } else {          } else {
                 /*                  /*
Line 440  main(int argc, char *argv[])
Line 445  main(int argc, char *argv[])
                         manpath_parse(&dirs, path_arg, NULL, NULL);                          manpath_parse(&dirs, path_arg, NULL, NULL);
   
                 /*                  /*
                  * First scan the tree rooted at a base directory.                   * First scan the tree rooted at a base directory, then
                  * Then whak its database (if one exists), parse, and                   * build a new database and finally move it into place.
                  * build up the database.  
                  * Ignore zero-length directories and strip trailing                   * Ignore zero-length directories and strip trailing
                  * slashes.                   * slashes.
                  */                   */
Line 476  main(int argc, char *argv[])
Line 480  main(int argc, char *argv[])
                         SQL_EXEC("PRAGMA synchronous = OFF");                          SQL_EXEC("PRAGMA synchronous = OFF");
 #endif  #endif
   
                         ofmerge(mc, mp, &str_info);                          ofmerge(mc, mp, &str_info, warnings && !use_all);
                         dbclose(0);                          dbclose(0);
   
                         if (j + 1 < dirs.sz) {                          if (j + 1 < dirs.sz) {
Line 898  offree(void)
Line 902  offree(void)
  */   */
 static void  static void
 ofmerge(struct mchars *mc, struct mparse *mp,  ofmerge(struct mchars *mc, struct mparse *mp,
                 struct ohash_info *infop)                  struct ohash_info *infop, int check_reachable)
 {  {
         int              form;          struct ohash             title_table;
         size_t           sz;          struct ohash_info        title_info;
         struct mdoc     *mdoc;          char                     buf[PATH_MAX];
         struct man      *man;          struct of               *of;
         char             buf[PATH_MAX];          struct mdoc             *mdoc;
         char            *bufp;          struct man              *man;
         const char      *msec, *march, *mtitle, *cp;          struct title            *title_entry;
         struct of       *of;          char                    *bufp, *title_str;
         enum mandoclevel lvl;          const char              *msec, *march, *mtitle, *cp;
           size_t                   sz;
           int                      form;
           int                      match;
           unsigned int             slot;
           enum mandoclevel         lvl;
   
           if (check_reachable) {
                   title_info.alloc = hash_alloc;
                   title_info.halloc = hash_halloc;
                   title_info.hfree = hash_free;
                   title_info.key_offset = offsetof(struct title, title);
                   ohash_init(&title_table, 6, &title_info);
           }
   
         for (of = ofs; NULL != of; of = of->next) {          for (of = ofs; NULL != of; of = of->next) {
                 /*                  /*
                  * If we're a catpage (as defined by our path), then see                   * If we're a catpage (as defined by our path), then see
Line 947  ofmerge(struct mchars *mc, struct mparse *mp,
Line 964  ofmerge(struct mchars *mc, struct mparse *mp,
                 msec = of->dsec;                  msec = of->dsec;
                 march = of->arch;                  march = of->arch;
                 mtitle = of->name;                  mtitle = of->name;
                   match = 1;
   
                 /*                  /*
                  * Try interpreting the file as mdoc(7) or man(7)                   * Try interpreting the file as mdoc(7) or man(7)
Line 988  ofmerge(struct mchars *mc, struct mparse *mp,
Line 1006  ofmerge(struct mchars *mc, struct mparse *mp,
                  * manuals for such reasons.                   * manuals for such reasons.
                  */                   */
                 if (warnings && !use_all && form &&                  if (warnings && !use_all && form &&
                                 strcasecmp(msec, of->dsec))                                  strcasecmp(msec, of->dsec)) {
                           match = 0;
                         say(of->file, "Section \"%s\" "                          say(of->file, "Section \"%s\" "
                                 "manual in %s directory",                                  "manual in %s directory",
                                 msec, of->dsec);                                  msec, of->dsec);
                   }
   
                 /*                  /*
                  * Manual page directories exist for each kernel                   * Manual page directories exist for each kernel
Line 1007  ofmerge(struct mchars *mc, struct mparse *mp,
Line 1027  ofmerge(struct mchars *mc, struct mparse *mp,
                  * Thus, warn about architecture mismatches,                   * Thus, warn about architecture mismatches,
                  * but don't skip manuals for this reason.                   * but don't skip manuals for this reason.
                  */                   */
                 if (warnings && !use_all && strcasecmp(march, of->arch))                  if (warnings && !use_all && strcasecmp(march, of->arch)) {
                           match = 0;
                         say(of->file, "Architecture \"%s\" "                          say(of->file, "Architecture \"%s\" "
                                 "manual in \"%s\" directory",                                  "manual in \"%s\" directory",
                                 march, of->arch);                                  march, of->arch);
                   }
                   if (warnings && !use_all && strcasecmp(mtitle, of->name))
                           match = 0;
   
                 putkey(of, of->name, TYPE_Nm);                  putkey(of, of->name, TYPE_Nm);
   
Line 1026  ofmerge(struct mchars *mc, struct mparse *mp,
Line 1050  ofmerge(struct mchars *mc, struct mparse *mp,
                 else                  else
                         parse_catpage(of);                          parse_catpage(of);
   
                   /*
                    * Build a title string for the file.  If it matches
                    * the location of the file, remember the title as
                    * found; else, remember it as missing.
                    */
   
                   if (check_reachable) {
                           if (-1 == asprintf(&title_str, "%s(%s%s%s)", mtitle,
                               msec, '\0' == *march ? "" : "/", march)) {
                                   perror(NULL);
                                   exit((int)MANDOCLEVEL_SYSERR);
                           }
                           slot = ohash_qlookup(&title_table, title_str);
                           title_entry = ohash_find(&title_table, slot);
                           if (NULL == title_entry) {
                                   title_entry = mandoc_malloc(
                                                   sizeof(struct title));
                                   title_entry->title = title_str;
                                   title_entry->file = mandoc_strdup(
                                       match ? "" : of->file);
                                   ohash_insert(&title_table, slot,
                                                   title_entry);
                           } else {
                                   if (match)
                                           *title_entry->file = '\0';
                                   free(title_str);
                           }
                   }
   
                 dbindex(mc, form, of);                  dbindex(mc, form, of);
                 ohash_delete(&strings);                  ohash_delete(&strings);
           }
   
           if (check_reachable) {
                   title_entry = ohash_first(&title_table, &slot);
                   while (NULL != title_entry) {
                           if ('\0' != *title_entry->file)
                                   say(title_entry->file,
                                       "Probably unreachable, title is %s",
                                       title_entry->title);
                           free(title_entry->title);
                           free(title_entry->file);
                           free(title_entry);
                           title_entry = ohash_next(&title_table, &slot);
                   }
                   ohash_delete(&title_table);
         }          }
 }  }
   

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69

CVSweb