X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Ffacility.c;h=f4c0acae6c939f6f488a31cbc6c9fd40d908c1fd;hb=294a2716158ad1d821b3e47b55950d40fd752d14;hp=0b5f1ee7d7ee8bfc0e385ea7f7b4583051bdc5a5;hpb=cb03932ac8527313696af07dba4404603620c844;p=lttv.git diff --git a/ltt/branches/poly/ltt/facility.c b/ltt/branches/poly/ltt/facility.c index 0b5f1ee7..f4c0acae 100644 --- a/ltt/branches/poly/ltt/facility.c +++ b/ltt/branches/poly/ltt/facility.c @@ -69,36 +69,35 @@ void freeLttNamedType(LttType * type); * t : the trace containing the facilities * pathname : the path name of the facility * + * Open the facility corresponding to the right checksum. + * *returns 0 on success, 1 on error. ****************************************************************************/ int ltt_facility_open(LttFacility *f, LttTrace * t, gchar * pathname) { + int ret = 0; gchar *token; parse_file_t in; - gsize length; facility_t * fac; unsigned long checksum; - GError * error = NULL; gchar buffer[BUFFER_SIZE]; + gboolean generated = FALSE; in.buffer = &(buffer[0]); in.lineno = 0; in.error = error_callback; in.name = pathname; + in.unget = 0; - //in.fd = g_open(in.name, O_RDONLY, 0); - //if(in.fd < 0 ) { in.fp = fopen(in.name, "r"); if(in.fp == NULL) { g_warning("cannot open facility description file %s", in.name); - return 1; + ret = 1; + goto open_error; } - //in.channel = g_io_channel_unix_new(in.fd); - //in.pos = 0; - while(1){ token = getToken(&in); if(in.type == ENDFILE) break; @@ -120,10 +119,14 @@ int ltt_facility_open(LttFacility *f, LttTrace * t, gchar * pathname) checkNamedTypesImplemented(&fac->named_types); generateChecksum(fac->name, &checksum, &fac->events); - - generateFacility(f, fac, checksum); + + if(checksum == f->checksum) { + generateFacility(f, fac, checksum); + generated = TRUE; + } g_free(fac->name); + free(fac->capname); g_free(fac->description); freeEvents(&fac->events); sequence_dispose(&fac->events); @@ -132,22 +135,26 @@ int ltt_facility_open(LttFacility *f, LttTrace * t, gchar * pathname) freeTypes(&fac->unnamed_types); sequence_dispose(&fac->unnamed_types); g_free(fac); + if(generated) break; /* use the first good match */ } else { g_warning("facility token was expected in file %s", in.name); + ret = 1; goto parse_error; } } - + parse_error: - //g_io_channel_shutdown(in.channel, FALSE, &error); /* No flush */ - //if(error != NULL) { fclose(in.fp); - // g_warning("Can not close file: \n%s\n", error->message); - // g_error_free(error); - //} +open_error: + + if(!generated) { + g_warning("Cannot find facility %s, checksum 0x%X", + g_quark_to_string(f->name), f->checksum); + ret = 1; + } - //g_close(in.fd); + return ret; } @@ -250,7 +257,7 @@ void generateFacility(LttFacility *f, facility_t *fac, guint32 checksum) void construct_types_and_fields(LttFacility * fac, type_descriptor_t * td, LttField * fld) { - int i, flag; + int i; type_descriptor_t * tmpTd; switch(td->type) { @@ -654,5 +661,6 @@ LttEventType *ltt_facility_eventtype_get(LttFacility *f, guint8 i) LttEventType *ltt_facility_eventtype_get_by_name(LttFacility *f, GQuark name) { LttEventType *et = g_datalist_id_get_data(&f->events_by_name, name); + return et; }