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

Diff for /mandoc/catman.c between version 1.3 and 1.8

version 1.3, 2011/12/04 22:52:50 version 1.8, 2011/12/18 18:51:01
Line 51 
Line 51 
                 exit(EXIT_FAILURE); \                  exit(EXIT_FAILURE); \
         } while (/* CONSTCOND */0)          } while (/* CONSTCOND */0)
   
 static  int              indexhtml(char *);  static  int              indexhtml(char *, size_t, char *, size_t);
 #if 0  static  int              manup(const struct manpaths *, char *);
 static  int              jobstart(const char *, const char *, pid_t *);  
 static  int              jobwait(pid_t);  
 #endif  
 static  int              manup(const struct manpaths *, const char *);  
 static  int              mkpath(char *, mode_t, mode_t);  static  int              mkpath(char *, mode_t, mode_t);
 static  int              treecpy(char *, char *);  static  int              treecpy(char *, char *);
 static  int              update(char *, char *);  static  int              update(char *, char *);
Line 70  int
Line 66  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         int              ch;          int              ch;
         char            *aux, *base;          char            *aux, *base, *conf_file;
         const char      *dir;  
         struct manpaths  dirs;          struct manpaths  dirs;
           char             buf[MAXPATHLEN];
         extern char     *optarg;          extern char     *optarg;
         extern int       optind;          extern int       optind;
   
Line 83  main(int argc, char *argv[])
Line 79  main(int argc, char *argv[])
                 ++progname;                  ++progname;
   
         aux = base = NULL;          aux = base = NULL;
         dir = "/var/www/cache/man.cgi";          xstrlcpy(buf, "/var/www/cache/man.cgi", MAXPATHLEN);
   
         while (-1 != (ch = getopt(argc, argv, "fm:M:o:v")))          while (-1 != (ch = getopt(argc, argv, "C:fm:M:o:v")))
                 switch (ch) {                  switch (ch) {
                   case ('C'):
                           conf_file = optarg;
                           break;
                 case ('f'):                  case ('f'):
                         force = 1;                          force = 1;
                         break;                          break;
Line 97  main(int argc, char *argv[])
Line 96  main(int argc, char *argv[])
                         base = optarg;                          base = optarg;
                         break;                          break;
                 case ('o'):                  case ('o'):
                         dir = optarg;                          xstrlcpy(buf, optarg, MAXPATHLEN);
                         break;                          break;
                 case ('v'):                  case ('v'):
                         verbose++;                          verbose++;
Line 116  main(int argc, char *argv[])
Line 115  main(int argc, char *argv[])
         }          }
   
         memset(&dirs, 0, sizeof(struct manpaths));          memset(&dirs, 0, sizeof(struct manpaths));
         manpath_parse(&dirs, base, aux);          manpath_parse(&dirs, conf_file, base, aux);
         ch = manup(&dirs, dir);          ch = manup(&dirs, buf);
         manpath_free(&dirs);          manpath_free(&dirs);
         return(ch ? EXIT_SUCCESS : EXIT_FAILURE);          return(ch ? EXIT_SUCCESS : EXIT_FAILURE);
 }  }
