X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2703e1ee2a79e9fc7c86ebb122caa515ecf24d14..b3b356352e87ae00a20f737c48e19b0c8413455a:/src/xbt/automaton/automatonparse_promela.c diff --git a/src/xbt/automaton/automatonparse_promela.c b/src/xbt/automaton/automatonparse_promela.c index 34dcbc597e..44758e34a2 100644 --- a/src/xbt/automaton/automatonparse_promela.c +++ b/src/xbt/automaton/automatonparse_promela.c @@ -1,18 +1,21 @@ /* methods for implementation of automaton from promela description */ -/* Copyright (c) 2011-2012. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2011-2015. 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. */ #include "xbt/automaton.h" +#include +#include /* strerror */ static xbt_automaton_t parsed_automaton; char* state_id_src; static void new_state(char* id, int src){ - char* id_state = strdup(id); + char* id_state = xbt_strdup(id); char* first_part = strtok(id,"_"); int type = 0 ; // -1=initial state; 0=intermediate state; 1=final state @@ -35,13 +38,13 @@ static void new_state(char* id, int src){ parsed_automaton->current_state = state; if(src) - state_id_src = strdup(id_state); + state_id_src = xbt_strdup(id_state); } static void new_transition(char* id, xbt_automaton_exp_label_t label){ - char* id_state = strdup(id); + char* id_state = xbt_strdup(id); xbt_automaton_state_t state_dst = NULL; new_state(id, 0); state_dst = xbt_automaton_state_exists(parsed_automaton, id_state); @@ -91,8 +94,11 @@ static xbt_automaton_exp_label_t new_label(int type, ...){ #include "parserPromela.tab.cacc" -void xbt_automaton_load(xbt_automaton_t a, const char *file){ +void xbt_automaton_load(xbt_automaton_t a, const char *file) +{ parsed_automaton = a; yyin = fopen(file, "r"); + if (yyin == NULL) + xbt_die("Failed to open automaton file `%s': %s", file, strerror(errno)); yyparse(); }