From 01e5c8ac303294105046b1383fe923ae28bd4890 Mon Sep 17 00:00:00 2001 From: compudj Date: Fri, 10 Mar 2006 04:39:12 +0000 Subject: [PATCH] xml 1.0 git-svn-id: http://ltt.polymtl.ca/svn@1664 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/configure.in | 2 +- ltt/branches/poly/ltt/parser.c | 139 +++++++++++++++++++++------------ 2 files changed, 90 insertions(+), 51 deletions(-) diff --git a/ltt/branches/poly/configure.in b/ltt/branches/poly/configure.in index a3aa1a89..df8288a5 100644 --- a/ltt/branches/poly/configure.in +++ b/ltt/branches/poly/configure.in @@ -23,7 +23,7 @@ AC_PREREQ(2.57) AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) #AC_WITH_LTDL # not needed ? -AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.28-09032006) +AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.29-09032006) AM_CONFIG_HEADER(config.h) AM_PROG_LIBTOOL diff --git a/ltt/branches/poly/ltt/parser.c b/ltt/branches/poly/ltt/parser.c index 28ebaeea..1ab1b73b 100644 --- a/ltt/branches/poly/ltt/parser.c +++ b/ltt/branches/poly/ltt/parser.c @@ -96,24 +96,28 @@ int getSizeindex(unsigned int value) unsigned long long int getSize(parse_file_t *in) { - char *token; - int has_quotes = 0; + char *token, *token2; unsigned long long int ret; token = getToken(in); - if(token[0] == '"') { - has_quotes = 1; - token = getToken(in); - } + + + if(in->type == QUOTEDSTRING) { + in->type = NUMBER; + token2 = token; + do { + if (!isdigit(*token2)) { + in->type = QUOTEDSTRING; + break; + } + } while (*(++token2) != '\0'); + } + if(in->type == NUMBER) { ret = strtoull(token, NULL, 0); } else { goto error; } - if(has_quotes) { - token = getToken(in); - if(token[0] != '"') goto error; - } return ret; error: @@ -194,6 +198,7 @@ void getTypeAttributes(parse_file_t *in, type_descriptor_t *t, sequence_t * unnamed_types, table_t * named_types) { char * token; + char car; t->fmt = NULL; t->size = 0; @@ -221,10 +226,26 @@ void getTypeAttributes(parse_file_t *in, type_descriptor_t *t, t->size = getSize(in); } else if(!strcmp("custom_write", token)) { t->custom_write = 1; - } else if(!strcmp("network", token)) { - t->network = 1; - } - } + } else if(!strcmp("byte_order",token)) { + getEqual(in); + car = seekNextChar(in); + if(car == EOF) in->error(in,"byte order was expected (network?)"); + else if(car == '\"') token = getQuotedString(in); + else token = getName(in); + if(!strcmp("network", token)) { + t->network = 1; + } + } else if(!strcmp("write",token)) { + getEqual(in); + car = seekNextChar(in); + if(car == EOF) in->error(in,"write type was expected (custom?)"); + else if(car == '\"') token = getQuotedString(in); + else token = getName(in); + if(!strcmp("custom", token)) { + t->custom_write = 1; + } + } + } } /************************************************************************** @@ -263,16 +284,30 @@ void getEventAttributes(parse_file_t *in, event_t *ev) if(car == EOF) in->error(in,"name was expected"); else if(car == '\"') ev->name = allocAndCopy(getQuotedString(in)); else ev->name = allocAndCopy(getName(in)); - } else if(!strcmp("per_trace", token)) { - ev->per_trace = 1; - } else if(!strcmp("per_tracefile", token)) { - ev->per_tracefile = 1; - } else if(!strcmp("param_buffer", token)) { - ev->param_buffer = 1; - } else if(!strcmp("no_instrument_function", token)) { - ev->no_instrument_function = 1; - } - + } else if(!strcmp("scope", token)) { + getEqual(in); + car = seekNextChar(in); + if(car == EOF) in->error(in,"scope was expected"); + else if(car == '\"') token = getQuotedString(in); + else token = getName(in); + if(!strcmp(token, "trace")) ev->per_trace = 1; + else if(!strcmp(token, "tracefile")) ev->per_tracefile = 1; + } else if(!strcmp("param", token)) { + getEqual(in); + car = seekNextChar(in); + if(car == EOF) in->error(in,"parameter type was expected"); + else if(car == '\"') token = getQuotedString(in); + else token = getName(in); + if(!strcmp(token, "buffer")) ev->param_buffer = 1; + } else if(!strcmp("attribute", token)) { + getEqual(in); + car = seekNextChar(in); + if(car == EOF) in->error(in,"attribute was expected"); + else if(car == '\"') token = getQuotedString(in); + else token = getName(in); + if(!strcmp(token, "no_instrument_function")) + ev->no_instrument_function = 1; + } } } @@ -310,12 +345,12 @@ void getFacilityAttributes(parse_file_t *in, facility_t *fac) if(car == EOF) in->error(in,"name was expected"); else if(car == '\"') fac->name = allocAndCopy(getQuotedString(in)); else fac->name = allocAndCopy(getName(in)); - if(!strncmp(fac->name, "user_", sizeof("user_")) == 0) + if(!strncmp(fac->name, "user_", sizeof("user_")-1)) fac->user = 1; } else if(!strcmp("arch", token)) { getEqual(in); car = seekNextChar(in); - if(car == '\"') fac->name = allocAndCopy(getQuotedString(in)); + if(car == '\"') fac->arch = allocAndCopy(getQuotedString(in)); else fac->arch = allocAndCopy(getName(in)); } } @@ -383,38 +418,39 @@ char *getNameAttribute(parse_file_t *in) -//for