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

Diff for /mandoc/mdoc_macro.c between version 1.60 and 1.67

version 1.60, 2010/05/13 06:22:11 version 1.67, 2010/05/15 08:54:04
Line 26 
Line 26 
 #include <time.h>  #include <time.h>
   
 #include "libmdoc.h"  #include "libmdoc.h"
   #include "libmandoc.h"
   
 enum    rew {  enum    rew {
         REWIND_REWIND,          REWIND_REWIND,
Line 48  static int    append_delims(struct mdoc *, 
Line 49  static int    append_delims(struct mdoc *, 
 static  enum mdoct      lookup(enum mdoct, const char *);  static  enum mdoct      lookup(enum mdoct, const char *);
 static  enum mdoct      lookup_raw(const char *);  static  enum mdoct      lookup_raw(const char *);
 static  int             phrase(struct mdoc *, int, int,  static  int             phrase(struct mdoc *, int, int,
                                 char *, enum margserr, int);                                  char *, enum margserr);
 static  enum mdoct      rew_alt(enum mdoct);  static  enum mdoct      rew_alt(enum mdoct);
 static  int             rew_dobreak(enum mdoct,  static  int             rew_dobreak(enum mdoct,
                                 const struct mdoc_node *);                                  const struct mdoc_node *);
Line 621  rew_sub(enum mdoc_type t, struct mdoc *m, 
Line 622  rew_sub(enum mdoc_type t, struct mdoc *m, 
   
   
 static int  static int
 append_delims(struct mdoc *mdoc, int line, int *pos, char *buf)  append_delims(struct mdoc *m, int line, int *pos, char *buf)
 {  {
         int              lastarg;          int              la;
         enum margserr    ac;          enum margserr    ac;
         char            *p;          char            *p;
   
         if (0 == buf[*pos])          if ('\0' == buf[*pos])
                 return(1);                  return(1);
   
         for (;;) {          for (;;) {
                 lastarg = *pos;                  la = *pos;
                 ac = mdoc_zargs(mdoc, line, pos, buf, ARGS_NOWARN, &p);                  ac = mdoc_zargs(m, line, pos, buf, ARGS_NOWARN, &p);
   
                 if (ARGS_ERROR == ac)                  if (ARGS_ERROR == ac)
                         return(0);                          return(0);
                 else if (ARGS_EOLN == ac)                  else if (ARGS_EOLN == ac)
                         break;                          break;
                 assert(mdoc_isdelim(p));  
                 if ( ! mdoc_word_alloc(mdoc, line, lastarg, p))                  assert(DELIM_NONE != mdoc_isdelim(p));
                   if ( ! mdoc_word_alloc(m, line, la, p))
                         return(0);                          return(0);
   
                   /*
                    * If we encounter end-of-sentence symbols, then trigger
                    * the double-space.
                    *
                    * XXX: it's easy to allow this to propogate outward to
                    * the last symbol, such that `. )' will cause the
                    * correct double-spacing.  However, (1) groff isn't
                    * smart enough to do this and (2) it would require
                    * knowing which symbols break this behaviour, for
                    * example, `.  ;' shouldn't propogate the double-space.
                    */
                   if (mandoc_eos(p, strlen(p)))
                           m->last->flags |= MDOC_EOS;
         }          }
   
         return(1);          return(1);
Line 734  blk_exp_close(MACRO_PROT_ARGS)
Line 750  blk_exp_close(MACRO_PROT_ARGS)
 static int  static int
 in_line(MACRO_PROT_ARGS)  in_line(MACRO_PROT_ARGS)
 {  {
         int              la, lastpunct, cnt, d, nc, nl;          int              la, lastpunct, cnt, nc, nl;
         enum margverr    av;          enum margverr    av;
         enum mdoct       ntok;          enum mdoct       ntok;
         enum margserr    ac;          enum margserr    ac;
           enum mdelim      d;
         struct mdoc_arg *arg;          struct mdoc_arg *arg;
         char            *p;          char            *p;
   
Line 830  in_line(MACRO_PROT_ARGS)
Line 847  in_line(MACRO_PROT_ARGS)
                  * the word.                   * the word.
                  */                   */
   
                 d = ARGS_QWORD == ac ? 0 : mdoc_isdelim(p);                  d = ARGS_QWORD == ac ? DELIM_NONE : mdoc_isdelim(p);
   
                 if (ARGS_QWORD != ac && d) {                  if (ARGS_QWORD != ac && DELIM_NONE != d) {
                         if (0 == lastpunct && ! rew_elem(m, tok))                          if (0 == lastpunct && ! rew_elem(m, tok))
                                 return(0);                                  return(0);
                         lastpunct = 1;                          lastpunct = 1;
Line 842  in_line(MACRO_PROT_ARGS)
Line 859  in_line(MACRO_PROT_ARGS)
                         lastpunct = 0;                          lastpunct = 0;
                 }                  }
   
                 if ( ! d)                  if (DELIM_NONE == d)
                         cnt++;                          cnt++;
                 if ( ! mdoc_word_alloc(m, line, la, p))                  if ( ! mdoc_word_alloc(m, line, la, p))
                         return(0);                          return(0);
Line 888  in_line(MACRO_PROT_ARGS)
Line 905  in_line(MACRO_PROT_ARGS)
 static int  static int
 blk_full(MACRO_PROT_ARGS)  blk_full(MACRO_PROT_ARGS)
 {  {
         int               la, pcnt;          int               la, nl;
         struct mdoc_arg  *arg;          struct mdoc_arg  *arg;
         struct mdoc_node *head; /* save of head macro */          struct mdoc_node *head; /* save of head macro */
         struct mdoc_node *body; /* save of body macro */          struct mdoc_node *body; /* save of body macro */
Line 900  blk_full(MACRO_PROT_ARGS)
Line 917  blk_full(MACRO_PROT_ARGS)
         enum margverr     av;          enum margverr     av;
         char             *p;          char             *p;
   
           nl = MDOC_NEWLINE & m->flags;
   
         /* Close out prior implicit scope. */          /* Close out prior implicit scope. */
   
         if ( ! (MDOC_EXPLICIT & mdoc_macros[tok].flags)) {          if ( ! (MDOC_EXPLICIT & mdoc_macros[tok].flags)) {
Line 959  blk_full(MACRO_PROT_ARGS)
Line 978  blk_full(MACRO_PROT_ARGS)
   
         ac = ARGS_ERROR;          ac = ARGS_ERROR;
   
         for (pcnt = 0; ; ) {          for ( ; ; ) {
                 la = *pos;                  la = *pos;
                 lac = ac;                  lac = ac;
                 ac = mdoc_args(m, line, pos, buf, tok, &p);                  ac = mdoc_args(m, line, pos, buf, tok, &p);
Line 969  blk_full(MACRO_PROT_ARGS)
Line 988  blk_full(MACRO_PROT_ARGS)
                 if (ARGS_EOLN == ac)                  if (ARGS_EOLN == ac)
                         break;                          break;
   
                   if (ARGS_PEND == ac) {
                           if (ARGS_PPHRASE == lac)
                                   ac = ARGS_PPHRASE;
                           else
                                   ac = ARGS_PHRASE;
                   }
   
                 /* Don't emit leading punct. for phrases. */                  /* Don't emit leading punct. for phrases. */
   
                 if (NULL == head &&                  if (NULL == head &&
                                 ARGS_PHRASE != ac &&                                  ARGS_PHRASE != ac &&
                                 ARGS_PPHRASE != ac &&                                  ARGS_PPHRASE != ac &&
                                 ARGS_PEND != ac &&  
                                 ARGS_QWORD != ac &&                                  ARGS_QWORD != ac &&
                                 1 == mdoc_isdelim(p)) {                                  DELIM_OPEN == mdoc_isdelim(p)) {
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))
                                 return(0);                                  return(0);
                         continue;                          continue;
Line 986  blk_full(MACRO_PROT_ARGS)
Line 1011  blk_full(MACRO_PROT_ARGS)
   
                 if (NULL == head ||                  if (NULL == head ||
                                 ARGS_PHRASE == ac ||                                  ARGS_PHRASE == ac ||
                                 ARGS_PEND == ac ||  
                                 ARGS_PPHRASE == ac) {                                  ARGS_PPHRASE == ac) {
                         if ( ! mdoc_head_alloc(m, line, ppos, tok))                          if ( ! mdoc_head_alloc(m, line, ppos, tok))
                                 return(0);                                  return(0);
                         head = m->last;                          head = m->last;
                 }                  }
   
                 if (ARGS_PHRASE == ac ||                  if (ARGS_PHRASE == ac || ARGS_PPHRASE == ac) {
                                 ARGS_PEND == ac ||                          if (ARGS_PPHRASE == ac)
                                 ARGS_PPHRASE == ac) {                                  m->flags |= MDOC_PPHRASE;
                         /*                          if ( ! phrase(m, line, la, buf, ac))
                          * Special treatment for the last phrase.  A  
                          * prior ARGS_PHRASE gets is handled as a  
                          * regular ARGS_PHRASE, but a prior ARGS_PPHRASE  
                          * has special handling.  
                          */  
                         if (ARGS_PEND == ac && ARGS_ERROR == lac)  
                                 ac = ARGS_PHRASE;  
                         else if (ARGS_PEND == ac && ARGS_PHRASE == lac)  
                                 ac = ARGS_PHRASE;  
   
                         if ( ! phrase(m, line, la, buf, ac, pcnt++))  
                                 return(0);                                  return(0);
                           m->flags &= ~MDOC_PPHRASE;
                         if ( ! rew_sub(MDOC_HEAD, m, tok, line, ppos))                          if ( ! rew_sub(MDOC_HEAD, m, tok, line, ppos))
                                 return(0);                                  return(0);
                         continue;                          continue;
Line 1033  blk_full(MACRO_PROT_ARGS)
Line 1047  blk_full(MACRO_PROT_ARGS)
                 head = m->last;                  head = m->last;
         }          }
   
         if (1 == ppos && ! append_delims(m, line, pos, buf))          if (nl && ! append_delims(m, line, pos, buf))
                 return(0);                  return(0);
   
         /* If we've already opened our body, exit now. */          /* If we've already opened our body, exit now. */
Line 1073  blk_full(MACRO_PROT_ARGS)
Line 1087  blk_full(MACRO_PROT_ARGS)
 static int  static int
 blk_part_imp(MACRO_PROT_ARGS)  blk_part_imp(MACRO_PROT_ARGS)
 {  {
         int               la;          int               la, nl;
         enum mdoct        ntok;          enum mdoct        ntok;
         enum margserr     ac;          enum margserr     ac;
         char             *p;          char             *p;
Line 1081  blk_part_imp(MACRO_PROT_ARGS)
Line 1095  blk_part_imp(MACRO_PROT_ARGS)
         struct mdoc_node *body; /* saved body context */          struct mdoc_node *body; /* saved body context */
         struct mdoc_node *n;          struct mdoc_node *n;
   
           nl = MDOC_NEWLINE & m->flags;
   
         /*          /*
          * A macro that spans to the end of the line.  This is generally           * A macro that spans to the end of the line.  This is generally
          * (but not necessarily) called as the first macro.  The block           * (but not necessarily) called as the first macro.  The block
Line 1118  blk_part_imp(MACRO_PROT_ARGS)
Line 1134  blk_part_imp(MACRO_PROT_ARGS)
                         break;                          break;
   
                 if (NULL == body && ARGS_QWORD != ac &&                  if (NULL == body && ARGS_QWORD != ac &&
                                 1 == mdoc_isdelim(p)) {                      DELIM_OPEN == mdoc_isdelim(p)) {
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))
                                 return(0);                                  return(0);
                         continue;                          continue;
Line 1151  blk_part_imp(MACRO_PROT_ARGS)
Line 1167  blk_part_imp(MACRO_PROT_ARGS)
                 body = m->last;                  body = m->last;
         }          }
   
           for (n = body->child; n && n->next; n = n->next)
                   /* Do nothing. */ ;
   
         /*          /*
            * End of sentence spacing: if the last node is a text node and
            * has a trailing period, then mark it as being end-of-sentence.
            */
   
           if (n && MDOC_TEXT == n->type && n->string)
                   if (mandoc_eos(n->string, strlen(n->string)))
                           n->flags |= MDOC_EOS;
   
           /* Up-propogate the end-of-space flag. */
   
           if (n && (MDOC_EOS & n->flags)) {
                   body->flags |= MDOC_EOS;
                   body->parent->flags |= MDOC_EOS;
           }
   
           /*
          * If we can't rewind to our body, then our scope has already           * If we can't rewind to our body, then our scope has already
          * been closed by another macro (like `Oc' closing `Op').  This           * been closed by another macro (like `Oc' closing `Op').  This
          * is ugly behaviour nodding its head to OpenBSD's overwhelming           * is ugly behaviour nodding its head to OpenBSD's overwhelming
          * crufty use of `Op' breakage.           * crufty use of `Op' breakage.
            *
            * FIXME - this should be ifdef'd OpenBSD?
          */           */
         for (n = m->last; n; n = n->parent)          for (n = m->last; n; n = n->parent)
                 if (body == n)                  if (body == n)
Line 1169  blk_part_imp(MACRO_PROT_ARGS)
Line 1206  blk_part_imp(MACRO_PROT_ARGS)
   
         /* Standard appending of delimiters. */          /* Standard appending of delimiters. */
   
         if (1 == ppos && ! append_delims(m, line, pos, buf))          if (nl && ! append_delims(m, line, pos, buf))
                 return(0);                  return(0);
   
         /* Rewind scope, if applicable. */          /* Rewind scope, if applicable. */
Line 1216  blk_part_exp(MACRO_PROT_ARGS)
Line 1253  blk_part_exp(MACRO_PROT_ARGS)
                 /* Flush out leading punctuation. */                  /* Flush out leading punctuation. */
   
                 if (NULL == head && ARGS_QWORD != ac &&                  if (NULL == head && ARGS_QWORD != ac &&
                                 1 == mdoc_isdelim(p)) {                      DELIM_OPEN == mdoc_isdelim(p)) {
                         assert(NULL == body);                          assert(NULL == body);
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))
                                 return(0);                                  return(0);
Line 1291  blk_part_exp(MACRO_PROT_ARGS)
Line 1328  blk_part_exp(MACRO_PROT_ARGS)
 }  }
   
   
   /* ARGSUSED */
 static int  static int
 in_line_argn(MACRO_PROT_ARGS)  in_line_argn(MACRO_PROT_ARGS)
 {  {
Line 1360  in_line_argn(MACRO_PROT_ARGS)
Line 1398  in_line_argn(MACRO_PROT_ARGS)
   
                 if ( ! (MDOC_IGNDELIM & mdoc_macros[tok].flags) &&                  if ( ! (MDOC_IGNDELIM & mdoc_macros[tok].flags) &&
                                 ARGS_QWORD != ac &&                                  ARGS_QWORD != ac &&
                                 0 == j && 1 == mdoc_isdelim(p)) {                                  0 == j && DELIM_OPEN == mdoc_isdelim(p)) {
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))
                                 return(0);                                  return(0);
                         continue;                          continue;
Line 1388  in_line_argn(MACRO_PROT_ARGS)
Line 1426  in_line_argn(MACRO_PROT_ARGS)
   
                 if ( ! (MDOC_IGNDELIM & mdoc_macros[tok].flags) &&                  if ( ! (MDOC_IGNDELIM & mdoc_macros[tok].flags) &&
                                 ARGS_QWORD != ac &&                                  ARGS_QWORD != ac &&
                                 ! flushed && mdoc_isdelim(p)) {                                  ! flushed &&
                                   DELIM_NONE != mdoc_isdelim(p)) {
                         if ( ! rew_elem(m, tok))                          if ( ! rew_elem(m, tok))
                                 return(0);                                  return(0);
                         flushed = 1;                          flushed = 1;
Line 1535  obsolete(MACRO_PROT_ARGS)
Line 1574  obsolete(MACRO_PROT_ARGS)
  * macro is encountered.   * macro is encountered.
  */   */
 static int  static int
 phrase(struct mdoc *m, int line, int ppos, char *buf,  phrase(struct mdoc *m, int line, int ppos, char *buf, enum margserr ac)
                 enum margserr ac, int count)  
 {  {
         int              la, pos;          int              la, pos;
         enum margserr    aac;          enum margserr    aac;
         enum mdoct       ntok;          enum mdoct       ntok;
         char            *p;          char            *p;
   
         assert(ARGS_PHRASE == ac ||          assert(ARGS_PHRASE == ac || ARGS_PPHRASE == ac);
                         ARGS_PEND == ac ||  
                         ARGS_PPHRASE == ac);  
   
         if (count && ARGS_PPHRASE == ac)  
                 return(mdoc_word_alloc(m, line, ppos, &buf[ppos]));  
   
         for (pos = ppos; ; ) {          for (pos = ppos; ; ) {
                 la = pos;                  la = pos;
   
                 /* Note: no calling context! */  
                 aac = mdoc_zargs(m, line, &pos, buf, 0, &p);                  aac = mdoc_zargs(m, line, &pos, buf, 0, &p);
   
                 if (ARGS_ERROR == aac)                  if (ARGS_ERROR == aac)
Line 1561  phrase(struct mdoc *m, int line, int ppos, char *buf, 
Line 1593  phrase(struct mdoc *m, int line, int ppos, char *buf, 
                 if (ARGS_EOLN == aac)                  if (ARGS_EOLN == aac)
                         break;                          break;
   
                 ntok = ARGS_QWORD == aac || ARGS_PEND == ac ?                  ntok = ARGS_QWORD == aac ? MDOC_MAX : lookup_raw(p);
                         MDOC_MAX : lookup_raw(p);  
   
                 if (MDOC_MAX == ntok) {                  if (MDOC_MAX == ntok) {
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.67

CVSweb