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

Diff for /mandoc/mansearch.c between version 1.4 and 1.5

version 1.4, 2012/06/09 11:00:13 version 1.5, 2012/06/09 14:11:16
Line 39 
Line 39 
   
 #include "mandoc.h"  #include "mandoc.h"
 #include "manpath.h"  #include "manpath.h"
 #include "mandocdb.h"  
 #include "mansearch.h"  #include "mansearch.h"
   
 #define SQL_BIND_TEXT(_db, _s, _i, _v) \  #define SQL_BIND_TEXT(_db, _s, _i, _v) \
Line 117  static const struct type types[] = {
Line 116  static const struct type types[] = {
 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  struct expr     *exprcomp(int, char *[]);  static  struct expr     *exprcomp(const struct mansearch *,
                                   int, char *[]);
 static  void             exprfree(struct expr *);  static  void             exprfree(struct expr *);
 static  struct expr     *exprterm(char *);  static  struct expr     *exprterm(const struct mansearch *, char *);
 static  char            *sql_statement(const struct expr *,  static  char            *sql_statement(const struct expr *,
                                 const char *, const char *);                                  const char *, const char *);
   
 int  int
 mansearch(const struct manpaths *paths,  mansearch(const struct mansearch *search,
                 const char *arch, const char *sec,                  const struct manpaths *paths,
                 int argc, char *argv[],                  int argc, char *argv[],
                 struct manpage **res, size_t *sz)                  struct manpage **res, size_t *sz)
 {  {
Line 158  mansearch(const struct manpaths *paths, 
Line 158  mansearch(const struct manpaths *paths, 
   
         if (0 == argc)          if (0 == argc)
                 goto out;                  goto out;
         if (NULL == (e = exprcomp(argc, argv)))          if (NULL == (e = exprcomp(search, argc, argv)))
                 goto out;                  goto out;
   
         /*          /*
Line 176  mansearch(const struct manpaths *paths, 
Line 176  mansearch(const struct manpaths *paths, 
                 goto out;                  goto out;
         }          }
   
         sql = sql_statement(e, arch, sec);          sql = sql_statement(e, search->arch, search->sec);
   
         /*          /*
          * Loop over the directories (containing databases) for us to           * Loop over the directories (containing databases) for us to
Line 211  mansearch(const struct manpaths *paths, 
Line 211  mansearch(const struct manpaths *paths, 
                 if (SQLITE_OK != c)                  if (SQLITE_OK != c)
                         fprintf(stderr, "%s\n", sqlite3_errmsg(db));                          fprintf(stderr, "%s\n", sqlite3_errmsg(db));
   
                 if (NULL != arch)                  if (NULL != search->arch)
                         SQL_BIND_TEXT(db, s, j, arch);                          SQL_BIND_TEXT(db, s, j, search->arch);
                 if (NULL != sec)                  if (NULL != search->sec)
                         SQL_BIND_TEXT(db, s, j, arch);                          SQL_BIND_TEXT(db, s, j, search->sec);
   
                 for (ep = e; NULL != ep; ep = ep->next) {                  for (ep = e; NULL != ep; ep = ep->next) {
                         SQL_BIND_TEXT(db, s, j, ep->v);                          SQL_BIND_TEXT(db, s, j, ep->v);
Line 346  sql_statement(const struct expr *e, const char *arch, 
Line 346  sql_statement(const struct expr *e, const char *arch, 
  * "(", "foo=bar", etc.).   * "(", "foo=bar", etc.).
  */   */
 static struct expr *  static struct expr *
 exprcomp(int argc, char *argv[])  exprcomp(const struct mansearch *search, int argc, char *argv[])
 {  {
         int              i;          int              i;
         struct expr     *first, *next, *cur;          struct expr     *first, *next, *cur;
Line 354  exprcomp(int argc, char *argv[])
Line 354  exprcomp(int argc, char *argv[])
         first = cur = NULL;          first = cur = NULL;
   
         for (i = 0; i < argc; i++) {          for (i = 0; i < argc; i++) {
                 next = exprterm(argv[i]);                  next = exprterm(search, argv[i]);
                 if (NULL == next) {                  if (NULL == next) {
                         exprfree(first);                          exprfree(first);
                         return(NULL);                          return(NULL);
Line 370  exprcomp(int argc, char *argv[])
Line 370  exprcomp(int argc, char *argv[])
 }  }
   
 static struct expr *  static struct expr *
 exprterm(char *buf)  exprterm(const struct mansearch *search, char *buf)
 {  {
         struct expr     *e;          struct expr     *e;
         char            *key, *v;          char            *key, *v;
Line 381  exprterm(char *buf)
Line 381  exprterm(char *buf)
   
         e = mandoc_calloc(1, sizeof(struct expr));          e = mandoc_calloc(1, sizeof(struct expr));
   
           /*"whatis" mode uses an opaque string and default fields. */
   
           if (MANSEARCH_WHATIS & search->flags) {
                   e->v = buf;
                   e->bits = search->deftype;
                   return(e);
           }
   
         /*          /*
          * If no =~ is specified, search with equality over names and           * If no =~ is specified, search with equality over names and
          * descriptions.           * descriptions.
Line 389  exprterm(char *buf)
Line 397  exprterm(char *buf)
   
         if (NULL == (v = strpbrk(buf, "=~"))) {          if (NULL == (v = strpbrk(buf, "=~"))) {
                 e->v = buf;                  e->v = buf;
                 e->bits = TYPE_Nm | TYPE_Nd;                  e->bits = search->deftype;
                 return(e);                  return(e);
         } else if (v == buf)          } else if (v == buf)
                 e->bits = TYPE_Nm | TYPE_Nd;                  e->bits = search->deftype;
   
         e->glob = '~' == *v;          e->glob = '~' == *v;
         *v++ = '\0';          *v++ = '\0';

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb