XML-Bare

 view release on metacpan or  search on metacpan

parser.h  view on Meta::CPAN

#ifdef WIN32
#include<stdlib.h>
#endif

#ifndef NULL
  #define NULL 0x00
#endif

struct nodec {
  struct nodec *curchild;
  struct nodec *parent;
  struct nodec *next;
  struct nodec *firstchild;
  struct nodec *lastchild;
  struct attc  *firstatt;
  struct attc  *lastatt;
  int   numchildren;
  int   numatt;
  char  *name;
  int   namelen;
  char  *value;
  char  *comment;
  int   vallen;
  int   comlen;
  int   type;// cdata or normal
  int   numvals;
  int   numcoms;
  int   pos;
  int   err;
  int   z;
};

struct nodec *nodec_addchildr( struct nodec *self, char *newname, int newnamelen );//, char *newval, int newvallen, int newtype );
//struct nodec *nodec_addchild( struct nodec *self, char *newname, int newnamelen );
struct attc *nodec_addattr  ( struct nodec *self, char *newname, int newnamelen );//, char *newval, int newvallen );
//struct attc *nodec_addatt  ( struct nodec *self, char *newname, int newnamelen );

struct nodec *new_nodecp( struct nodec *newparent );
struct nodec *new_nodec();
void del_nodec( struct nodec *node );

struct attc {
  struct nodec *parent;
  struct attc  *next;
  char  *name;
  int   namelen;
  char  *value;
  int   vallen;
};

struct attc* new_attc( struct nodec *newparent );

struct parserc {
    struct nodec *curnode;
    struct attc  *curatt;
    struct nodec *rootnode;
    int err;
    char  *tagname; int tagname_len;
    char  *attname; int attname_len;
    char  *attval;  int attval_len;
    int    att_has_val;
    int    last_state;
    char *rootpos;
};

int parserc_parse( struct parserc *self, char *newbuf );
int parserc_parse_unsafely( struct parserc *self, char *newbuf );



( run in 2.107 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )