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

Diff for /mandoc/tbl.c between version 1.8 and 1.13

version 1.8, 2010/12/29 16:44:23 version 1.13, 2011/01/01 15:45:18
Line 25 
Line 25 
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "libroff.h"  #include "libroff.h"
   
 static  void             tbl_init(struct tbl *);  
 static  void             tbl_clear(struct tbl *);  
   
 static void  
 tbl_clear(struct tbl *tbl)  
 {  
         struct tbl_row  *rp;  
         struct tbl_cell *cp;  
   
         while (tbl->first) {  
                 rp = tbl->first;  
                 tbl->first = rp->next;  
                 while (rp->first) {  
                         cp = rp->first;  
                         rp->first = cp->next;  
                         free(cp);  
                 }  
                 free(rp);  
         }  
   
         tbl->last = NULL;  
 }  
   
 static void  
 tbl_init(struct tbl *tbl)  
 {  
   
         tbl->part = TBL_PART_OPTS;  
         tbl->tab = '\t';  
         tbl->linesize = 12;  
         tbl->decimal = '.';  
 }  
   
 enum rofferr  enum rofferr
 tbl_read(struct tbl *tbl, int ln, const char *p, int offs)  tbl_read(struct tbl *tbl, int ln, const char *p, int offs)
 {  {
         int              len;          int              len;
         const char      *cp;          const char      *cp;
         struct tbl_dat  *dp;  
         struct tbl_span *sp;  
   
         cp = &p[offs];          cp = &p[offs];
         len = (int)strlen(cp);          len = (int)strlen(cp);
Line 91  tbl_read(struct tbl *tbl, int ln, const char *p, int o
Line 56  tbl_read(struct tbl *tbl, int ln, const char *p, int o
                 break;                  break;
         }          }
   
         /* XXX: throw away data for now. */          /*
         if (NULL != (sp = tbl_data(tbl, ln, p))) {           * This only returns zero if the line is empty, so we ignore it
                 while (NULL != (dp = sp->first)) {           * and continue on.
                         sp->first = sp->first->next;           */
                         if (dp->string)          return(tbl_data(tbl, ln, p) ? ROFF_TBL : ROFF_IGN);
                                 free(dp->string);  
                         free(dp);  
                 }  
                 free(sp);  
         }  
   
         return(ROFF_CONT);  
 }  }
   
 struct tbl *  struct tbl *
 tbl_alloc(void *data, const mandocmsg msg)  tbl_alloc(int pos, int line, void *data, const mandocmsg msg)
 {  {
         struct tbl      *p;          struct tbl      *p;
   
         p = mandoc_calloc(1, sizeof(struct tbl));          p = mandoc_calloc(1, sizeof(struct tbl));
           p->line = line;
           p->pos = pos;
         p->data = data;          p->data = data;
         p->msg = msg;          p->msg = msg;
         tbl_init(p);          p->part = TBL_PART_OPTS;
           p->tab = '\t';
           p->linesize = 12;
           p->decimal = '.';
         return(p);          return(p);
 }  }
   
 void  void
 tbl_free(struct tbl *p)  tbl_free(struct tbl *p)
 {  {
           struct tbl_row  *rp;
           struct tbl_cell *cp;
           struct tbl_span *sp;
           struct tbl_dat  *dp;
   
         tbl_clear(p);          while (p->first_row) {
                   rp = p->first_row;
                   p->first_row = rp->next;
                   while (rp->first) {
                           cp = rp->first;
                           rp->first = cp->next;
                           free(cp);
                   }
                   free(rp);
           }
   
           while (p->first_span) {
                   sp = p->first_span;
                   p->first_span = sp->next;
                   while (sp->first) {
                           dp = sp->first;
                           sp->first = dp->next;
                           if (dp->string)
                                   free(dp->string);
                           free(dp);
                   }
                   free(sp);
           }
   
         free(p);          free(p);
 }  }
   
 void  void
 tbl_reset(struct tbl *tbl)  tbl_restart(struct tbl *tbl)
 {  {
   
         tbl_clear(tbl);          tbl->part = TBL_PART_LAYOUT;
         tbl_init(tbl);  
 }  }
   
 void  const struct tbl_span *
 tbl_restart(struct tbl *tbl)  tbl_span(const struct tbl *tbl)
 {  {
   
         tbl_clear(tbl);          assert(tbl);
         tbl->part = TBL_PART_LAYOUT;          return(tbl->last_span);
 }  }
   
   void
   tbl_end(struct tbl *tbl)
   {
   
           if (NULL == tbl->first_span || NULL == tbl->first_span->first)
                   TBL_MSG(tbl, MANDOCERR_TBLNODATA, tbl->line, tbl->pos);
   }

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.13

CVSweb