[BACK]Return to man.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man.c between version 1.78 and 1.79

version 1.78, 2014/03/30 19:47:32 version 1.79, 2014/04/20 16:44:44
Line 31 
Line 31 
 #include "libman.h"  #include "libman.h"
 #include "libmandoc.h"  #include "libmandoc.h"
   
 const   char *const __man_macronames[MAN_MAX] = {  const   char *const __man_macronames[MAN_MAX] = {
         "br",           "TH",           "SH",           "SS",          "br",           "TH",           "SH",           "SS",
         "TP",           "LP",           "PP",           "P",          "TP",           "LP",           "PP",           "P",
         "IP",           "HP",           "SM",           "SB",          "IP",           "HP",           "SM",           "SB",
         "BI",           "IB",           "BR",           "RB",          "BI",           "IB",           "BR",           "RB",
         "R",            "B",            "I",            "IR",          "R",            "B",            "I",            "IR",
Line 46 
Line 46 
   
 const   char * const *man_macronames = __man_macronames;  const   char * const *man_macronames = __man_macronames;
   
 static  struct man_node *man_node_alloc(struct man *, int, int,  static  struct man_node *man_node_alloc(struct man *, int, int,
                                 enum man_type, enum mant);                                  enum man_type, enum mant);
 static  int              man_node_append(struct man *,  static  int              man_node_append(struct man *,
                                 struct man_node *);                                  struct man_node *);
 static  void             man_node_free(struct man_node *);  static  void             man_node_free(struct man_node *);
 static  void             man_node_unlink(struct man *,  static  void             man_node_unlink(struct man *,
                                 struct man_node *);                                  struct man_node *);
 static  int              man_ptext(struct man *, int, char *, int);  static  int              man_ptext(struct man *, int, char *, int);
 static  int              man_pmacro(struct man *, int, char *, int);  static  int              man_pmacro(struct man *, int, char *, int);
Line 68 
Line 68 
         return(man->first);          return(man->first);
 }  }
   
   
 const struct man_meta *  const struct man_meta *
 man_meta(const struct man *man)  man_meta(const struct man *man)
 {  {
Line 77 
Line 76 
         return(&man->meta);          return(&man->meta);
 }  }
   
   
 void  void
 man_reset(struct man *man)  man_reset(struct man *man)
 {  {
Line 86 
Line 84 
         man_alloc1(man);          man_alloc1(man);
 }  }
   
   
 void  void
 man_free(struct man *man)  man_free(struct man *man)
 {  {
Line 95 
Line 92 
         free(man);          free(man);
 }  }
   
   
 struct man *  struct man *
 man_alloc(struct roff *roff, struct mparse *parse, int quick)  man_alloc(struct roff *roff, struct mparse *parse, int quick)
 {  {
Line 112 
Line 108 
         return(p);          return(p);
 }  }
   
   
 int  int
 man_endparse(struct man *man)  man_endparse(struct man *man)
 {  {
Line 124 
Line 119 
         return(0);          return(0);
 }  }
   
   
 int  int
 man_parseln(struct man *man, int ln, char *buf, int offs)  man_parseln(struct man *man, int ln, char *buf, int offs)
 {  {
Line 134 
Line 128 
         assert( ! (MAN_HALT & man->flags));          assert( ! (MAN_HALT & man->flags));
   
         return (roff_getcontrol(man->roff, buf, &offs) ?          return (roff_getcontrol(man->roff, buf, &offs) ?
                         man_pmacro(man, ln, buf, offs) :              man_pmacro(man, ln, buf, offs) :
                         man_ptext(man, ln, buf, offs));              man_ptext(man, ln, buf, offs));
 }  }
   
   
 static void  static void
 man_free1(struct man *man)  man_free1(struct man *man)
 {  {
Line 157 
Line 150 
                 free(man->meta.msec);                  free(man->meta.msec);
 }  }
   
   
 static void  static void
 man_alloc1(struct man *man)  man_alloc1(struct man *man)
 {  {
Line 181 
Line 173 
         assert(MAN_ROOT != p->type);          assert(MAN_ROOT != p->type);
   
         switch (man->next) {          switch (man->next) {
         case (MAN_NEXT_SIBLING):          case MAN_NEXT_SIBLING:
                 man->last->next = p;                  man->last->next = p;
                 p->prev = man->last;                  p->prev = man->last;
                 p->parent = man->last->parent;                  p->parent = man->last->parent;
                 break;                  break;
         case (MAN_NEXT_CHILD):          case MAN_NEXT_CHILD:
                 man->last->child = p;                  man->last->child = p;
                 p->parent = man->last;                  p->parent = man->last;
                 break;                  break;
Line 194 
Line 186 
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         assert(p->parent);          assert(p->parent);
         p->parent->nchild++;          p->parent->nchild++;
   
Line 202 
Line 194 
                 return(0);                  return(0);
   
         switch (p->type) {          switch (p->type) {
         case (MAN_HEAD):          case MAN_HEAD:
                 assert(MAN_BLOCK == p->parent->type);                  assert(MAN_BLOCK == p->parent->type);
                 p->parent->head = p;                  p->parent->head = p;
                 break;                  break;
         case (MAN_TAIL):          case MAN_TAIL:
                 assert(MAN_BLOCK == p->parent->type);                  assert(MAN_BLOCK == p->parent->type);
                 p->parent->tail = p;                  p->parent->tail = p;
                 break;                  break;
         case (MAN_BODY):          case MAN_BODY:
                 assert(MAN_BLOCK == p->parent->type);                  assert(MAN_BLOCK == p->parent->type);
                 p->parent->body = p;                  p->parent->body = p;
                 break;                  break;
Line 221 
Line 213 
         man->last = p;          man->last = p;
   
         switch (p->type) {          switch (p->type) {
         case (MAN_TBL):          case MAN_TBL:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MAN_TEXT):          case MAN_TEXT:
                 if ( ! man_valid_post(man))                  if ( ! man_valid_post(man))
                         return(0);                          return(0);
                 break;                  break;
Line 234 
Line 226 
         return(1);          return(1);
 }  }
   
   
 static struct man_node *  static struct man_node *
 man_node_alloc(struct man *man, int line, int pos,  man_node_alloc(struct man *man, int line, int pos,
                 enum man_type type, enum mant tok)                  enum man_type type, enum mant tok)
 {  {
         struct man_node *p;          struct man_node *p;
Line 253 
Line 244 
         return(p);          return(p);
 }  }
   
   
 int  int
 man_elem_alloc(struct man *man, int line, int pos, enum mant tok)  man_elem_alloc(struct man *man, int line, int pos, enum mant tok)
 {  {
Line 266 
Line 256 
         return(1);          return(1);
 }  }
   
   
 int  int
 man_tail_alloc(struct man *man, int line, int pos, enum mant tok)  man_tail_alloc(struct man *man, int line, int pos, enum mant tok)
 {  {
Line 279 
Line 268 
         return(1);          return(1);
 }  }
   
   
 int  int
 man_head_alloc(struct man *man, int line, int pos, enum mant tok)  man_head_alloc(struct man *man, int line, int pos, enum mant tok)
 {  {
Line 292 
Line 280 
         return(1);          return(1);
 }  }
   
   
 int  int
 man_body_alloc(struct man *man, int line, int pos, enum mant tok)  man_body_alloc(struct man *man, int line, int pos, enum mant tok)
 {  {
Line 305 
Line 292 
         return(1);          return(1);
 }  }
   
   
 int  int
 man_block_alloc(struct man *man, int line, int pos, enum mant tok)  man_block_alloc(struct man *man, int line, int pos, enum mant tok)
 {  {
Line 333 
Line 319 
         return(1);          return(1);
 }  }
   
   
 /*  /*
  * Free all of the resources held by a node.  This does NOT unlink a   * Free all of the resources held by a node.  This does NOT unlink a
  * node from its context; for that, see man_node_unlink().   * node from its context; for that, see man_node_unlink().
Line 347 
Line 332 
         free(p);          free(p);
 }  }
   
   
 void  void
 man_node_delete(struct man *man, struct man_node *p)  man_node_delete(struct man *man, struct man_node *p)
 {  {
Line 449 
Line 433 
                 return(1);                  return(1);
         }          }
   
         /*          /*
          * Warn if the last un-escaped character is whitespace. Then           * Warn if the last un-escaped character is whitespace. Then
          * strip away the remaining spaces (tabs stay!).           * strip away the remaining spaces (tabs stay!).
          */           */
   
         i = (int)strlen(buf);          i = (int)strlen(buf);
Line 508 
Line 492 
          */           */
   
         i = 0;          i = 0;
         while (i < 4 && '\0' != buf[offs] &&          while (i < 4 && '\0' != buf[offs] && ' ' != buf[offs] &&
                         ' ' != buf[offs] && '\t' != buf[offs])              '\t' != buf[offs])
                 mac[i++] = buf[offs++];                  mac[i++] = buf[offs++];
   
         mac[i] = '\0';          mac[i] = '\0';
Line 517 
Line 501 
         tok = (i > 0 && i < 4) ? man_hash_find(mac) : MAN_MAX;          tok = (i > 0 && i < 4) ? man_hash_find(mac) : MAN_MAX;
   
         if (MAN_MAX == tok) {          if (MAN_MAX == tok) {
                 mandoc_vmsg(MANDOCERR_MACRO, man->parse, ln,                  mandoc_vmsg(MANDOCERR_MACRO, man->parse, ln, ppos,
                                 ppos, "%s", buf + ppos - 1);                      "%s", buf + ppos - 1);
                 return(1);                  return(1);
         }          }
   
Line 527 
Line 511 
         while (buf[offs] && ' ' == buf[offs])          while (buf[offs] && ' ' == buf[offs])
                 offs++;                  offs++;
   
         /*          /*
          * Trailing whitespace.  Note that tabs are allowed to be passed           * Trailing whitespace.  Note that tabs are allowed to be passed
          * into the parser as "text", so we only warn about spaces here.           * into the parser as "text", so we only warn about spaces here.
          */           */
Line 535 
Line 519 
         if ('\0' == buf[offs] && ' ' == buf[offs - 1])          if ('\0' == buf[offs] && ' ' == buf[offs - 1])
                 man_pmsg(man, ln, offs - 1, MANDOCERR_EOLNSPACE);                  man_pmsg(man, ln, offs - 1, MANDOCERR_EOLNSPACE);
   
         /*          /*
          * Remove prior ELINE macro, as it's being clobbered by a new           * Remove prior ELINE macro, as it's being clobbered by a new
          * macro.  Note that NSCOPED macros do not close out ELINE           * macro.  Note that NSCOPED macros do not close out ELINE
          * macros---they don't print text---so we let those slip by.           * macros---they don't print text---so we let those slip by.
Line 551 
Line 535 
                 if (MAN_NSCOPED & man_macros[n->tok].flags)                  if (MAN_NSCOPED & man_macros[n->tok].flags)
                         n = n->parent;                          n = n->parent;
   
                 mandoc_vmsg(MANDOCERR_LINESCOPE, man->parse, n->line,                  mandoc_vmsg(MANDOCERR_LINESCOPE, man->parse, n->line,
                     n->pos, "%s breaks %s", man_macronames[tok],                      n->pos, "%s breaks %s", man_macronames[tok],
                     man_macronames[n->tok]);                      man_macronames[n->tok]);
   
Line 582 
Line 566 
                 assert(MAN_BLOCK == n->type);                  assert(MAN_BLOCK == n->type);
                 assert(MAN_SCOPED & man_macros[n->tok].flags);                  assert(MAN_SCOPED & man_macros[n->tok].flags);
   
                 mandoc_vmsg(MANDOCERR_LINESCOPE, man->parse, n->line,                  mandoc_vmsg(MANDOCERR_LINESCOPE, man->parse, n->line,
                     n->pos, "%s breaks %s", man_macronames[tok],                      n->pos, "%s breaks %s", man_macronames[tok],
                     man_macronames[n->tok]);                      man_macronames[n->tok]);
   
Line 611 
Line 595 
             strcmp(man->last->prev->child->string, "NAME"))              strcmp(man->last->prev->child->string, "NAME"))
                 return(2);                  return(2);
   
         /*          /*
          * We weren't in a block-line scope when entering the           * We weren't in a block-line scope when entering the
          * above-parsed macro, so return.           * above-parsed macro, so return.
          */           */
   
         if ( ! (MAN_BPLINE & man->flags)) {          if ( ! (MAN_BPLINE & man->flags)) {
                 man->flags &= ~MAN_ILINE;                  man->flags &= ~MAN_ILINE;
                 return(1);                  return(1);
         }          }
         man->flags &= ~MAN_BPLINE;          man->flags &= ~MAN_BPLINE;
Line 632 
Line 616 
                 return(1);                  return(1);
         }          }
   
         /*          /*
          * If we've opened a new next-line element scope, then return           * If we've opened a new next-line element scope, then return
          * now, as the next line will close out the block scope.           * now, as the next line will close out the block scope.
          */           */

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79