Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix tracing options ignored when set in xml config file [#14853]
[simgrid.git] / src / surf / surfxml_parseplatf.c
1 /* Copyright (c) 2006-2014. 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 #include "xbt/misc.h"
8 #include "xbt/log.h"
9 #include "xbt/str.h"
10 #include "xbt/dict.h"
11 #include "simgrid/platf.h"
12 #include "surf/surfxml_parse.h"
13 #include "surf/surf_private.h"
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse);
16
17 /*
18  *  Allow the cluster tag to mess with the parsing buffer.
19  * (this will probably become obsolete once the cluster tag do not mess with the parsing callbacks directly)
20  */
21
22 /* This buffer is used to store the original buffer before substituting it by out own buffer. Useful for the cluster tag */
23 static xbt_dynar_t surfxml_bufferstack_stack = NULL;
24 int surfxml_bufferstack_size = 2048;
25
26 static char *old_buff = NULL;
27
28 XBT_IMPORT_NO_EXPORT(unsigned int) surfxml_buffer_stack_stack_ptr;
29 XBT_IMPORT_NO_EXPORT(unsigned int) surfxml_buffer_stack_stack[1024];
30
31
32 void surfxml_bufferstack_push(int new)
33 {
34   if (!new)
35     old_buff = surfxml_bufferstack;
36   else {
37     xbt_dynar_push(surfxml_bufferstack_stack, &surfxml_bufferstack);
38     surfxml_bufferstack = xbt_new0(char, surfxml_bufferstack_size);
39   }
40 }
41
42 void surfxml_bufferstack_pop(int new)
43 {
44   if (!new)
45     surfxml_bufferstack = old_buff;
46   else {
47     free(surfxml_bufferstack);
48     xbt_dynar_pop(surfxml_bufferstack_stack, &surfxml_bufferstack);
49   }
50 }
51
52 /*
53  * Trace related stuff
54  */
55
56 xbt_dict_t traces_set_list = NULL;
57 xbt_dict_t trace_connect_list_host_avail = NULL;
58 xbt_dict_t trace_connect_list_power = NULL;
59 xbt_dict_t trace_connect_list_link_avail = NULL;
60 xbt_dict_t trace_connect_list_bandwidth = NULL;
61 xbt_dict_t trace_connect_list_latency = NULL;
62
63 /* ********************************************* */
64 /* TUTORIAL: New TAG                             */
65 /* This function should be in gpu.c              */
66 /* because sg_platf_gpu_add_cb take a staic fct  */
67 XBT_PUBLIC(void) gpu_register_callbacks(void){
68   sg_platf_gpu_add_cb(NULL);
69 }
70 /* ***************************************** */
71
72 static int after_config_done;
73 void parse_after_config() {
74   if (!after_config_done) {
75     //
76     #ifdef HAVE_TRACING
77       TRACE_start();
78     #endif
79
80     /* Register classical callbacks */
81     storage_register_callbacks();
82     routing_register_callbacks();
83
84     /* ***************************************** */
85     /* TUTORIAL: New TAG                         */
86     gpu_register_callbacks();
87     /* ***************************************** */
88     after_config_done = 1;
89   }
90 }
91
92 /* This function acts as a main in the parsing area. */
93 void parse_platform_file(const char *file)
94 {
95   int parse_status;
96
97   surf_parse_init_callbacks();
98
99   /* init the flex parser */
100   surfxml_buffer_stack_stack_ptr = 1;
101   surfxml_buffer_stack_stack[0] = 0;
102   after_config_done = 0;
103   surf_parse_open(file);
104
105   /* Init my data */
106   if (!surfxml_bufferstack_stack)
107     surfxml_bufferstack_stack = xbt_dynar_new(sizeof(char *), NULL);
108
109   traces_set_list = xbt_dict_new_homogeneous(NULL);
110   trace_connect_list_host_avail = xbt_dict_new_homogeneous(free);
111   trace_connect_list_power = xbt_dict_new_homogeneous(free);
112   trace_connect_list_link_avail = xbt_dict_new_homogeneous(free);
113   trace_connect_list_bandwidth = xbt_dict_new_homogeneous(free);
114   trace_connect_list_latency = xbt_dict_new_homogeneous(free);
115
116   /* Do the actual parsing */
117   parse_status = surf_parse();
118
119   /* Free my data */
120   xbt_dict_free(&trace_connect_list_host_avail);
121   xbt_dict_free(&trace_connect_list_power);
122   xbt_dict_free(&trace_connect_list_link_avail);
123   xbt_dict_free(&trace_connect_list_bandwidth);
124   xbt_dict_free(&trace_connect_list_latency);
125   xbt_dict_free(&traces_set_list);
126   xbt_dict_free(&random_data_list);
127   xbt_dynar_free(&surfxml_bufferstack_stack);
128
129   /* Stop the flex parser */
130   surf_parse_close();
131   if (parse_status)
132     surf_parse_error("Parse error in %s", file);
133 }
134