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

Diff for /mandoc/mdoc.c between version 1.37 and 1.42

version 1.37, 2009/01/19 17:51:33 version 1.42, 2009/01/20 13:49:36
Line 26 
Line 26 
   
 #include "private.h"  #include "private.h"
   
   /*
    * Main caller in the libmdoc library.  This begins the parsing routine,
    * handles allocation of data, and so forth.  Most of the "work" is done
    * in macro.c, but this orchestrates who does what, when.
    */
   
 const   char *const __mdoc_macronames[MDOC_MAX] = {  const   char *const __mdoc_macronames[MDOC_MAX] = {
         "\\\"",         "Dd",           "Dt",           "Os",          "\\\"",         "Dd",           "Dt",           "Os",
         "Sh",           "Ss",           "Pp",           "D1",          "Sh",           "Ss",           "Pp",           "D1",
Line 83  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
Line 89  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
         "emphasis",             "symbolic",          "emphasis",             "symbolic",
         };          };
   
   /* Central table of library: who gets parsed how. */
   
 const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {  const   struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* \" */          { NULL, 0 }, /* \" */
         { macro_constant, MDOC_PROLOGUE | MDOC_NOKEEP }, /* Dd */          { macro_constant, MDOC_PROLOGUE }, /* Dd */
         { macro_constant, MDOC_PROLOGUE | MDOC_NOKEEP }, /* Dt */          { macro_constant, MDOC_PROLOGUE }, /* Dt */
         { macro_constant, MDOC_PROLOGUE | MDOC_NOKEEP }, /* Os */          { macro_constant, MDOC_PROLOGUE }, /* Os */
         { macro_scoped, 0 }, /* Sh */          { macro_scoped, 0 }, /* Sh */
         { macro_scoped, 0 }, /* Ss */          { macro_scoped, 0 }, /* Ss */
         { macro_text, 0 }, /* Pp */          { macro_text, 0 }, /* Pp */
Line 199  const char * const *mdoc_macronames = __mdoc_macroname
Line 207  const char * const *mdoc_macronames = __mdoc_macroname
 const   char * const *mdoc_argnames = __mdoc_argnames;  const   char * const *mdoc_argnames = __mdoc_argnames;
 const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;  const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;
   
   
 static  struct mdoc_arg  *argdup(size_t, const struct mdoc_arg *);  static  struct mdoc_arg  *argdup(size_t, const struct mdoc_arg *);
 static  void              argfree(size_t, struct mdoc_arg *);  static  void              argfree(size_t, struct mdoc_arg *);
 static  void              argcpy(struct mdoc_arg *,  static  void              argcpy(struct mdoc_arg *,
Line 228  mdoc_meta(struct mdoc *mdoc)
Line 235  mdoc_meta(struct mdoc *mdoc)
   
   
 void  void
 mdoc_meta_free(struct mdoc *mdoc)  mdoc_free(struct mdoc *mdoc)
 {  {
   
           if (mdoc->first)
                   mdoc_node_freelist(mdoc->first);
           if (mdoc->htab)
                   mdoc_tokhash_free(mdoc->htab);
         if (mdoc->meta.title)          if (mdoc->meta.title)
                 free(mdoc->meta.title);                  free(mdoc->meta.title);
         if (mdoc->meta.os)          if (mdoc->meta.os)
                 free(mdoc->meta.os);                  free(mdoc->meta.os);
         if (mdoc->meta.name)          if (mdoc->meta.name)
                 free(mdoc->meta.name);                  free(mdoc->meta.name);
 }  
   
   
 void  
 mdoc_free(struct mdoc *mdoc)  
 {  
   
         if (mdoc->first)  
                 mdoc_node_freelist(mdoc->first);  
         if (mdoc->htab)  
                 mdoc_tokhash_free(mdoc->htab);  
   
         free(mdoc);          free(mdoc);
 }  }
   
Line 302  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 302  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
         if (MDOC_HALT & mdoc->flags)          if (MDOC_HALT & mdoc->flags)
                 return(0);                  return(0);
   
           mdoc->linetok = 0;
   
         if ('.' != *buf) {          if ('.' != *buf) {
                 if (SEC_PROLOGUE != mdoc->sec_lastn) {                  if ( ! (MDOC_BODYPARSE & mdoc->flags))
                         if ( ! mdoc_word_alloc(mdoc, line, 0, buf))                          return(mdoc_perr(mdoc, line, 0, "text disallowed"));
                                 return(0);                  if ( ! mdoc_word_alloc(mdoc, line, 0, buf))
                         mdoc->next = MDOC_NEXT_SIBLING;                          return(0);
                         return(1);                  mdoc->next = MDOC_NEXT_SIBLING;
                 }                  return(1);
                 return(mdoc_perr(mdoc, line, 0, "text disallowed"));  
         }          }
   
         if (buf[1] && '\\' == buf[1])          if (buf[1] && '\\' == buf[1])
Line 317  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 318  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
                         return(1);                          return(1);
   
         i = 1;          i = 1;
         while (buf[i] && ! isspace(buf[i]) && i < (int)sizeof(tmp))          while (buf[i] && ! isspace((int)buf[i]) && i < (int)sizeof(tmp))
                 i++;                  i++;
   
         if (i == (int)sizeof(tmp)) {          if (i == (int)sizeof(tmp)) {
Line 338  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 339  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
                 return(mdoc_perr(mdoc, line, 1, "unknown macro"));                  return(mdoc_perr(mdoc, line, 1, "unknown macro"));
         }          }
   
         while (buf[i] && isspace(buf[i]))          while (buf[i] && isspace((int)buf[i]))
                 i++;                  i++;
   
         if ( ! mdoc_macro(mdoc, c, line, 1, &i, buf)) {          if ( ! mdoc_macro(mdoc, c, line, 1, &i, buf)) {
Line 407  mdoc_macro(struct mdoc *mdoc, int tok, 
Line 408  mdoc_macro(struct mdoc *mdoc, int tok, 
         assert(mdoc_macros[tok].fp);          assert(mdoc_macros[tok].fp);
   
         if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&          if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&
                         SEC_PROLOGUE == mdoc->sec_lastn)                          ! (MDOC_BODYPARSE & mdoc->flags))
                 return(mdoc_perr(mdoc, ln, ppos, "macro disallowed in document prologue"));                  return(mdoc_perr(mdoc, ln, ppos, "macro disallowed: not in document body"));
         if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))          if (1 != ppos && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))
                 return(mdoc_perr(mdoc, ln, ppos, "macro not callable"));                  return(mdoc_perr(mdoc, ln, ppos, "macro not callable"));
         return((*mdoc_macros[tok].fp)(mdoc, tok, ln, ppos, pos, buf));          return((*mdoc_macros[tok].fp)(mdoc, tok, ln, ppos, pos, buf));
Line 423  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *
Line 424  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *
         assert(mdoc->last);          assert(mdoc->last);
         assert(mdoc->first);          assert(mdoc->first);
         assert(MDOC_ROOT != p->type);          assert(MDOC_ROOT != p->type);
   
           /* See if we exceed the suggest line-max. */
   
           switch (p->type) {
           case (MDOC_TEXT):
                   /* FALLTHROUGH */
           case (MDOC_ELEM):
                   /* FALLTHROUGH */
           case (MDOC_BLOCK):
                   mdoc->linetok++;
                   break;
           default:
                   break;
           }
   
           /* This sort-of works (re-opening of text macros...). */
           if (mdoc->linetok > MDOC_LINEARG_SOFTMAX)
                   if ( ! mdoc_nwarn(mdoc, p, WARN_COMPAT,
                                           "suggested %d tokens per line exceeded (has %d)",
                                           MDOC_LINEARG_SOFTMAX, mdoc->linetok))
                           return(0);
   
         if (MDOC_TEXT == mdoc->last->type)          if (MDOC_TEXT == mdoc->last->type)
                 on = "<text>";                  on = "<text>";

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.42

CVSweb