Logo AND Algorithmique Numérique Distribuée

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