Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Slightly reorganize log categories; remove unused ones.
[simgrid.git] / src / xbt / automaton / automatonparse_promela.c
1 /* methods for implementation of automaton from promela description */
2
3 /* Copyright (c) 2011-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "src/internal_config.h"
9 #include "xbt/automaton.h"
10 #include <errno.h>
11 #include <string.h>   /* strerror */
12 #if HAVE_UNISTD_H
13 # include <unistd.h>   /* isatty */
14 #endif
15 #include <xbt/sysdep.h>
16
17 #include "parserPromela.tab.cacc"
18
19 static xbt_automaton_t parsed_automaton;
20 char* state_id_src;
21
22 static void new_state(char* id, int src){
23   char* saveptr = NULL; // for strtok_r()
24   char* id_copy = xbt_strdup(id);
25   char* first_part = strtok_r(id_copy, "_", &saveptr);
26   int type = 0 ; // -1=initial state; 0=intermediate state; 1=final state
27
28   if(strcmp(first_part,"accept")==0){
29     type = 1;
30   }else{
31     char* second_part = strtok_r(NULL, "_", &saveptr);
32     if(strcmp(second_part,"init")==0){
33       type = -1;
34     }
35   }
36   xbt_free(id_copy);
37
38   xbt_automaton_state_t state = xbt_automaton_state_exists(parsed_automaton, id);
39   if(state == NULL){
40     state = xbt_automaton_state_new(parsed_automaton, type, id);
41   }
42
43   if(type==-1)
44     parsed_automaton->current_state = state;
45
46   if(src) {
47     xbt_free(state_id_src);
48     state_id_src = xbt_strdup(id);
49   }
50 }
51
52 static void new_transition(char* id, xbt_automaton_exp_label_t label)
53 {
54   new_state(id, 0);
55   xbt_automaton_state_t state_dst = xbt_automaton_state_exists(parsed_automaton, id);
56   xbt_automaton_state_t state_src = xbt_automaton_state_exists(parsed_automaton, state_id_src);
57
58   xbt_automaton_transition_new(parsed_automaton, state_src, state_dst, label);
59
60 }
61
62 void xbt_automaton_load(xbt_automaton_t a, const char *file)
63 {
64   parsed_automaton = a;
65   yyin = fopen(file, "r");
66   if (yyin == NULL)
67     xbt_die("Failed to open automaton file `%s': %s", file, strerror(errno));
68   yyparse();
69 }