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

Diff for /mandoc/mansearch.c between version 1.10 and 1.11

version 1.10, 2013/12/27 18:51:25 version 1.11, 2013/12/31 02:42:29
Line 121  static const struct type types[] = {
Line 121  static const struct type types[] = {
         { 0ULL, NULL }          { 0ULL, NULL }
 };  };
   
   static  char            *buildnames(sqlite3 *, sqlite3_stmt *, uint64_t);
 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 *);
Line 144  mansearch(const struct mansearch *search,
Line 145  mansearch(const struct mansearch *search,
         int              fd, rc, c;          int              fd, rc, c;
         int64_t          id;          int64_t          id;
         char             buf[PATH_MAX];          char             buf[PATH_MAX];
         char            *sql, *newnames;          char            *sql;
         const char      *oldnames, *sep1, *name, *sec, *sep2, *arch;  
         struct manpage  *mpage;          struct manpage  *mpage;
         struct expr     *e, *ep;          struct expr     *e, *ep;
         sqlite3         *db;          sqlite3         *db;
Line 305  mansearch(const struct mansearch *search,
Line 305  mansearch(const struct mansearch *search,
                                 perror(0);                                  perror(0);
                                 exit((int)MANDOCLEVEL_SYSERR);                                  exit((int)MANDOCLEVEL_SYSERR);
                         }                          }
                         mpage->names = NULL;  
                         mpage->desc = mp->desc;                          mpage->desc = mp->desc;
                         mpage->form = mp->form;                          mpage->form = mp->form;
                           mpage->names = buildnames(db, s, mp->id);
   
                         j = 1;  
                         SQL_BIND_INT64(db, s, j, mp->id);  
                         while (SQLITE_ROW == (c = sqlite3_step(s))) {  
                                 if (NULL == mpage->names) {  
                                         oldnames = "";  
                                         sep1 = "";  
                                 } else {  
                                         oldnames = mpage->names;  
                                         sep1 = ", ";  
                                 }  
                                 sec = sqlite3_column_text(s, 1);  
                                 arch = sqlite3_column_text(s, 2);  
                                 name = sqlite3_column_text(s, 3);  
                                 sep2 = '\0' == *arch ? "" : "/";  
                                 if (-1 == asprintf(&newnames,  
                                     "%s%s%s(%s%s%s)", oldnames, sep1,  
                                     name, sec, sep2, arch)) {  
                                         perror(0);  
                                         exit((int)MANDOCLEVEL_SYSERR);  
                                 }  
                                 free(mpage->names);  
                                 mpage->names = newnames;  
                         }  
                         if (SQLITE_DONE != c)  
                                 fprintf(stderr, "%s\n", sqlite3_errmsg(db));  
                         sqlite3_reset(s);  
   
                         free(mp->file);                          free(mp->file);
                         free(mp);                          free(mp);
                         cur++;                          cur++;
Line 353  out:
Line 326  out:
         free(sql);          free(sql);
         *sz = cur;          *sz = cur;
         return(rc);          return(rc);
   }
   
   static char *
   buildnames(sqlite3 *db, sqlite3_stmt *s, uint64_t id)
   {
           char            *names, *newnames;
           const char      *oldnames, *sep1, *name, *sec, *sep2, *arch;
           size_t           i;
           int              c;
   
           names = NULL;
           i = 1;
           SQL_BIND_INT64(db, s, i, id);
           while (SQLITE_ROW == (c = sqlite3_step(s))) {
                   if (NULL == names) {
                           oldnames = "";
                           sep1 = "";
                   } else {
                           oldnames = names;
                           sep1 = ", ";
                   }
                   sec = sqlite3_column_text(s, 1);
                   arch = sqlite3_column_text(s, 2);
                   name = sqlite3_column_text(s, 3);
                   sep2 = '\0' == *arch ? "" : "/";
                   if (-1 == asprintf(&newnames, "%s%s%s(%s%s%s)",
                       oldnames, sep1, name, sec, sep2, arch)) {
                           perror(0);
                           exit((int)MANDOCLEVEL_SYSERR);
                   }
                   free(names);
                   names = newnames;
           }
           if (SQLITE_DONE != c)
                   fprintf(stderr, "%s\n", sqlite3_errmsg(db));
           sqlite3_reset(s);
           return(names);
 }  }
   
 /*  /*

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb