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

Diff for /mandoc/mandocdb.c between version 1.85 and 1.90

version 1.85, 2013/12/27 15:48:09 version 1.90, 2013/12/27 23:41:55
Line 142  static void  filescan(const char *);
Line 142  static void  filescan(const char *);
 static  void    *hash_alloc(size_t, void *);  static  void    *hash_alloc(size_t, void *);
 static  void     hash_free(void *, size_t, void *);  static  void     hash_free(void *, size_t, void *);
 static  void    *hash_halloc(size_t, void *);  static  void    *hash_halloc(size_t, void *);
 static  int      inocheck(const struct stat *);  
 static  void     mlink_add(struct mlink *, const struct stat *);  static  void     mlink_add(struct mlink *, const struct stat *);
 static  void     mlink_free(struct mlink *);  static  void     mlink_free(struct mlink *);
   static  void     mlinks_undupe(struct mpage *);
 static  void     mpages_free(void);  static  void     mpages_free(void);
 static  void     mpages_merge(struct mchars *, struct mparse *, int);  static  void     mpages_merge(struct mchars *, struct mparse *, int);
 static  void     parse_cat(struct mpage *);  static  void     parse_cat(struct mpage *);
Line 549  treescan(void)
Line 549  treescan(void)
                 /*                  /*
                  * If we're a regular file, add an mlink by using the                   * If we're a regular file, add an mlink by using the
                  * stored directory data and handling the filename.                   * stored directory data and handling the filename.
                  * Disallow duplicate (hard-linked) files.  
                  */                   */
                 if (FTS_F == ff->fts_info) {                  if (FTS_F == ff->fts_info) {
                         if (0 == strcmp(path, MANDOC_DB))                          if (0 == strcmp(path, MANDOC_DB))
Line 558  treescan(void)
Line 557  treescan(void)
                                 if (warnings)                                  if (warnings)
                                         say(path, "Extraneous file");                                          say(path, "Extraneous file");
                                 continue;                                  continue;
                         } else if (inocheck(ff->fts_statp)) {  
                                 if (warnings)  
                                         say(path, "Duplicate file");  
                                 continue;  
                         } else if (NULL == (fsec =                          } else if (NULL == (fsec =
                                         strrchr(ff->fts_name, '.'))) {                                          strrchr(ff->fts_name, '.'))) {
                                 if ( ! use_all) {                                  if ( ! use_all) {
Line 668  treescan(void)
Line 663  treescan(void)
 }  }
   
 /*  /*
  * Add a file to the file vector.   * Add a file to the mlinks table.
  * Do not verify that it's a "valid" looking manpage (we'll do that   * Do not verify that it's a "valid" looking manpage (we'll do that
  * later).   * later).
  *   *
Line 679  treescan(void)
Line 674  treescan(void)
  *   or   *   or
  *   [./]cat<section>[/<arch>]/<name>.0   *   [./]cat<section>[/<arch>]/<name>.0
  *   *
  * Stuff this information directly into the mlink vector.  
  * See treescan() for the fts(3) version of this.   * See treescan() for the fts(3) version of this.
  */   */
 static void  static void
Line 711  filescan(const char *file)
Line 705  filescan(const char *file)
                 exitcode = (int)MANDOCLEVEL_BADARG;                  exitcode = (int)MANDOCLEVEL_BADARG;
                 say(file, "Not a regular file");                  say(file, "Not a regular file");
                 return;                  return;
         } else if (inocheck(&st)) {  
                 if (warnings)  
                         say(file, "Duplicate file");  
                 return;  
         }          }
         start = buf + strlen(basedir);          start = buf + strlen(basedir);
         mlink = mandoc_calloc(1, sizeof(struct mlink));          mlink = mandoc_calloc(1, sizeof(struct mlink));
