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

Diff for /mandoc/mdoc.c between version 1.62 and 1.72

version 1.62, 2009/03/12 02:57:36 version 1.72, 2009/03/23 15:41:09
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
  *   *
  * 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
Line 24 
Line 24 
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
   
 #include "private.h"  #include "libmdoc.h"
   
 /*  /*
  * Main caller in the libmdoc library.  This begins the parsing routine,   * Main caller in the libmdoc library.  This begins the parsing routine,
  * handles allocation of data, and so forth.  Most of the "work" is done   * handles allocation of data, and so forth.  Most of the "work" is done
  * in macro.c and validate.c.   * in macro.c, validate.c and action.c.
  */   */
   
 static  struct mdoc_node *mdoc_node_alloc(const struct mdoc *);  
 static  int               mdoc_node_append(struct mdoc *,  
                                 struct mdoc_node *);  
   
 static  int               parsetext(struct mdoc *, int, char *);  
 static  int               parsemacro(struct mdoc *, int, char *);  
 static  int               macrowarn(struct mdoc *, int, const char *);  
   
   
 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 73  const char *const __mdoc_macronames[MDOC_MAX] = {   
Line 64  const char *const __mdoc_macronames[MDOC_MAX] = {   
         "Bk",           "Ek",           "Bt",           "Hf",          "Bk",           "Ek",           "Bt",           "Hf",
         "Fr",           "Ud",           "Lb",           "Ap",          "Fr",           "Ud",           "Lb",           "Ap",
         "Lp",           "Lk",           "Mt",           "Brq",          "Lp",           "Lk",           "Mt",           "Brq",
         "Bro",          "Brc"          /* LINTED */
           "Bro",          "Brc",          "\%C",          "Es",
           /* LINTED */
           "En",           "Dx",           "\%Q"
         };          };
   
 const   char *const __mdoc_argnames[MDOC_ARG_MAX] = {  const   char *const __mdoc_argnames[MDOC_ARG_MAX] = {
Line 85  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
Line 79  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {   
         "ohang",                "inset",                "column",          "ohang",                "inset",                "column",
         "width",                "compact",              "std",          "width",                "compact",              "std",
         "filled",               "words",                "emphasis",          "filled",               "words",                "emphasis",
         "symbolic"          "symbolic",             "nested"
         };          };
   
 const   char * const *mdoc_macronames = __mdoc_macronames;  const   char * const *mdoc_macronames = __mdoc_macronames;
 const   char * const *mdoc_argnames = __mdoc_argnames;  const   char * const *mdoc_argnames = __mdoc_argnames;
   
   /* FIXME: have this accept line/pos/tok. */
   /* FIXME: mdoc_alloc1 and mdoc_free1 like in man.c. */
   static  struct mdoc_node *mdoc_node_alloc(const struct mdoc *);
   static  int               mdoc_node_append(struct mdoc *,
                                   struct mdoc_node *);
   
   static  int               parsetext(struct mdoc *, int, char *);
   static  int               parsemacro(struct mdoc *, int, char *);
   static  int               macrowarn(struct mdoc *, int, const char *);
   
   
   /*
    * Get the first (root) node of the parse tree.
    */
 const struct mdoc_node *  const struct mdoc_node *
 mdoc_node(const struct mdoc *mdoc)  mdoc_node(const struct mdoc *m)
 {  {
   
         return(mdoc->first);          return(MDOC_HALT & m->flags ? NULL : m->first);
 }  }
   
   
 const struct mdoc_meta *  const struct mdoc_meta *
 mdoc_meta(const struct mdoc *mdoc)  mdoc_meta(const struct mdoc *m)
 {  {
   
         return(&mdoc->meta);          return(MDOC_HALT & m->flags ? NULL : &m->meta);
 }  }
   
   
   /*
    * Free up all resources contributed by a parse:  the node tree,
    * meta-data and so on.  Then reallocate the root node for another
    * parse.
    */
 void  void
   mdoc_reset(struct mdoc *mdoc)
   {
   
           if (mdoc->first)
                   mdoc_node_freelist(mdoc->first);
           if (mdoc->meta.title)
                   free(mdoc->meta.title);
           if (mdoc->meta.os)
                   free(mdoc->meta.os);
           if (mdoc->meta.name)
                   free(mdoc->meta.name);
           if (mdoc->meta.arch)
                   free(mdoc->meta.arch);
           if (mdoc->meta.vol)
                   free(mdoc->meta.vol);
   
           bzero(&mdoc->meta, sizeof(struct mdoc_meta));
           mdoc->flags = 0;
           mdoc->lastnamed = mdoc->lastsec = 0;
           mdoc->last = calloc(1, sizeof(struct mdoc_node));
           if (NULL == mdoc->last)
                   err(1, "calloc");
           mdoc->first = mdoc->last;
           mdoc->last->type = MDOC_ROOT;
           mdoc->next = MDOC_NEXT_CHILD;
   }
   
   
   /*
    * Completely free up all resources.
    */
   void
 mdoc_free(struct mdoc *mdoc)  mdoc_free(struct mdoc *mdoc)
 {  {
   
         if (mdoc->first)          if (mdoc->first)
                 mdoc_node_freelist(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)
Line 127  mdoc_free(struct mdoc *mdoc)
Line 169  mdoc_free(struct mdoc *mdoc)
         if (mdoc->meta.vol)          if (mdoc->meta.vol)
                 free(mdoc->meta.vol);                  free(mdoc->meta.vol);
   
           if (mdoc->htab)
                   mdoc_tokhash_free(mdoc->htab);
   
         free(mdoc);          free(mdoc);
 }  }
   
Line 136  mdoc_alloc(void *data, int pflags, const struct mdoc_c
Line 181  mdoc_alloc(void *data, int pflags, const struct mdoc_c
 {  {
         struct mdoc     *p;          struct mdoc     *p;
   
         p = xcalloc(1, sizeof(struct mdoc));          if (NULL == (p = calloc(1, sizeof(struct mdoc))))
                   err(1, "calloc");
   
         p->data = data;          p->data = data;
         if (cb)          if (cb)
                 (void)memcpy(&p->cb, cb, sizeof(struct mdoc_cb));                  (void)memcpy(&p->cb, cb, sizeof(struct mdoc_cb));
   
         p->last = xcalloc(1, sizeof(struct mdoc_node));          if (NULL == (p->first = calloc(1, sizeof(struct mdoc_node))))
                   err(1, "calloc");
           p->last = p->first;
         p->last->type = MDOC_ROOT;          p->last->type = MDOC_ROOT;
         p->first = p->last;  
         p->pflags = pflags;          p->pflags = pflags;
         p->next = MDOC_NEXT_CHILD;          p->next = MDOC_NEXT_CHILD;
         p->htab = mdoc_tokhash_alloc();          p->htab = mdoc_tokhash_alloc();
   
         return(p);          return(p);
 }  }
   
   
   /*
    * Climb back up the parse tree, validating open scopes.  Mostly calls
    * through to macro_end in macro.c.
    */
 int  int
 mdoc_endparse(struct mdoc *mdoc)  mdoc_endparse(struct mdoc *m)
 {  {
   
         if (MDOC_HALT & mdoc->flags)          if (MDOC_HALT & m->flags)
                 return(0);                  return(0);
         if (NULL == mdoc->first)          else if (mdoc_macroend(m))
                 return(1);                  return(1);
           m->flags |= MDOC_HALT;
         assert(mdoc->last);          return(0);
         if ( ! macro_end(mdoc)) {  
                 mdoc->flags |= MDOC_HALT;  
                 return(0);  
         }  
         return(1);  
 }  }
   
   
Line 257  mdoc_macro(struct mdoc *m, int tok, 
Line 302  mdoc_macro(struct mdoc *m, int tok, 
                                 "disallowed in prologue"));                                  "disallowed in prologue"));
   
         if (1 != pp && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))          if (1 != pp && ! (MDOC_CALLABLE & mdoc_macros[tok].flags))
                 return(mdoc_perr(m, ln, pp, "not callable"));                  return(mdoc_perr(m, ln, pp, "%s not callable",
                                           mdoc_macronames[tok]));
   
         return((*mdoc_macros[tok].fp)(m, tok, ln, pp, pos, buf));          return((*mdoc_macros[tok].fp)(m, tok, ln, pp, pos, buf));
 }  }
