Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
17808bb7c83420cefea3c39f5e56c123e3763642
[simgrid.git] / include / surf / surfxml_parse.h
1 /* Copyright (c) 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SURF_SURFXML_PARSE_H
8 #define _SURF_SURFXML_PARSE_H
9
10 #include <stdio.h>              /* to have FILE */
11 #include "surf/simgrid_dtd.h"
12 #include "xbt/function_types.h"
13 #include "xbt/dict.h"
14
15 SG_BEGIN_DECL()
16
17 /* Hook for the different tags. All the functions which pointer to are push into here are run when the tag is encountered */
18 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_route_cb_list;
19 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_route_cb_list;
20 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_link_ctn_cb_list;
21 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_link_ctn_cb_list;
22 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_process_cb_list;
23 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_process_cb_list;
24 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_argument_cb_list;
25 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_argument_cb_list;
26 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_prop_cb_list;
27 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_prop_cb_list;
28 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_trace_cb_list;
29 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_trace_cb_list;
30 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_trace_connect_cb_list;
31 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_trace_connect_cb_list;
32 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_random_cb_list;
33 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_random_cb_list;
34 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_ASroute_cb_list;
35 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_ASroute_cb_list;
36 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_bypassRoute_cb_list;
37 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_bypassRoute_cb_list;
38 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_peer_cb_list;
39 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_peer_cb_list;
40 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_include_cb_list;
41 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_include_cb_list;
42 XBT_PUBLIC_DATA(xbt_dynar_t) STag_surfxml_storage_cb_list;
43 XBT_PUBLIC_DATA(xbt_dynar_t) ETag_surfxml_storage_cb_list;
44
45 XBT_PUBLIC(void) surf_parse_open(const char *file);
46 XBT_PUBLIC(void) surf_parse_close(void);
47 XBT_PUBLIC(void) surf_parse_init_callbacks(void);
48 XBT_PUBLIC(void) surf_parse_reset_callbacks(void);
49 XBT_PUBLIC(void) surf_parse_free_callbacks(void);
50 XBT_PUBLIC(void) surf_parse_error(const char *msg,...) _XBT_GNUC_PRINTF(1,2) _XBT_GNUC_NORETURN;
51 XBT_PUBLIC(void) surf_parse_warn(const char *msg,...) _XBT_GNUC_PRINTF(1,2);
52 XBT_PUBLIC(double) surf_parse_get_double(const char *string);
53 XBT_PUBLIC(int) surf_parse_get_int(const char *string);
54 /* Prototypes of the functions offered by flex */
55 XBT_PUBLIC(int) surf_parse_lex(void);
56 XBT_PUBLIC(int) surf_parse_get_lineno(void);
57 XBT_PUBLIC(FILE *) surf_parse_get_in(void);
58 XBT_PUBLIC(FILE *) surf_parse_get_out(void);
59 XBT_PUBLIC(int) surf_parse_get_leng(void);
60 XBT_PUBLIC(char *) surf_parse_get_text(void);
61 XBT_PUBLIC(void) surf_parse_set_lineno(int line_number);
62 XBT_PUBLIC(void) surf_parse_set_in(FILE * in_str);
63 XBT_PUBLIC(void) surf_parse_set_out(FILE * out_str);
64 XBT_PUBLIC(int) surf_parse_get_debug(void);
65 XBT_PUBLIC(void) surf_parse_set_debug(int bdebug);
66 XBT_PUBLIC(int) surf_parse_lex_destroy(void);
67
68 /* What is needed to bypass the parser. */
69 XBT_PUBLIC_DATA(int_f_void_t) surf_parse;       /* Entry-point to the parser. Set this to your function. */
70
71 /* Set of macros to make the bypassing work easier.
72  * See examples/msg/masterslave_bypass.c for an example of use */
73
74 extern unsigned int surfxml_buffer_stack_stack_ptr;
75 extern unsigned int surfxml_buffer_stack_stack[1024];
76
77 #define SURFXML_BUFFER_SET(key,val) do { \
78   AX_surfxml_##key=AX_ptr; \
79   strcpy(A_surfxml_##key,val); \
80   AX_ptr+=(int)strlen(val)+1; } while(0)
81
82 #define SURFXML_BUFFER_RESET() do { \
83   AX_ptr = 0; \
84   memset(surfxml_bufferstack,0,surfxml_bufferstack_size); } while(0)
85
86 #define SURFXML_START_TAG(tag) \
87   do{                                                                   \
88     surfxml_buffer_stack_stack[surfxml_buffer_stack_stack_ptr++] = AX_ptr; \
89     STag_surfxml_##tag();                                               \
90   }while(0)
91
92 #define SURFXML_END_TAG(tag)                                            \
93   do{                                                                   \
94     AX_ptr = surfxml_buffer_stack_stack[--surfxml_buffer_stack_stack_ptr]; \
95     ETag_surfxml_##tag();                                               \
96   } while(0)
97
98 XBT_PUBLIC(void) surfxml_add_callback(xbt_dynar_t cb_list,
99                                       void_f_void_t function);
100 XBT_PUBLIC(void) surfxml_del_callback(xbt_dynar_t cb_list,
101                                       void_f_void_t function);
102
103 SG_END_DECL()
104 #endif