Line 128  usage(void)
Line 127  usage(void)
   
         fprintf(stderr, "usage: %s "          fprintf(stderr, "usage: %s "
                         "[-fv] "                          "[-fv] "
                           "[-C file] "
                         "[-o path] "                          "[-o path] "
                         "[-m manpath] "                          "[-m manpath] "
                         "[-M manpath]\n",                          "[-M manpath]\n",
Line 196  out:
Line 196  out:
         return(rc);          return(rc);
 }  }
   
 #if 0  
 /*  /*
  * Clean up existing child.  
  * Return 1 if cleaned up fine (or none was started) and 0 otherwise.  
  */  
 static int  
 jobwait(pid_t pid)  
 {  
         int              st;  
   
         if (-1 == pid)  
                 return(1);  
   
         if (-1 == waitpid(pid, &st, 0)) {  
                 perror(NULL);  
                 exit(EXIT_FAILURE);  
         }  
   
         return(WIFEXITED(st) && 0 == WEXITSTATUS(st));  
 }  
   
 /*  
  * Start a job (child process), first making sure that the prior one has  
  * finished.  
  * Return 1 if the prior child exited and the new one started, else 0.  
  */  
 static int  
 jobstart(const char *dst, const char *src, pid_t *pid)  
 {  
         int              fd;  
   
         if ( ! jobwait(*pid))  
                 return(0);  
   
         if (-1 == (*pid = fork())) {  
                 perror(NULL);  
                 exit(EXIT_FAILURE);  
         } else if (*pid > 0)  
                 return(1);  
   
         if (-1 == (fd = open(dst, O_WRONLY|O_TRUNC|O_CREAT, 0644))) {  
                 perror(dst);  
                 exit(EXIT_FAILURE);  
         }  
   
         if (-1 == dup2(fd, STDOUT_FILENO)) {  
                 perror(NULL);  
                 exit(EXIT_FAILURE);  
         }  
   
         execlp("mandoc", "mandoc", "-T", "html",  
                         "-O", "fragment",  
                         "-O", "man=man.cgi?expr=%N&sec=%S",  
                         src, (char *)NULL);  
   
         perror("mandoc");  
         exit(EXIT_FAILURE);  
         /* NOTREACHED */  
 }  
 #endif  
   
 /*  
  * Pass over the recno database and re-create HTML pages if they're   * Pass over the recno database and re-create HTML pages if they're
  * found to be out of date.   * found to be out of date.
  * Returns -1 on fatal error, 1 on success.   * Returns -1 on fatal error, 1 on success.
  */   */
 static int  static int
 indexhtml(char *dst)  indexhtml(char *src, size_t ssz, char *dst, size_t dsz)
 {  {
         DB              *idx;          DB              *idx;
         DBT              key, val;          DBT              key, val;
         size_t           sz;  
         int              c, rc;          int              c, rc;
         unsigned int     fl;          unsigned int     fl;
         const char      *f, *cp;          const char      *f;
         char            *d;          char            *d;
         char             fname[MAXPATHLEN];          char             fname[MAXPATHLEN];
         pid_t            pid;          pid_t            pid;
   
         sz = strlen(dst);  
         pid = -1;          pid = -1;
   
         xstrlcpy(fname, dst, MAXPATHLEN);          xstrlcpy(fname, dst, MAXPATHLEN);
Line 290  indexhtml(char *dst)
Line 227  indexhtml(char *dst)
         fl = R_FIRST;          fl = R_FIRST;
         while (0 == (c = (*idx->seq)(idx, &key, &val, fl))) {          while (0 == (c = (*idx->seq)(idx, &key, &val, fl))) {
                 fl = R_NEXT;                  fl = R_NEXT;
                 cp = (const char *)val.data;                  /*
                    * If the record is zero-length, then it's unassigned.
                    * Skip past these.
                    */
                 if (0 == val.size)                  if (0 == val.size)
                         continue;                          continue;
                 if (NULL == (f = memchr(cp, '\0', val.size)))  
                   f = (const char *)val.data + 1;
                   if (NULL == memchr(f, '\0', val.size - 1))
                         break;                          break;
                 if (++f - cp >= (int)val.size)  
                         break;  
                 if (NULL == memchr(f, '\0', val.size - (f - cp)))  
                         break;  
   
                 dst[(int)sz] = '\0';                  src[(int)ssz] = dst[(int)dsz] = '\0';
   
                 xstrlcat(dst, "/", MAXPATHLEN);                  xstrlcat(dst, "/", MAXPATHLEN);
                 xstrlcat(dst, f, MAXPATHLEN);                  xstrlcat(dst, f, MAXPATHLEN);
   
                 if (-1 == (rc = isnewer(dst, f))) {                  xstrlcat(src, "/", MAXPATHLEN);
                   xstrlcat(src, f, MAXPATHLEN);
   
                   if (-1 == (rc = isnewer(dst, src))) {
                         fprintf(stderr, "%s: File missing\n", f);                          fprintf(stderr, "%s: File missing\n", f);
                         break;                          break;
                 } else if (0 == rc)                  } else if (0 == rc)
Line 322  indexhtml(char *dst)
Line 263  indexhtml(char *dst)
   
                 *d = '/';                  *d = '/';
   
                 if ( ! filecpy(dst, f))                  if ( ! filecpy(dst, src))
                         break;                          break;
 #if 0  
                 if ( ! jobstart(dst, f, &pid))  
                         break;  
 #endif  
                 if (verbose)                  if (verbose)
                         printf("%s\n", dst);                          printf("%s\n", dst);
         }          }
Line 338  indexhtml(char *dst)
Line 275  indexhtml(char *dst)
                 perror(fname);                  perror(fname);
         else if (0 == c)          else if (0 == c)
                 fprintf(stderr, "%s: Corrupt index\n", fname);                  fprintf(stderr, "%s: Corrupt index\n", fname);
 #if 0  
         if ( ! jobwait(pid))  
                 c = -1;  
 #endif  
   
         return(1 == c ? 1 : -1);          return(1 == c ? 1 : -1);
 }  }
