[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.22

version 1.21, 2014/01/19 23:09:30 version 1.22, 2014/03/17 16:31:44
Line 254  mansearch(const struct mansearch *search,
Line 254  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 304  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->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 324  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)) {  
                   if (NULL != prevsec &&
                       (strcmp(sec, prevsec) ||
                        strcmp(arch, prevarch))) {
                           sep2 = '\0' == *prevarch ? "" : "/";
                           if (-1 == asprintf(&newnames, "%s(%s%s%s)",
                               oldnames, prevsec, sep2, prevarch)) {
                                   perror(0);
                                   exit((int)MANDOCLEVEL_SYSERR);
                           }
                           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. */
   
                   if (-1 == asprintf(&newnames, "%s%s%s",
                       oldnames, sep1, name)) {
                         perror(0);                          perror(0);
                         exit((int)MANDOCLEVEL_SYSERR);                          exit((int)MANDOCLEVEL_SYSERR);
                 }                  }
Line 346  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
Line 378  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
                         sep1 = "cat";                          sep1 = "cat";
                         fsec = "0";                          fsec = "0";
                 }                  }
                   sep2 = '\0' == *arch ? "" : "/";
                 if (-1 == asprintf(&mpage->file, "%s/%s%s%s%s/%s.%s",                  if (-1 == asprintf(&mpage->file, "%s/%s%s%s%s/%s.%s",
                     path, sep1, sec, sep2, arch, name, fsec)) {                      path, sep1, sec, sep2, arch, name, fsec)) {
                         perror(0);                          perror(0);
Line 355  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
Line 388  buildnames(struct manpage *mpage, sqlite3 *db, sqlite3
         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 ? "" : "/";
                   if (-1 == asprintf(&newnames, "%s(%s%s%s)",
                       mpage->names, prevsec, sep2, prevarch)) {
                           perror(0);
                           exit((int)MANDOCLEVEL_SYSERR);
                   }
                   free(mpage->names);
                   mpage->names = newnames;
                   free(prevsec);
                   free(prevarch);
           }
 }  }
   
 static char *  static char *

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

CVSweb