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

Diff for /mandoc/tbl_data.c between version 1.36 and 1.37

version 1.36, 2015/01/28 17:32:07 version 1.37, 2015/01/30 02:09:04
Line 42  getdata(struct tbl_node *tbl, struct tbl_span *dp,
Line 42  getdata(struct tbl_node *tbl, struct tbl_span *dp,
 {  {
         struct tbl_dat  *dat;          struct tbl_dat  *dat;
         struct tbl_cell *cp;          struct tbl_cell *cp;
         int              sv, spans;          int              sv;
   
         cp = NULL;          cp = dp->last == NULL ? dp->layout->first : dp->last->layout->next;
         if (dp->last && dp->last->layout)  
                 cp = dp->last->layout->next;  
         else if (NULL == dp->last)  
                 cp = dp->layout->first;  
   
         /*          /*
          * Skip over spanners, since           * Skip over spanners, since
          * we want to match data with data layout cells in the header.           * we want to match data with data layout cells in the header.
          */           */
   
         while (cp && TBL_CELL_SPAN == cp->pos)          while (cp != NULL && cp->pos == TBL_CELL_SPAN)
                 cp = cp->next;                  cp = cp->next;
   
         /*          /*
Line 63  getdata(struct tbl_node *tbl, struct tbl_span *dp,
Line 59  getdata(struct tbl_node *tbl, struct tbl_span *dp,
          * cells.  This means that we have extra input.           * cells.  This means that we have extra input.
          */           */
   
         if (NULL == cp) {          if (cp == NULL) {
                 mandoc_msg(MANDOCERR_TBLDATA_EXTRA, tbl->parse,                  mandoc_msg(MANDOCERR_TBLDATA_EXTRA, tbl->parse,
                     ln, *pos, p + *pos);                      ln, *pos, p + *pos);
                 /* Skip to the end... */                  /* Skip to the end... */
Line 72  getdata(struct tbl_node *tbl, struct tbl_span *dp,
Line 68  getdata(struct tbl_node *tbl, struct tbl_span *dp,
                 return;                  return;
         }          }
   
         dat = mandoc_calloc(1, sizeof(struct tbl_dat));          dat = mandoc_calloc(1, sizeof(*dat));
         dat->layout = cp;          dat->layout = cp;
         dat->pos = TBL_DATA_NONE;          dat->pos = TBL_DATA_NONE;
           dat->spans = 0;
         assert(TBL_CELL_SPAN != cp->pos);          for (cp = cp->next; cp != NULL; cp = cp->next)
                   if (cp->pos == TBL_CELL_SPAN)
         for (spans = 0, cp = cp->next; cp; cp = cp->next)                          dat->spans++;
                 if (TBL_CELL_SPAN == cp->pos)  
                         spans++;  
                 else                  else
                         break;                          break;
   
         dat->spans = spans;          if (dp->last == NULL)
                   dp->first = dat;
         if (dp->last) {          else
                 dp->last->next = dat;                  dp->last->next = dat;
                 dp->last = dat;          dp->last = dat;
         } else  
                 dp->last = dp->first = dat;  
   
         sv = *pos;          sv = *pos;
         while (p[*pos] && p[*pos] != tbl->opts.tab)          while (p[*pos] && p[*pos] != tbl->opts.tab)
Line 102  getdata(struct tbl_node *tbl, struct tbl_span *dp,
Line 94  getdata(struct tbl_node *tbl, struct tbl_span *dp,
          * until a standalone `T}', are included in our cell.           * until a standalone `T}', are included in our cell.
          */           */
   
         if (*pos - sv == 2 && 'T' == p[sv] && '{' == p[sv + 1]) {          if (*pos - sv == 2 && p[sv] == 'T' && p[sv + 1] == '{') {
                 tbl->part = TBL_PART_CDATA;                  tbl->part = TBL_PART_CDATA;
                 return;                  return;
         }          }
   
         assert(*pos - sv >= 0);          dat->string = mandoc_strndup(p + sv, *pos - sv);
   
         dat->string = mandoc_malloc((size_t)(*pos - sv + 1));  
         memcpy(dat->string, &p[sv], (size_t)(*pos - sv));  
         dat->string[*pos - sv] = '\0';  
   
         if (p[*pos])          if (p[*pos])
                 (*pos)++;                  (*pos)++;
   
Line 127  getdata(struct tbl_node *tbl, struct tbl_span *dp,
Line 115  getdata(struct tbl_node *tbl, struct tbl_span *dp,
         else          else
                 dat->pos = TBL_DATA_DATA;                  dat->pos = TBL_DATA_DATA;
   
         if (TBL_CELL_HORIZ == dat->layout->pos ||          if ((dat->layout->pos == TBL_CELL_HORIZ ||
             TBL_CELL_DHORIZ == dat->layout->pos ||              dat->layout->pos == TBL_CELL_DHORIZ ||
             TBL_CELL_DOWN == dat->layout->pos)              dat->layout->pos == TBL_CELL_DOWN) &&
                 if (TBL_DATA_DATA == dat->pos && '\0' != *dat->string)              dat->pos == TBL_DATA_DATA && *dat->string != '\0')
                         mandoc_msg(MANDOCERR_TBLDATA_SPAN,                  mandoc_msg(MANDOCERR_TBLDATA_SPAN,
                             tbl->parse, ln, sv, dat->string);                      tbl->parse, ln, sv, dat->string);
   
         return;  
 }  }
   
 int  int
Line 152  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
Line 138  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
                         pos++;                          pos++;
                         getdata(tbl, tbl->last_span, ln, p, &pos);                          getdata(tbl, tbl->last_span, ln, p, &pos);
                         return(1);                          return(1);
                 } else if ('\0' == p[pos]) {                  } else if (p[pos] == '\0') {
                         tbl->part = TBL_PART_DATA;                          tbl->part = TBL_PART_DATA;
                         return(1);                          return(1);
                 }                  }
Line 162  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
Line 148  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
   
         dat->pos = TBL_DATA_DATA;          dat->pos = TBL_DATA_DATA;
   
         if (dat->string) {          if (dat->string != NULL) {
                 sz = strlen(p + pos) + strlen(dat->string) + 2;                  sz = strlen(p + pos) + strlen(dat->string) + 2;
                 dat->string = mandoc_realloc(dat->string, sz);                  dat->string = mandoc_realloc(dat->string, sz);
                 (void)strlcat(dat->string, " ", sz);                  (void)strlcat(dat->string, " ", sz);
Line 170  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
Line 156  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
         } else          } else
                 dat->string = mandoc_strdup(p + pos);                  dat->string = mandoc_strdup(p + pos);
   
         if (TBL_CELL_DOWN == dat->layout->pos)          if (dat->layout->pos == TBL_CELL_DOWN)
                 mandoc_msg(MANDOCERR_TBLDATA_SPAN, tbl->parse,                  mandoc_msg(MANDOCERR_TBLDATA_SPAN, tbl->parse,
                     ln, pos, dat->string);                      ln, pos, dat->string);
   
Line 182  newspan(struct tbl_node *tbl, int line, struct tbl_row
Line 168  newspan(struct tbl_node *tbl, int line, struct tbl_row
 {  {
         struct tbl_span *dp;          struct tbl_span *dp;
   
         dp = mandoc_calloc(1, sizeof(struct tbl_span));          dp = mandoc_calloc(1, sizeof(*dp));
         dp->line = line;          dp->line = line;
         dp->opts = &tbl->opts;          dp->opts = &tbl->opts;
         dp->layout = rp;          dp->layout = rp;
Line 214  tbl_data(struct tbl_node *tbl, int ln, const char *p, 
Line 200  tbl_data(struct tbl_node *tbl, int ln, const char *p, 
          * (it doesn't "consume" the layout).           * (it doesn't "consume" the layout).
          */           */
   
         if (tbl->last_span) {          if (tbl->last_span != NULL) {
                 assert(tbl->last_span->layout);  
                 if (tbl->last_span->pos == TBL_SPAN_DATA) {                  if (tbl->last_span->pos == TBL_SPAN_DATA) {
                         for (rp = tbl->last_span->layout->next;                          for (rp = tbl->last_span->layout->next;
                                         rp && rp->first; rp = rp->next) {                               rp != NULL && rp->first != NULL;
                                rp = rp->next) {
                                 switch (rp->first->pos) {                                  switch (rp->first->pos) {
                                 case TBL_CELL_HORIZ:                                  case TBL_CELL_HORIZ:
                                         dp = newspan(tbl, ln, rp);                                          dp = newspan(tbl, ln, rp);
Line 236  tbl_data(struct tbl_node *tbl, int ln, const char *p, 
Line 222  tbl_data(struct tbl_node *tbl, int ln, const char *p, 
                 } else                  } else
                         rp = tbl->last_span->layout;                          rp = tbl->last_span->layout;
   
                 if (NULL == rp)                  if (rp == NULL)
                         rp = tbl->last_span->layout;                          rp = tbl->last_span->layout;
         } else          } else
                 rp = tbl->first_row;                  rp = tbl->first_row;
Line 255  tbl_data(struct tbl_node *tbl, int ln, const char *p, 
Line 241  tbl_data(struct tbl_node *tbl, int ln, const char *p, 
   
         dp->pos = TBL_SPAN_DATA;          dp->pos = TBL_SPAN_DATA;
   
         while ('\0' != p[pos])          while (p[pos] != '\0')
                 getdata(tbl, dp, ln, p, &pos);                  getdata(tbl, dp, ln, p, &pos);
 }  }

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

CVSweb