Line 377  update(char *dst, char *src)
Line 310  update(char *dst, char *src)
         if (verbose)          if (verbose)
                 printf("%s\n", dst);                  printf("%s\n", dst);
   
         dst[(int)dsz] = '\0';          dst[(int)dsz] = src[(int)ssz] = '\0';
   
         return(indexhtml(dst));          return(indexhtml(src, ssz, dst, dsz));
 }  }
   
 /*  /*
Line 428  treecpy(char *dst, char *src)
Line 361  treecpy(char *dst, char *src)
  * Returns 1 on success, 0 on failure.   * Returns 1 on success, 0 on failure.
  */   */
 static int  static int
 manup(const struct manpaths *dirs, const char *dir)  manup(const struct manpaths *dirs, char *base)
 {  {
         char             dst[MAXPATHLEN],          char             dst[MAXPATHLEN],
                          src[MAXPATHLEN];                           src[MAXPATHLEN];
Line 437  manup(const struct manpaths *dirs, const char *dir)
Line 370  manup(const struct manpaths *dirs, const char *dir)
         size_t           sz;          size_t           sz;
         FILE            *f;          FILE            *f;
   
         xstrlcpy(dst, dir, MAXPATHLEN);          /* Create the path and file for the catman.conf file. */
         xstrlcat(dst, "/etc", MAXPATHLEN);  
   
           sz = strlen(base);
           xstrlcpy(dst, base, MAXPATHLEN);
           xstrlcat(dst, "/etc", MAXPATHLEN);
         if (-1 == mkpath(dst, 0755, 0755)) {          if (-1 == mkpath(dst, 0755, 0755)) {
                 perror(dst);                  perror(dst);
                 return(0);                  return(0);
         }          }
   
         xstrlcat(dst, "/catman.conf", MAXPATHLEN);          xstrlcat(dst, "/catman.conf", MAXPATHLEN);
   
         if (verbose)  
                 printf("%s\n", dst);  
   
         if (NULL == (f = fopen(dst, "w"))) {          if (NULL == (f = fopen(dst, "w"))) {
                 perror(dst);                  perror(dst);
                 return(0);                  return(0);
         }          } else if (verbose)
                   printf("%s\n", dst);
   
         xstrlcpy(dst, dir, MAXPATHLEN);  
         sz = strlen(dst);  
   
         for (i = 0; i < dirs->sz; i++) {          for (i = 0; i < dirs->sz; i++) {
                 path = dirs->paths[i];                  path = dirs->paths[i];
   
                 dst[(int)sz] = '\0';                  dst[(int)sz] = '\0';
                 xstrlcat(dst, path, MAXPATHLEN);                  xstrlcat(dst, path, MAXPATHLEN);
   
                 if (-1 == mkpath(dst, 0755, 0755)) {                  if (-1 == mkpath(dst, 0755, 0755)) {
                         perror(dst);                          perror(dst);
                         break;                          break;
                 }                  }
   
                 xstrlcpy(src, path, MAXPATHLEN);                  xstrlcpy(src, path, MAXPATHLEN);
   
                 if (-1 == (c = treecpy(dst, src)))                  if (-1 == (c = treecpy(dst, src)))
                         break;                          break;
                 else if (0 == c)                  else if (0 == c)

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.8

CVSweb