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

Diff for /mandoc/mandoc.c between version 1.18 and 1.24

version 1.18, 2010/06/09 19:22:56 version 1.24, 2010/07/18 22:55:06
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 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 31 
Line 31 
 #include "libmandoc.h"  #include "libmandoc.h"
   
 static  int      a2time(time_t *, const char *, const char *);  static  int      a2time(time_t *, const char *, const char *);
 static  int      spec_norm(char *, int);  
   
   
 /*  
  * "Normalise" a special string by converting its ASCII_HYPH entries  
  * into actual hyphens.  
  */  
 static int  
 spec_norm(char *p, int sz)  
 {  
         int              i;  
   
         for (i = 0; i < sz; i++)  
                 if (ASCII_HYPH == p[i])  
                         p[i] = '-';  
   
         return(sz);  
 }  
   
   
 int  int
 mandoc_special(char *p)  mandoc_special(char *p)
 {  {
         int              terminator;    /* Terminator for \s. */          int              len, i;
         int              lim;           /* Limit for N in \s. */          char             term;
         int              c, i;  
         char            *sv;          char            *sv;
   
           len = 0;
           term = '\0';
         sv = p;          sv = p;
   
         if ('\\' != *p++)          assert('\\' == *p);
                 return(spec_norm(sv, 0));          p++;
   
         switch (*p) {          switch (*p++) {
         case ('\''):  #if 0
           case ('Z'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('`'):          case ('X'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('q'):          case ('x'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (ASCII_HYPH):          case ('w'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('-'):          case ('v'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('~'):          case ('S'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('^'):          case ('R'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('%'):          case ('o'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('0'):          case ('N'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (' '):          case ('l'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('}'):          case ('L'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('|'):          case ('H'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('&'):          case ('h'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('.'):          case ('D'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (':'):          case ('C'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('c'):          case ('b'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('e'):          case ('B'):
                 return(spec_norm(sv, 2));                  /* FALLTHROUGH */
           case ('a'):
                   /* FALLTHROUGH */
           case ('A'):
                   if (*p++ != '\'')
                           return(0);
                   term = '\'';
                   break;
   #endif
         case ('s'):          case ('s'):
                 if ('\0' == *++p)                  if (ASCII_HYPH == *p)
                         return(spec_norm(sv, 2));                          *p = '-';
                   if ('+' == *p || '-' == *p)
                           p++;
   
                 c = 2;                  i = ('s' != *(p - 1));
                 terminator = 0;  
                 lim = 1;  
   
                 if (*p == '\'') {                  switch (*p++) {
                         lim = 0;                  case ('('):
                         terminator = 1;                          len = 2;
                         ++p;                          break;
                         ++c;                  case ('['):
                 } else if (*p == '[') {                          term = ']';
                         lim = 0;                          break;
                         terminator = 2;                  case ('\''):
                         ++p;                          term = '\'';
                         ++c;                          break;
                 } else if (*p == '(') {                  default:
                         lim = 2;                          len = 1;
                         terminator = 3;                          p--;
                         ++p;                          break;
                         ++c;  
                 }                  }
   
                 if (*p == '+' || *p == '-') {                  if (ASCII_HYPH == *p)
                         ++p;                          *p = '-';
                         ++c;                  if ('+' == *p || '-' == *p) {
                 }                          if (i++)
                                   return(0);
                 if (*p == '\'') {                          p++;
                         if (terminator)                  }
                                 return(spec_norm(sv, 0));  
                         lim = 0;                  if (0 == i)
                         terminator = 1;                          return(0);
                         ++p;                  break;
                         ++c;  #if 0
                 } else if (*p == '[') {          case ('Y'):
                         if (terminator)                  /* FALLTHROUGH */
                                 return(spec_norm(sv, 0));          case ('V'):
                         lim = 0;                  /* FALLTHROUGH */
                         terminator = 2;          case ('$'):
                         ++p;                  /* FALLTHROUGH */
                         ++c;          case ('n'):
                 } else if (*p == '(') {                  /* FALLTHROUGH */
                         if (terminator)          case ('k'):
                                 return(spec_norm(sv, 0));                  /* FALLTHROUGH */
                         lim = 2;  #endif
                         terminator = 3;          case ('M'):
                         ++p;                  /* FALLTHROUGH */
                         ++c;          case ('m'):
                 }                  /* FALLTHROUGH */
   
                 /* TODO: needs to handle floating point. */  
   
                 if ( ! isdigit((u_char)*p))  
                         return(spec_norm(sv, 0));  
   
                 for (i = 0; isdigit((u_char)*p); i++) {  
                         if (lim && i >= lim)  
                                 break;  
                         ++p;  
                         ++c;  
                 }  
   
                 if (terminator && terminator < 3) {  
                         if (1 == terminator && *p != '\'')  
                                 return(spec_norm(sv, 0));  
                         if (2 == terminator && *p != ']')  
                                 return(spec_norm(sv, 0));  
                         ++p;  
                         ++c;  
                 }  
   
                 return(spec_norm(sv, c));  
         case ('f'):          case ('f'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('F'):          case ('F'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('*'):          case ('*'):
                 if ('\0' == *++p || isspace((u_char)*p))                  switch (*p++) {
                         return(spec_norm(sv, 0));  
                 switch (*p) {  
                 case ('('):                  case ('('):
                         if ('\0' == *++p || isspace((u_char)*p))                          len = 2;
                                 return(spec_norm(sv, 0));                          break;
                         return(spec_norm(sv, 4));  
                 case ('['):                  case ('['):
                         for (c = 3, p++; *p && ']' != *p; p++, c++)                          term = ']';
                                 if (isspace((u_char)*p))                          break;
                                         break;  
                         return(spec_norm(sv, *p == ']' ? c : 0));  
                 default:                  default:
                           len = 1;
                           p--;
                         break;                          break;
                 }                  }
                 return(spec_norm(sv, 3));                  break;
         case ('('):          case ('('):
                 if ('\0' == *++p || isspace((u_char)*p))                  len = 2;
                         return(spec_norm(sv, 0));                  break;
                 if ('\0' == *++p || isspace((u_char)*p))  
                         return(spec_norm(sv, 0));  
                 return(spec_norm(sv, 4));  
         case ('['):          case ('['):
                   term = ']';
                 break;                  break;
         default:          default:
                 return(spec_norm(sv, 0));                  len = 1;
                   p--;
                   break;
         }          }
   
         for (c = 3, p++; *p && ']' != *p; p++, c++)          if (term) {
                 if (isspace((u_char)*p))                  for ( ; *p && term != *p; p++)
                         break;                          if (ASCII_HYPH == *p)
                                   *p = '-';
                   return(*p ? (int)(p - sv) : 0);
           }
   
         return(spec_norm(sv, *p == ']' ? c : 0));          for (i = 0; *p && i < len; i++, p++)
                   if (ASCII_HYPH == *p)
                           *p = '-';
           return(i == len ? (int)(p - sv) : 0);
 }  }
   
   
Line 328  mandoc_a2time(int flags, const char *p)
Line 299  mandoc_a2time(int flags, const char *p)
   
   
 int  int
 mandoc_eos(const char *p, size_t sz)  mandoc_eos(const char *p, size_t sz, int enclosed)
 {  {
           const char *q;
           int found;
   
         if (0 == sz)          if (0 == sz)
                 return(0);                  return(0);
Line 340  mandoc_eos(const char *p, size_t sz)
Line 313  mandoc_eos(const char *p, size_t sz)
          * propogate outward.           * propogate outward.
          */           */
   
         for ( ; sz; sz--) {          found = 0;
                 switch (p[(int)sz - 1]) {          for (q = p + sz - 1; q >= p; q--) {
                   switch (*q) {
                 case ('\"'):                  case ('\"'):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case ('\''):                  case ('\''):
Line 349  mandoc_eos(const char *p, size_t sz)
Line 323  mandoc_eos(const char *p, size_t sz)
                 case (']'):                  case (']'):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (')'):                  case (')'):
                           if (0 == found)
                                   enclosed = 1;
                         break;                          break;
                 case ('.'):                  case ('.'):
                         /* Escaped periods. */  
                         if (sz > 1 && '\\' == p[(int)sz - 2])  
                                 return(0);  
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case ('!'):                  case ('!'):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case ('?'):                  case ('?'):
                         return(1);                          found = 1;
                           break;
                 default:                  default:
                         return(0);                          return(found && (!enclosed || isalnum(*q)));
                 }                  }
         }          }
   
         return(0);          return(found && !enclosed);
 }  }
   
   

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

CVSweb