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

Diff for /mandoc/mandocdb.c between version 1.61 and 1.64

version 1.61, 2013/06/05 21:21:08 version 1.64, 2013/06/06 17:51:31
Line 23 
Line 23 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
   #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <fts.h>  #include <fts.h>
 #include <getopt.h>  #include <getopt.h>
Line 156  static int  set_basedir(const char *);
Line 157  static int  set_basedir(const char *);
 static  void     putkey(const struct of *,  static  void     putkey(const struct of *,
                         const char *, uint64_t);                          const char *, uint64_t);
 static  void     putkeys(const struct of *,  static  void     putkeys(const struct of *,
                         const char *, int, uint64_t);                          const char *, size_t, uint64_t);
 static  void     putmdockey(const struct of *,  static  void     putmdockey(const struct of *,
                         const struct mdoc_node *, uint64_t);                          const struct mdoc_node *, uint64_t);
 static  void     say(const char *, const char *, ...);  static  void     say(const char *, const char *, ...);
 static  char    *stradd(const char *);  static  char    *stradd(const char *);
 static  char    *straddbuf(const char *, size_t);  static  char    *stradds(const char *, size_t);
 static  int      treescan(void);  static  int      treescan(void);
 static  size_t   utf8(unsigned int, char [7]);  static  size_t   utf8(unsigned int, char [7]);
 static  void     utf8key(struct mchars *, struct str *);  static  void     utf8key(struct mchars *, struct str *);
 static  void     wordaddbuf(const struct of *,  
                         const char *, size_t, uint64_t);  
   
 static  char            *progname;  static  char            *progname;
 static  int              use_all; /* use all found files */  static  int              use_all; /* use all found files */
Line 1101  parse_catpage(struct of *of)
Line 1100  parse_catpage(struct of *of)
         if (NULL == title || '\0' == *title) {          if (NULL == title || '\0' == *title) {
                 if (warnings)                  if (warnings)
                         say(of->file, "Cannot find NAME section");                          say(of->file, "Cannot find NAME section");
                   putkey(of, of->name, TYPE_Nd);
                 fclose(stream);                  fclose(stream);
                 free(title);                  free(title);
                 return;                  return;
Line 1152  putkey(const struct of *of, const char *value, uint64_
Line 1152  putkey(const struct of *of, const char *value, uint64_
 {  {
   
         assert(NULL != value);          assert(NULL != value);
         wordaddbuf(of, value, strlen(value), type);          putkeys(of, value, strlen(value), type);
 }  }
   
 /*  /*
  * Like putkey() but for unterminated strings.  
  */  
 static void  
 putkeys(const struct of *of, const char *value, int sz, uint64_t type)  
 {  
   
         wordaddbuf(of, value, sz, type);  
 }  
   
 /*  
  * Grok all nodes at or below a certain mdoc node into putkey().   * Grok all nodes at or below a certain mdoc node into putkey().
  */   */
 static void  static void
Line 1535  parse_mdoc_body(struct of *of, const struct mdoc_node 
Line 1525  parse_mdoc_body(struct of *of, const struct mdoc_node 
 }  }
   
 /*  /*
  * See straddbuf().   * See stradds().
  */   */
 static char *  static char *
 stradd(const char *cp)  stradd(const char *cp)
 {  {
   
         return(straddbuf(cp, strlen(cp)));          return(stradds(cp, strlen(cp)));
 }  }
   
 /*  /*
Line 1551  stradd(const char *cp)
Line 1541  stradd(const char *cp)
  * In using it, we avoid having thousands of (e.g.) "cat1" string   * In using it, we avoid having thousands of (e.g.) "cat1" string
  * allocations for the "of" table.   * allocations for the "of" table.
  * We also have a layer atop the string table for keeping track of words   * We also have a layer atop the string table for keeping track of words
  * in a parse sequence (see wordaddbuf()).   * in a parse sequence (see putkeys()).
  */   */
 static char *  static char *
 straddbuf(const char *cp, size_t sz)  stradds(const char *cp, size_t sz)
 {  {
         struct str      *s;          struct str      *s;
         unsigned int     index;          unsigned int     index;
Line 1594  hashget(const char *cp, size_t sz)
Line 1584  hashget(const char *cp, size_t sz)
  * of its entries without conflict.   * of its entries without conflict.
  */   */
 static void  static void
 wordaddbuf(const struct of *of,  putkeys(const struct of *of, const char *cp, size_t sz, uint64_t v)
                 const char *cp, size_t sz, uint64_t v)  
 {  {
         struct str      *s;          struct str      *s;
         unsigned int     index;          unsigned int     index;
Line 1863  static void
Line 1852  static void
 dbclose(int real)  dbclose(int real)
 {  {
         size_t           i;          size_t           i;
         char             file[PATH_MAX];  
   
         if (nodb)          if (nodb)
                 return;                  return;
Line 1879  dbclose(int real)
Line 1867  dbclose(int real)
         if (real)          if (real)
                 return;                  return;
   
         strlcpy(file, MANDOC_DB, PATH_MAX);          if (-1 == rename(MANDOC_DB "~", MANDOC_DB)) {
         strlcat(file, "~", PATH_MAX);  
         if (-1 == rename(file, MANDOC_DB)) {  
                 exitcode = (int)MANDOCLEVEL_SYSERR;                  exitcode = (int)MANDOCLEVEL_SYSERR;
                 say(MANDOC_DB, NULL);                  say(MANDOC_DB, NULL);
         }          }
Line 1898  dbclose(int real)
Line 1884  dbclose(int real)
 static int  static int
 dbopen(int real)  dbopen(int real)
 {  {
         char             file[PATH_MAX];          const char      *file, *sql;
         const char      *sql;  
         int              rc, ofl;          int              rc, ofl;
         size_t           sz;  
   
         if (nodb)          if (nodb)
                 return(1);                  return(1);
   
         sz = strlcpy(file, MANDOC_DB, PATH_MAX);          ofl = SQLITE_OPEN_READWRITE;
         if ( ! real)          if (0 == real) {
                 sz = strlcat(file, "~", PATH_MAX);                  file = MANDOC_DB "~";
                   if (-1 == remove(file) && ENOENT != errno) {
         if (sz >= PATH_MAX) {                          exitcode = (int)MANDOCLEVEL_SYSERR;
                 fprintf(stderr, "%s: Path too long\n", file);                          say(file, NULL);
                 return(0);                          return(0);
         }                  }
                   ofl |= SQLITE_OPEN_EXCLUSIVE;
         if ( ! real)          } else
                 remove(file);                  file = MANDOC_DB;
   
         ofl = SQLITE_OPEN_READWRITE |  
                 (0 == real ? SQLITE_OPEN_EXCLUSIVE : 0);  
   
         rc = sqlite3_open_v2(file, &db, ofl, NULL);          rc = sqlite3_open_v2(file, &db, ofl, NULL);
         if (SQLITE_OK == rc)          if (SQLITE_OK == rc)

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.64

CVSweb