X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..5f7494c30c5435f3e21060a2a91d73b8c2e5f45d:/src/xbt/automaton/automatonparse_promela.c diff --git a/src/xbt/automaton/automatonparse_promela.c b/src/xbt/automaton/automatonparse_promela.c index c6abfb5634..bf93af4335 100644 --- a/src/xbt/automaton/automatonparse_promela.c +++ b/src/xbt/automaton/automatonparse_promela.c @@ -1,6 +1,6 @@ /* methods for implementation of automaton from promela description */ -/* Copyright (c) 2011-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2011-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -13,6 +13,9 @@ # include /* isatty */ #endif #include +#include + +#include "parserPromela.tab.cacc" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_automaton); @@ -33,7 +36,7 @@ static void new_state(char* id, int src){ type = -1; } } - free(id_copy); + xbt_free(id_copy); xbt_automaton_state_t state = xbt_automaton_state_exists(parsed_automaton, id); if(state == NULL){ @@ -44,8 +47,7 @@ static void new_state(char* id, int src){ parsed_automaton->current_state = state; if(src) { - if (state_id_src) - free(state_id_src); + xbt_free(state_id_src); state_id_src = xbt_strdup(id); } } @@ -56,52 +58,10 @@ static void new_transition(char* id, xbt_automaton_exp_label_t label) xbt_automaton_state_t state_dst = xbt_automaton_state_exists(parsed_automaton, id); xbt_automaton_state_t state_src = xbt_automaton_state_exists(parsed_automaton, state_id_src); - //xbt_transition_t trans = NULL; xbt_automaton_transition_new(parsed_automaton, state_src, state_dst, label); } -static xbt_automaton_exp_label_t new_label(int type, ...){ - xbt_automaton_exp_label_t label = NULL; - xbt_automaton_exp_label_t left; - xbt_automaton_exp_label_t right; - xbt_automaton_exp_label_t exp_not; - char *p; - - va_list ap; - va_start(ap,type); - switch(type){ - case 0 : - left = va_arg(ap, xbt_automaton_exp_label_t); - right = va_arg(ap, xbt_automaton_exp_label_t); - label = xbt_automaton_exp_label_new(type, left, right); - break; - case 1 : - left = va_arg(ap, xbt_automaton_exp_label_t); - right = va_arg(ap, xbt_automaton_exp_label_t); - label = xbt_automaton_exp_label_new(type, left, right); - break; - case 2 : - exp_not = va_arg(ap, xbt_automaton_exp_label_t); - label = xbt_automaton_exp_label_new(type, exp_not); - break; - case 3 : - p = va_arg(ap, char*); - label = xbt_automaton_exp_label_new(type, p); - break; - case 4 : - label = xbt_automaton_exp_label_new(type); - break; - default: - XBT_DEBUG("Invalid type: %d", type); - break; - } - va_end(ap); - return label; -} - -#include "parserPromela.tab.cacc" - void xbt_automaton_load(xbt_automaton_t a, const char *file) { parsed_automaton = a;