Line 771  filescan(const char *file)
Line 761  filescan(const char *file)
         mlink_add(mlink, &st);          mlink_add(mlink, &st);
 }  }
   
 static int  
 inocheck(const struct stat *st)  
 {  
         struct inodev    inodev;  
         uint32_t         hash;  
   
         memset(&inodev, 0, sizeof(inodev));  
         inodev.st_ino = hash = st->st_ino;  
         inodev.st_dev = st->st_dev;  
   
         return(NULL != ohash_find(&mpages, ohash_lookup_memory(  
                         &mpages, (char *)&inodev, sizeof(inodev), hash)));  
 }  
   
 static void  static void
 mlink_add(struct mlink *mlink, const struct stat *st)  mlink_add(struct mlink *mlink, const struct stat *st)
 {  {
Line 865  mpages_free(void)
Line 841  mpages_free(void)
 }  }
   
 /*  /*
    * For each mlink to the mpage, check whether the path looks like
    * it is formatted, and if it does, check whether a source manual
    * exists by the same name, ignoring the suffix.
    * If both conditions hold, drop the mlink.
    */
   static void
   mlinks_undupe(struct mpage *mpage)
   {
           char              buf[PATH_MAX];
           struct mlink    **prev;
           struct mlink     *mlink;
           char             *bufp;
   
           mpage->form = FORM_CAT;
           prev = &mpage->mlinks;
           while (NULL != (mlink = *prev)) {
                   if (FORM_CAT != mlink->dform) {
                           mpage->form = FORM_NONE;
                           goto nextlink;
                   }
                   if (strlcpy(buf, mlink->file, PATH_MAX) >= PATH_MAX) {
                           if (warnings)
                                   say(mlink->file, "Filename too long");
                           goto nextlink;
                   }
                   bufp = strstr(buf, "cat");
                   assert(NULL != bufp);
                   memcpy(bufp, "man", 3);
                   if (NULL != (bufp = strrchr(buf, '.')))
                           *++bufp = '\0';
                   strlcat(buf, mlink->dsec, PATH_MAX);
                   if (NULL == ohash_find(&mlinks,
                                   ohash_qlookup(&mlinks, buf)))
                           goto nextlink;
                   if (warnings)
                           say(mlink->file, "Man source exists: %s", buf);
                   if (use_all)
                           goto nextlink;
                   *prev = mlink->next;
                   mlink_free(mlink);
                   continue;
   nextlink:
                   prev = &(*prev)->next;
           }
   }
   
   /*
  * Run through the files in the global vector "mpages"   * Run through the files in the global vector "mpages"
  * and add them to the database specified in "basedir".   * and add them to the database specified in "basedir".
  *   *
Line 876  mpages_merge(struct mchars *mc, struct mparse *mp, int
Line 899  mpages_merge(struct mchars *mc, struct mparse *mp, int
 {  {
         struct ohash             title_table;          struct ohash             title_table;
         struct ohash_info        title_info, str_info;          struct ohash_info        title_info, str_info;
         char                     buf[PATH_MAX];  
         struct mpage            *mpage;          struct mpage            *mpage;
         struct mdoc             *mdoc;          struct mdoc             *mdoc;
         struct man              *man;          struct man              *man;
         struct title            *title_entry;          struct title            *title_entry;
         char                    *bufp, *title_str;          char                    *title_str;
         const char              *cp;          const char              *cp;
         size_t                   sz;  
         int                      match;          int                      match;
         unsigned int             pslot, tslot;          unsigned int             pslot, tslot;
         enum mandoclevel         lvl;          enum mandoclevel         lvl;
Line 903  mpages_merge(struct mchars *mc, struct mparse *mp, int
Line 924  mpages_merge(struct mchars *mc, struct mparse *mp, int
   
         mpage = ohash_first(&mpages, &pslot);          mpage = ohash_first(&mpages, &pslot);
         while (NULL != mpage) {          while (NULL != mpage) {
                 /*                  mlinks_undupe(mpage);
                  * If we're a catpage (as defined by our path), then see                  if (NULL == mpage->mlinks) {
                  * if a manpage exists by the same name (ignoring the                          mpage = ohash_next(&mpages, &pslot);
                  * suffix).                          continue;
                  * If it does, then we want to use it instead of our  
                  * own.  
                  */  
                 if ( ! use_all && FORM_CAT == mpage->mlinks->dform) {  
                         sz = strlcpy(buf, mpage->mlinks->file, PATH_MAX);  
                         if (sz >= PATH_MAX) {  
                                 if (warnings)  
                                         say(mpage->mlinks->file,  
                                             "Filename too long");  
                                 mpage = ohash_next(&mpages, &pslot);  
                                 continue;  
                         }  
                         bufp = strstr(buf, "cat");  
                         assert(NULL != bufp);  
                         memcpy(bufp, "man", 3);  
                         if (NULL != (bufp = strrchr(buf, '.')))  
                                 *++bufp = '\0';  
                         strlcat(buf, mpage->mlinks->dsec, PATH_MAX);  
                         if (NULL != ohash_find(&mlinks,  
                                         ohash_qlookup(&mlinks, buf))) {  
                                 if (warnings)  
                                         say(mpage->mlinks->file, "Man "  
                                             "source exists: %s", buf);  
                                 mpage = ohash_next(&mpages, &pslot);  
                                 continue;  
                         }  
                 }                  }
   
                 ohash_init(&strings, 6, &str_info);                  ohash_init(&strings, 6, &str_info);
Line 1787  utf8key(struct mchars *mc, struct str *key)
Line 1782  utf8key(struct mchars *mc, struct str *key)
 static void  static void
 dbindex(const struct mpage *mpage, struct mchars *mc)  dbindex(const struct mpage *mpage, struct mchars *mc)
 {  {
           struct mlink    *mlink;
         struct str      *key;          struct str      *key;
         const char      *desc;          const char      *desc;
         int64_t          recno;          int64_t          recno;
Line 1826  dbindex(const struct mpage *mpage, struct mchars *mc)
Line 1822  dbindex(const struct mpage *mpage, struct mchars *mc)
         recno = sqlite3_last_insert_rowid(db);          recno = sqlite3_last_insert_rowid(db);
         sqlite3_reset(stmts[STMT_INSERT_PAGE]);          sqlite3_reset(stmts[STMT_INSERT_PAGE]);
   
         i = 1;          for (mlink = mpage->mlinks; mlink; mlink = mlink->next) {
         SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mpage->mlinks->dsec);                  i = 1;
         SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mpage->mlinks->arch);                  SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->file);
         SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mpage->mlinks->file);                  SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->dsec);
         SQL_BIND_INT64(stmts[STMT_INSERT_LINK], i, recno);                  SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->arch);
         SQL_STEP(stmts[STMT_INSERT_LINK]);                  SQL_BIND_TEXT(stmts[STMT_INSERT_LINK], i, mlink->name);
         sqlite3_reset(stmts[STMT_INSERT_LINK]);                  SQL_BIND_INT64(stmts[STMT_INSERT_LINK], i, recno);
                   SQL_STEP(stmts[STMT_INSERT_LINK]);
                   sqlite3_reset(stmts[STMT_INSERT_LINK]);
           }
   
         for (key = ohash_first(&strings, &slot); NULL != key;          for (key = ohash_first(&strings, &slot); NULL != key;
              key = ohash_next(&strings, &slot)) {               key = ohash_next(&strings, &slot)) {
Line 1968  dbopen(int real)
Line 1967  dbopen(int real)
               ");\n"                ");\n"
               "\n"                "\n"
               "CREATE TABLE \"mlinks\" (\n"                "CREATE TABLE \"mlinks\" (\n"
                 " \"file\" TEXT NOT NULL,\n"
               " \"sec\" TEXT NOT NULL,\n"                " \"sec\" TEXT NOT NULL,\n"
               " \"arch\" TEXT NOT NULL,\n"                " \"arch\" TEXT NOT NULL,\n"
               " \"name\" TEXT NOT NULL,\n"                " \"name\" TEXT NOT NULL,\n"
Line 2000  prepare_statements:
Line 2000  prepare_statements:
                 "(file,sec,arch,desc,form) VALUES (?,?,?,?,?)";                  "(file,sec,arch,desc,form) VALUES (?,?,?,?,?)";
         sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_PAGE], NULL);          sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_PAGE], NULL);
         sql = "INSERT INTO mlinks "          sql = "INSERT INTO mlinks "
                 "(sec,arch,name,pageid) VALUES (?,?,?,?)";                  "(file,sec,arch,name,pageid) VALUES (?,?,?,?,?)";
         sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_LINK], NULL);          sqlite3_prepare_v2(db, sql, -1, &stmts[STMT_INSERT_LINK], NULL);
         sql = "INSERT INTO keys "          sql = "INSERT INTO keys "
                 "(bits,key,pageid) VALUES (?,?,?)";                  "(bits,key,pageid) VALUES (?,?,?)";

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.90

CVSweb