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

Diff for /mandoc/mansearch.c between version 1.21 and 1.25

version 1.21, 2014/01/19 23:09:30 version 1.25, 2014/03/28 19:17:12
Line 39 
Line 39 
 #include <sqlite3.h>  #include <sqlite3.h>
   
 #include "mandoc.h"  #include "mandoc.h"
   #include "mandoc_aux.h"
 #include "manpath.h"  #include "manpath.h"
 #include "mansearch.h"  #include "mansearch.h"
   
Line 254  mansearch(const struct mansearch *search,
Line 255  mansearch(const struct mansearch *search,
                 sqlite3_finalize(s);                  sqlite3_finalize(s);
   
                 c = sqlite3_prepare_v2(db,                  c = sqlite3_prepare_v2(db,
                     "SELECT * FROM mlinks WHERE pageid=?",                      "SELECT * FROM mlinks WHERE pageid=?"
                       " ORDER BY sec, arch, name",
                     -1, &s, NULL);                      -1, &s, NULL);
                 if (SQLITE_OK != c)                  if (SQLITE_OK != c)
                         fprintf(stderr, "%s\n", sqlite3_errmsg(db));                          fprintf(stderr, "%s\n", sqlite3_errmsg(db));
Line 303  static void
Line 305  static void
 buildnames(struct manpage *mpage, sqlite3 *db, sqlite3_stmt *s,  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3_stmt *s,
                 uint64_t id, const char *path, int form)                  uint64_t id, const char *path, int form)
 {  {
         char            *newnames;          char            *newnames, *prevsec, *prevarch;
         const char      *oldnames, *sep1, *name, *sec, *sep2, *arch, *fsec;          const char      *oldnames, *sep1, *name, *sec, *sep2, *arch, *fsec;
         size_t           i;          size_t           i;
         int              c;          int              c;
   
           mpage->file = NULL;
         mpage->names = NULL;          mpage->names = NULL;
           prevsec = prevarch = NULL;
         i = 1;          i = 1;
         SQL_BIND_INT64(db, s, i, id);          SQL_BIND_INT64(db, s, i, id);
         while (SQLITE_ROW == (c = sqlite3_step(s))) {          while (SQLITE_ROW == (c = sqlite3_step(s))) {
   
                 /* Assemble the list of names. */                  /* Decide whether we already have some names. */
   
                 if (NULL == mpage->names) {                  if (NULL == mpage->names) {
                         oldnames = "";                          oldnames = "";
Line 322  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
Line 326  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
                         oldnames = mpage->names;                          oldnames = mpage->names;
                         sep1 = ", ";                          sep1 = ", ";
                 }                  }
   
                   /* Fetch the next name. */
   
                 sec = sqlite3_column_text(s, 0);                  sec = sqlite3_column_text(s, 0);
                 arch = sqlite3_column_text(s, 1);                  arch = sqlite3_column_text(s, 1);
                 name = sqlite3_column_text(s, 2);                  name = sqlite3_column_text(s, 2);
                 sep2 = '\0' == *arch ? "" : "/";  
                 if (-1 == asprintf(&newnames, "%s%s%s(%s%s%s)",                  /* If the section changed, append the old one. */
                     oldnames, sep1, name, sec, sep2, arch)) {  
                         perror(0);                  if (NULL != prevsec &&
                         exit((int)MANDOCLEVEL_SYSERR);                      (strcmp(sec, prevsec) ||
                        strcmp(arch, prevarch))) {
                           sep2 = '\0' == *prevarch ? "" : "/";
                           mandoc_asprintf(&newnames, "%s(%s%s%s)",
                               oldnames, prevsec, sep2, prevarch);
                           free(mpage->names);
                           oldnames = mpage->names = newnames;
                           free(prevsec);
                           free(prevarch);
                           prevsec = prevarch = NULL;
                 }                  }
   
                   /* Save the new section, to append it later. */
   
                   if (NULL == prevsec) {
                           prevsec = mandoc_strdup(sec);
                           prevarch = mandoc_strdup(arch);
                   }
   
                   /* Append the new name. */
   
                   mandoc_asprintf(&newnames, "%s%s%s",
                       oldnames, sep1, name);
                 free(mpage->names);                  free(mpage->names);
                 mpage->names = newnames;                  mpage->names = newnames;
   
Line 346  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
Line 374  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
                         sep1 = "cat";                          sep1 = "cat";
                         fsec = "0";                          fsec = "0";
                 }                  }
                 if (-1 == asprintf(&mpage->file, "%s/%s%s%s%s/%s.%s",                  sep2 = '\0' == *arch ? "" : "/";
                     path, sep1, sec, sep2, arch, name, fsec)) {                  mandoc_asprintf(&mpage->file, "%s/%s%s%s%s/%s.%s",
                         perror(0);                      path, sep1, sec, sep2, arch, name, fsec);
                         exit((int)MANDOCLEVEL_SYSERR);  
                 }  
         }          }
         if (SQLITE_DONE != c)          if (SQLITE_DONE != c)
                 fprintf(stderr, "%s\n", sqlite3_errmsg(db));                  fprintf(stderr, "%s\n", sqlite3_errmsg(db));
         sqlite3_reset(s);          sqlite3_reset(s);
   
           /* Append one final section to the names. */
   
           if (NULL != prevsec) {
                   sep2 = '\0' == *prevarch ? "" : "/";
                   mandoc_asprintf(&newnames, "%s(%s%s%s)",
                       mpage->names, prevsec, sep2, prevarch);
                   free(mpage->names);
                   mpage->names = newnames;
                   free(prevsec);
                   free(prevarch);
           }
 }  }
   
 static char *  static char *
Line 378  buildoutput(sqlite3 *db, sqlite3_stmt *s, uint64_t id,
Line 416  buildoutput(sqlite3 *db, sqlite3_stmt *s, uint64_t id,
                         sep1 = " # ";                          sep1 = " # ";
                 }                  }
                 data = sqlite3_column_text(s, 1);                  data = sqlite3_column_text(s, 1);
                 if (-1 == asprintf(&newoutput, "%s%s%s",                  mandoc_asprintf(&newoutput, "%s%s%s",
                     oldoutput, sep1, data)) {                      oldoutput, sep1, data);
                         perror(0);  
                         exit((int)MANDOCLEVEL_SYSERR);  
                 }  
                 free(output);                  free(output);
                 output = newoutput;                  output = newoutput;
         }          }
Line 554  exprspec(struct expr *cur, uint64_t key, const char *v
Line 589  exprspec(struct expr *cur, uint64_t key, const char *v
         if (NULL == value)          if (NULL == value)
                 return(cur);                  return(cur);
   
         if (-1 == asprintf(&cp, format, value)) {          mandoc_asprintf(&cp, format, value);
                 perror(0);  
                 exit((int)MANDOCLEVEL_SYSERR);  
         }  
         cur->next = mandoc_calloc(1, sizeof(struct expr));          cur->next = mandoc_calloc(1, sizeof(struct expr));
         cur = cur->next;          cur = cur->next;
         cur->and = 1;          cur->and = 1;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.25

CVSweb