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

Diff for /mandoc/Attic/mdoc_strings.c between version 1.12 and 1.24

version 1.12, 2009/10/27 08:26:12 version 1.24, 2010/07/31 23:52:58
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 14 
Line 14 
  * 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"
   #endif
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
Line 22 
Line 26 
 #include <string.h>  #include <string.h>
 #include <time.h>  #include <time.h>
   
   #include "mandoc.h"
 #include "libmdoc.h"  #include "libmdoc.h"
   
 /* FIXME: this file is poorly named. */  static  const char * const secnames[SEC__MAX] = {
           NULL,
 struct mdoc_secname {          "NAME",
         const char      *name;  /* Name of section. */          "LIBRARY",
         enum mdoc_sec    sec;   /* Corresponding section. */          "SYNOPSIS",
           "DESCRIPTION",
           "IMPLEMENTATION NOTES",
           "RETURN VALUES",
           "ENVIRONMENT",
           "FILES",
           "EXIT STATUS",
           "EXAMPLES",
           "DIAGNOSTICS",
           "COMPATIBILITY",
           "ERRORS",
           "SEE ALSO",
           "STANDARDS",
           "HISTORY",
           "AUTHORS",
           "CAVEATS",
           "BUGS",
           "SECURITY CONSIDERATIONS",
           NULL
 };  };
   
 #define SECNAME_MAX     (20)  /*
    * FIXME: this is repeated in print_text() (html.c) and term_word()
 static  const struct mdoc_secname secnames[SECNAME_MAX] = {   * (term.c).
         { "NAME", SEC_NAME },   */
         { "LIBRARY", SEC_LIBRARY },  enum mdelim
         { "SYNOPSIS", SEC_SYNOPSIS },  
         { "DESCRIPTION", SEC_DESCRIPTION },  
         { "IMPLEMENTATION NOTES", SEC_IMPLEMENTATION },  
         { "EXIT STATUS", SEC_EXIT_STATUS },  
         { "RETURN VALUES", SEC_RETURN_VALUES },  
         { "ENVIRONMENT", SEC_ENVIRONMENT },  
         { "FILES", SEC_FILES },  
         { "EXAMPLES", SEC_EXAMPLES },  
         { "DIAGNOSTICS", SEC_DIAGNOSTICS },  
         { "COMPATIBILITY", SEC_COMPATIBILITY },  
         { "ERRORS", SEC_ERRORS },  
         { "SEE ALSO", SEC_SEE_ALSO },  
         { "STANDARDS", SEC_STANDARDS },  
         { "HISTORY", SEC_HISTORY },  
         { "AUTHORS", SEC_AUTHORS },  
         { "CAVEATS", SEC_CAVEATS },  
         { "BUGS", SEC_BUGS },  
         { "SECURITY CONSIDERATIONS", SEC_SECURITY }  
 };  
   
 #ifdef __linux__  
 extern  char            *strptime(const char *, const char *, struct tm *);  
 #endif  
   
   
 int  
 mdoc_iscdelim(char p)  mdoc_iscdelim(char p)
 {  {
   
         switch (p) {          switch (p) {
         case('|'):          case('('):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
           case('['):
                   return(DELIM_OPEN);
           case('|'):
                   return(DELIM_MIDDLE);
         case('.'):          case('.'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case(','):          case(','):
Line 80  mdoc_iscdelim(char p)
Line 81  mdoc_iscdelim(char p)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('!'):          case('!'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('('):  
                 /* FALLTHROUGH */  
         case(')'):          case(')'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case('['):  
                 /* FALLTHROUGH */  
         case(']'):          case(']'):
                 /* FALLTHROUGH */                  return(DELIM_CLOSE);
         case('{'):  
                 /* FALLTHROUGH */  
         case('}'):  
                 return(1);  
         default:          default:
                 break;                  break;
         }          }
   
         return(0);          return(DELIM_NONE);
 }  }
   
   
 int  enum mdelim
 mdoc_isdelim(const char *p)  mdoc_isdelim(const char *p)
 {  {
   
         if (0 == *p)          if ('\0' == p[0])
                 return(0);                  return(DELIM_NONE);
         if (0 != *(p + 1))          if ('\0' == p[1])
                 return(0);                  return(mdoc_iscdelim(p[0]));
         return(mdoc_iscdelim(*p));  
           /*
            * XXX; account for groff bubu where the \*(Ba reserved string
            * is treated in exactly the same way as the vertical bar.  This
            * is the only function that checks for this.
            */
           return(strcmp(p, "\\*(Ba") ? DELIM_NONE : DELIM_MIDDLE);
 }  }
   
   
 enum mdoc_sec  enum mdoc_sec
 mdoc_atosec(const char *p)  mdoc_str2sec(const char *p)
 {  {
         int              i;          int              i;
   
         for (i = 0; i < SECNAME_MAX; i++)          for (i = 0; i < (int)SEC__MAX; i++)
                 if (0 == strcmp(p, secnames[i].name))                  if (secnames[i] && 0 == strcmp(p, secnames[i]))
                         return(secnames[i].sec);                          return((enum mdoc_sec)i);
   
         return(SEC_CUSTOM);          return(SEC_CUSTOM);
 }  }
   
   
 time_t  
 mdoc_atotime(const char *p)  
 {  
         struct tm        tm;  
         char            *pp;  
   
         memset(&tm, 0, sizeof(struct tm));  
   
         if (0 == strcmp(p, "$" "Mdocdate$"))  
                 return(time(NULL));  
         if ((pp = strptime(p, "$" "Mdocdate: %b %d %Y $", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
         /* XXX - this matches "June 1999", which is wrong. */  
         if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
         if ((pp = strptime(p, "%b %d, %Y", &tm)) && 0 == *pp)  
                 return(mktime(&tm));  
   
         return(0);  
 }  
   
   
 /* FIXME: move this into an editable .in file. */  /* FIXME: move this into an editable .in file. */
 size_t  size_t
 mdoc_macro2len(int macro)  mdoc_macro2len(enum mdoct macro)
 {  {
   
         switch (macro) {          switch (macro) {

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.24

CVSweb