[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.2 and 1.9

version 1.2, 2009/04/12 19:24:10 version 1.9, 2009/07/04 09:01:55
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *   *
  * 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   * purpose with or without fee is hereby granted, provided that the above
  * above copyright notice and this permission notice appear in all   * copyright notice and this permission notice appear in all copies.
  * copies.  
  *   *
  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  * PERFORMANCE OF THIS SOFTWARE.  
  */   */
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
   
 #include "libmdoc.h"  #include "libmdoc.h"
   
 /*  /* FIXME: this file is poorly named. */
  * Various string-literal operations:  converting scalars to and from  
  * strings, etc.  
  */  
   
 struct mdoc_secname {  struct mdoc_secname {
         const char      *name;          const char      *name;  /* Name of section. */
         int              flag;          enum mdoc_sec    sec;   /* Corresponding section. */
 #define MSECNAME_META   (1 << 0)  
 };  };
   
 /* Section names corresponding to mdoc_sec. */  #define SECNAME_MAX     (18)
   
 static  const struct mdoc_secname secnames[] = {  static  const struct mdoc_secname secnames[SECNAME_MAX] = {
         { "PROLOGUE", MSECNAME_META },          { "NAME", SEC_NAME },
         { "BODY", MSECNAME_META },          { "LIBRARY", SEC_LIBRARY },
         { "NAME", 0 },          { "SYNOPSIS", SEC_SYNOPSIS },
         { "LIBRARY", 0 },          { "DESCRIPTION", SEC_DESCRIPTION },
         { "SYNOPSIS", 0 },          { "IMPLEMENTATION NOTES", SEC_IMPLEMENTATION },
         { "DESCRIPTION", 0 },          { "RETURN VALUES", SEC_RETURN_VALUES },
         { "IMPLEMENTATION NOTES", 0 },          { "ENVIRONMENT", SEC_ENVIRONMENT },
         { "RETURN VALUES", 0 },          { "FILES", SEC_FILES },
         { "ENVIRONMENT", 0 },          { "EXAMPLES", SEC_EXAMPLES },
         { "FILES", 0 },          { "DIAGNOSTICS", SEC_DIAGNOSTICS },
         { "EXAMPLES", 0 },          { "COMPATIBILITY", SEC_COMPATIBILITY },
         { "DIAGNOSTICS", 0 },          { "ERRORS", SEC_ERRORS },
         { "COMPATIBILITY", 0 },          { "SEE ALSO", SEC_SEE_ALSO },
         { "ERRORS", 0 },          { "STANDARDS", SEC_STANDARDS },
         { "SEE ALSO", 0 },          { "HISTORY", SEC_HISTORY },
         { "STANDARDS", 0 },          { "AUTHORS", SEC_AUTHORS },
         { "HISTORY", 0 },          { "CAVEATS", SEC_CAVEATS },
         { "AUTHORS", 0 },          { "BUGS", SEC_BUGS },
         { "CAVEATS", 0 },  
         { "BUGS", 0 },  
         { NULL, 0 }  
 };  };
   
 #ifdef __linux__  #ifdef __linux__
Line 68  extern char  *strptime(const char *, const char *, str
Line 58  extern char  *strptime(const char *, const char *, str
 #endif  #endif
   
   
 size_t  
 mdoc_isescape(const char *p)  
 {  
         size_t           c;  
   
         if ('\\' != *p++)  
                 return(0);  
   
         switch (*p) {  
         case ('\\'):  
                 /* FALLTHROUGH */  
         case ('\''):  
                 /* FALLTHROUGH */  
         case ('`'):  
                 /* FALLTHROUGH */  
         case ('q'):  
                 /* FALLTHROUGH */  
         case ('-'):  
                 /* FALLTHROUGH */  
         case ('~'):  
                 /* FALLTHROUGH */  
         case ('^'):  
                 /* FALLTHROUGH */  
         case ('%'):  
                 /* FALLTHROUGH */  
         case ('0'):  
                 /* FALLTHROUGH */  
         case (' '):  
                 /* FALLTHROUGH */  
         case ('|'):  
                 /* FALLTHROUGH */  
         case ('&'):  
                 /* FALLTHROUGH */  
         case ('.'):  
                 /* FALLTHROUGH */  
         case (':'):  
                 /* FALLTHROUGH */  
         case ('e'):  
                 return(2);  
         case ('*'):  
                 if (0 == *++p || ! isgraph((u_char)*p))  
                         return(0);  
                 switch (*p) {  
                 case ('('):  
                         if (0 == *++p || ! isgraph((u_char)*p))  
                                 return(0);  
                         return(4);  
                 case ('['):  
                         for (c = 3, p++; *p && ']' != *p; p++, c++)  
                                 if ( ! isgraph((u_char)*p))  
                                         break;  
                         return(*p == ']' ? c : 0);  
                 default:  
                         break;  
                 }  
                 return(3);  
         case ('('):  
                 if (0 == *++p || ! isgraph((u_char)*p))  
                         return(0);  
                 if (0 == *++p || ! isgraph((u_char)*p))  
                         return(0);  
                 return(4);  
         case ('['):  
                 break;  
         default:  
                 return(0);  
         }  
   
         for (c = 3, p++; *p && ']' != *p; p++, c++)  
                 if ( ! isgraph((u_char)*p))  
                         break;  
   
         return(*p == ']' ? c : 0);  
 }  
   
   
 int  int
 mdoc_iscdelim(char p)  mdoc_iscdelim(char p)
 {  {
   
         switch (p) {          switch (p) {
           case('|'):
                   /* FALLTHROUGH */
         case('.'):          case('.'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case(','):          case(','):
Line 196  mdoc_isdelim(const char *p)
Line 112  mdoc_isdelim(const char *p)
 enum mdoc_sec  enum mdoc_sec
 mdoc_atosec(const char *p)  mdoc_atosec(const char *p)
 {  {
         const struct mdoc_secname *n;          int              i;
         int                        i;  
   
         for (i = 0, n = secnames; n->name; n++, i++)          for (i = 0; i < SECNAME_MAX; i++)
                 if ( ! (n->flag & MSECNAME_META))                  if (0 == strcmp(p, secnames[i].name))
                         if (0 == strcmp(p, n->name))                          return(secnames[i].sec);
                                 return((enum mdoc_sec)i);  
   
         return(SEC_CUSTOM);          return(SEC_CUSTOM);
 }  }
Line 214  mdoc_atotime(const char *p)
Line 128  mdoc_atotime(const char *p)
         struct tm        tm;          struct tm        tm;
         char            *pp;          char            *pp;
   
         (void)memset(&tm, 0, sizeof(struct tm));          bzero(&tm, sizeof(struct tm));
   
         if (0 == strcmp(p, "$Mdocdate$"))          if (0 == strcmp(p, "$" "Mdocdate$"))
                 return(time(NULL));                  return(time(NULL));
         if ((pp = strptime(p, "$Mdocdate$", &tm)) && 0 == *pp)          if ((pp = strptime(p, "$" "Mdocdate: %b %d %Y $", &tm)) && 0 == *pp)
                 return(mktime(&tm));                  return(mktime(&tm));
         /* XXX - this matches "June 1999", which is wrong. */          /* XXX - this matches "June 1999", which is wrong. */
         if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp)          if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp)
Line 230  mdoc_atotime(const char *p)
Line 144  mdoc_atotime(const char *p)
 }  }
   
   
   /* FIXME: move this into an editable .in file. */
 size_t  size_t
 mdoc_macro2len(int macro)  mdoc_macro2len(int macro)
 {  {
Line 264  mdoc_macro2len(int macro)
Line 179  mdoc_macro2len(int macro)
         case(MDOC_Em):          case(MDOC_Em):
                 return(10);                  return(10);
         case(MDOC_Er):          case(MDOC_Er):
                 return(12);                  return(17);
         case(MDOC_Ev):          case(MDOC_Ev):
                 return(15);                  return(15);
         case(MDOC_Fa):          case(MDOC_Fa):

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.9

CVSweb