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

Diff for /mandoc/Attic/apropos.c between version 1.21 and 1.27.2.2

version 1.21, 2011/11/28 09:44:05 version 1.27.2.2, 2014/08/11 00:31:13
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifdef HAVE_CONFIG_H  
 #include "config.h"  #include "config.h"
 #endif  
   
   #include <sys/param.h>
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <getopt.h>  #include <getopt.h>
 #include <stdio.h>  #include <stdio.h>
Line 31 
Line 32 
   
 static  int      cmp(const void *, const void *);  static  int      cmp(const void *, const void *);
 static  void     list(struct res *, size_t, void *);  static  void     list(struct res *, size_t, void *);
 static  void     usage(void);  
   
 static  char    *progname;  static  char    *progname;
   
Line 39  int
Line 39  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         int              ch, rc, whatis;          int              ch, rc, whatis;
           struct res      *res;
         struct manpaths  paths;          struct manpaths  paths;
         size_t           terms;          size_t           terms, ressz;
         struct opts      opts;          struct opts      opts;
         struct expr     *e;          struct expr     *e;
         char            *defpaths, *auxpaths;          char            *defpaths, *auxpaths;
         extern int       optind;          char            *conf_file;
         extern char     *optarg;          extern char     *optarg;
           extern int       optind;
   
         progname = strrchr(argv[0], '/');          progname = strrchr(argv[0], '/');
         if (progname == NULL)          if (progname == NULL)
Line 53  main(int argc, char *argv[])
Line 55  main(int argc, char *argv[])
         else          else
                 ++progname;                  ++progname;
   
         whatis = 0 == strncmp(progname, "whatis", 6);          whatis = (0 == strncmp(progname, "whatis", 6));
   
         memset(&paths, 0, sizeof(struct manpaths));          memset(&paths, 0, sizeof(struct manpaths));
         memset(&opts, 0, sizeof(struct opts));          memset(&opts, 0, sizeof(struct opts));
   
           ressz = 0;
           res = NULL;
         auxpaths = defpaths = NULL;          auxpaths = defpaths = NULL;
           conf_file = NULL;
         e = NULL;          e = NULL;
   
         while (-1 != (ch = getopt(argc, argv, "M:m:S:s:")))          while (-1 != (ch = getopt(argc, argv, "C:M:m:S:s:")))
                 switch (ch) {                  switch (ch) {
                   case ('C'):
                           conf_file = optarg;
                           break;
                 case ('M'):                  case ('M'):
                         defpaths = optarg;                          defpaths = optarg;
                         break;                          break;
Line 76  main(int argc, char *argv[])
Line 84  main(int argc, char *argv[])
                         opts.cat = optarg;                          opts.cat = optarg;
                         break;                          break;
                 default:                  default:
                         usage();                          goto usage;
                         return(EXIT_FAILURE);  
                 }                  }
   
         argc -= optind;          argc -= optind;
         argv += optind;          argv += optind;
   
         if (0 == argc)          if (0 == argc)
                 return(EXIT_SUCCESS);                  goto usage;
   
         rc = 0;          rc = 0;
   
         manpath_parse(&paths, defpaths, auxpaths);          manpath_parse(&paths, conf_file, defpaths, auxpaths);
   
         e = whatis ? termcomp(argc, argv, &terms) :          e = whatis ? termcomp(argc, argv, &terms) :
                      exprcomp(argc, argv, &terms);                       exprcomp(argc, argv, &terms);
Line 99  main(int argc, char *argv[])
Line 106  main(int argc, char *argv[])
         }          }
   
         rc = apropos_search          rc = apropos_search
                 (paths.sz, paths.paths,                  (paths.sz, paths.paths, &opts,
                  &opts, e, terms, NULL, list);                   e, terms, NULL, &ressz, &res, list);
   
         if (0 == rc)          if (0 == rc) {
                 fprintf(stderr, "%s: Error reading "                  fprintf(stderr, "%s: Bad database\n", progname);
                                 "manual database\n", progname);                  goto out;
           }
   
 out:  out:
         manpath_free(&paths);          manpath_free(&paths);
           resfree(res, ressz);
         exprfree(e);          exprfree(e);
   
         return(rc ? EXIT_SUCCESS : EXIT_FAILURE);          return(rc ? EXIT_SUCCESS : EXIT_FAILURE);
   
   usage:
           fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "
                           "[-S arch] [-s section]%s ...\n", progname,
                           whatis ? " name" : "\n               expression");
           return(EXIT_FAILURE);
 }  }
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  static void
 list(struct res *res, size_t sz, void *arg)  list(struct res *res, size_t sz, void *arg)
 {  {
         int              i;          size_t           i;
   
         qsort(res, sz, sizeof(struct res), cmp);          qsort(res, sz, sizeof(struct res), cmp);
   
         for (i = 0; i < (int)sz; i++)          for (i = 0; i < sz; i++) {
                 printf("%s(%s%s%s) - %s\n", res[i].title,                  if ( ! res[i].matched)
                           continue;
                   printf("%s(%s%s%s) - %.70s\n",
                                   res[i].title,
                                 res[i].cat,                                  res[i].cat,
                                 *res[i].arch ? "/" : "",                                  *res[i].arch ? "/" : "",
                                 *res[i].arch ? res[i].arch : "",                                  *res[i].arch ? res[i].arch : "",
                                 res[i].desc);                                  res[i].desc);
           }
 }  }
   
 static int  static int
 cmp(const void *p1, const void *p2)  cmp(const void *p1, const void *p2)
 {  {
   
         return(strcmp(((const struct res *)p1)->title,          return(strcasecmp(((const struct res *)p1)->title,
                                 ((const struct res *)p2)->title));                                  ((const struct res *)p2)->title));
 }  
   
 static void  
 usage(void)  
 {  
   
         fprintf(stderr, "usage: %s "  
                         "[-M path] "  
                         "[-m path] "  
                         "[-S arch] "  
                         "[-s section] "  
                         "expression...\n",  
                         progname);  
 }  }

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

CVSweb