Line 288  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *
Line 334  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *
   
         if ( ! mdoc_valid_pre(mdoc, p))          if ( ! mdoc_valid_pre(mdoc, p))
                 return(0);                  return(0);
           if ( ! mdoc_action_pre(mdoc, p))
                   return(0);
   
         switch (p->type) {          switch (p->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
Line 307  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *
Line 355  mdoc_node_append(struct mdoc *mdoc, struct mdoc_node *
         }          }
   
         mdoc->last = p;          mdoc->last = p;
   
           switch (p->type) {
           case (MDOC_TEXT):
                   if ( ! mdoc_valid_post(mdoc))
                           return(0);
                   if ( ! mdoc_action_post(mdoc))
                           return(0);
                   break;
           default:
                   break;
           }
   
         return(1);          return(1);
 }  }
   
Line 316  mdoc_node_alloc(const struct mdoc *mdoc)
Line 376  mdoc_node_alloc(const struct mdoc *mdoc)
 {  {
         struct mdoc_node *p;          struct mdoc_node *p;
   
         p = xcalloc(1, sizeof(struct mdoc_node));          if (NULL == (p = calloc(1, sizeof(struct mdoc_node))))
                   err(1, "calloc");
         p->sec = mdoc->lastsec;          p->sec = mdoc->lastsec;
   
         return(p);          return(p);
Line 381  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
Line 442  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
   
   
 int  int
 mdoc_root_alloc(struct mdoc *mdoc)  
 {  
         struct mdoc_node *p;  
   
         p = mdoc_node_alloc(mdoc);  
   
         p->type = MDOC_ROOT;  
   
         return(mdoc_node_append(mdoc, p));  
 }  
   
   
 int  
 mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
                 int tok, struct mdoc_arg *args)                  int tok, struct mdoc_arg *args)
 {  {
Line 446  mdoc_word_alloc(struct mdoc *mdoc, 
Line 494  mdoc_word_alloc(struct mdoc *mdoc, 
         p->line = line;          p->line = line;
         p->pos = pos;          p->pos = pos;
         p->type = MDOC_TEXT;          p->type = MDOC_TEXT;
         p->string = xstrdup(word);          if (NULL == (p->string = strdup(word)))
                   err(1, "strdup");
   
         return(mdoc_node_append(mdoc, p));          return(mdoc_node_append(mdoc, p));
 }  }
Line 482  mdoc_node_freelist(struct mdoc_node *p)
Line 531  mdoc_node_freelist(struct mdoc_node *p)
  * control character.   * control character.
  */   */
 static int  static int
 parsetext(struct mdoc *mdoc, int line, char *buf)  parsetext(struct mdoc *m, int line, char *buf)
 {  {
   
         if (SEC_PROLOGUE == mdoc->lastnamed)          if (SEC_PROLOGUE == m->lastnamed)
                 return(mdoc_perr(mdoc, line, 0,                  return(mdoc_perr(m, line, 0,
                         "text disallowed in prologue"));                          "text disallowed in prologue"));
   
         if ( ! mdoc_word_alloc(mdoc, line, 0, buf))          if (0 == buf[0] && ! (MDOC_LITERAL & m->flags))
                   return(mdoc_perr(m, line, 0,
                           "blank lines only in literal context"));
   
           if ( ! mdoc_word_alloc(m, line, 0, buf))
                 return(0);                  return(0);
   
         mdoc->next = MDOC_NEXT_SIBLING;          m->next = MDOC_NEXT_SIBLING;
         return(1);          return(1);
 }  }
   
Line 520  parsemacro(struct mdoc *m, int ln, char *buf)
Line 573  parsemacro(struct mdoc *m, int ln, char *buf)
         int               i, c;          int               i, c;
         char              mac[5];          char              mac[5];
   
         /* Comments are quickly ignored. */          /* Comments and empties are quickly ignored. */
   
           if (0 == buf[1])
                   return(1);
   
           if (' ' == buf[1]) {
                   i = 2;
                   while (buf[i] && ' ' == buf[i])
                           i++;
                   if (0 == buf[i])
                           return(1);
                   return(mdoc_perr(m, ln, 1, "invalid syntax"));
           }
   
         if (buf[1] && '\\' == buf[1])          if (buf[1] && '\\' == buf[1])
                 if (buf[2] && '\"' == buf[2])                  if (buf[2] && '\"' == buf[2])
                         return(1);                          return(1);
Line 531  parsemacro(struct mdoc *m, int ln, char *buf)
Line 596  parsemacro(struct mdoc *m, int ln, char *buf)
         for (i = 1; i < 5; i++) {          for (i = 1; i < 5; i++) {
                 if (0 == (mac[i - 1] = buf[i]))                  if (0 == (mac[i - 1] = buf[i]))
                         break;                          break;
                 else if (isspace((unsigned char)buf[i]))                  else if (' ' == buf[i])
                         break;                          break;
         }          }
   
Line 551  parsemacro(struct mdoc *m, int ln, char *buf)
Line 616  parsemacro(struct mdoc *m, int ln, char *buf)
   
         /* The macro is sane.  Jump to the next word. */          /* The macro is sane.  Jump to the next word. */
   
         while (buf[i] && isspace((unsigned char)buf[i]))          while (buf[i] && ' ' == buf[i])
                 i++;                  i++;
   
         /* Begin recursive parse sequence. */          /* Begin recursive parse sequence. */

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.72

CVSweb