Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f94430d9476a8a1d4d8d41305ef88d6ab636b71c
[simgrid.git] / src / gras / gras.c
1 /* gras.c -- generic functions not fitting anywhere else                    */
2
3 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt/log.h"
10 #include "xbt/virtu.h"          /* set the XBT virtualization to use GRAS */
11 #include "xbt/module.h"         /* xbt_init/exit */
12 #include "xbt/xbt_os_time.h"    /* xbt_os_time */
13 #include "xbt/synchro.h"
14 #include "xbt/socket.h"
15
16 #include "Virtu/virtu_interface.h"      /* Module mechanism FIXME: deplace&rename */
17 #include "Virtu/virtu_private.h"
18 #include "gras_modinter.h"      /* module init/exit */
19 #include "amok/amok_modinter.h" /* module init/exit */
20 #include "xbt_modinter.h"       /* module init/exit */
21
22 #include "gras.h"
23 #include "gras/process.h"       /* FIXME: killme and put process_init in modinter */
24 #include "gras/transport.h"
25 #include "gras/Msg/msg_private.h"
26 #include "portable.h"           /* hexa_*(); signalling stuff */
27
28 XBT_LOG_NEW_DEFAULT_CATEGORY(gras,
29                              "All GRAS categories (cf. section \ref GRAS_API)");
30 static int gras_running_process = 0;
31 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
32 static void gras_sigusr_handler(int sig)
33 {
34   XBT_INFO("SIGUSR1 received. Display the backtrace");
35   xbt_backtrace_display_current();
36 }
37
38 static void gras_sigint_handler(int sig)
39 {
40   static double lastone = 0;
41   if (lastone == 0 || xbt_os_time() - lastone > 5) {
42     if (gras_if_RL())
43       xbt_backtrace_display_current();
44     else
45       SIMIX_display_process_status();
46     fprintf(stderr,
47             "\nBacktrace displayed because Ctrl-C was pressed. Press again (within 5 sec) to abort the process.\n");
48     lastone = xbt_os_time();
49   } else {
50     exit(1);
51   }
52 }
53 #endif
54
55 XBT_LOG_EXTERNAL_CATEGORY(gras_modules);
56 XBT_LOG_EXTERNAL_CATEGORY(gras_msg);
57 XBT_LOG_EXTERNAL_CATEGORY(gras_msg_read);
58 XBT_LOG_EXTERNAL_CATEGORY(gras_msg_rpc);
59 XBT_LOG_EXTERNAL_CATEGORY(gras_timer);
60 XBT_LOG_EXTERNAL_CATEGORY(gras_virtu);
61 XBT_LOG_EXTERNAL_CATEGORY(gras_virtu_emul);
62 XBT_LOG_EXTERNAL_CATEGORY(gras_virtu_process);
63
64 /**
65  * @ingroup GRAS_API
66  * \brief Initialize the gras mechanisms.
67  */
68 void gras_init(int *argc, char **argv)
69 {
70   int first = 0;
71   gras_procdata_t *pd;
72   gras_msg_procdata_t msg_pd;
73
74   xbt_getpid = gras_os_getpid;
75   /* First initialize the XBT */
76   xbt_init(argc, argv);
77
78   XBT_VERB("Initialize GRAS");
79
80   /* module registrations:
81    *    - declare process specific data we need (without creating them)
82    */
83   if (gras_running_process == 0) {
84     first = 1;
85     /* Connect our log channels: that must be done manually under windows */
86
87     XBT_LOG_CONNECT(gras_modules, gras);
88
89     XBT_LOG_CONNECT(gras_msg, gras);
90     XBT_LOG_CONNECT(gras_msg_read, gras_msg);
91     XBT_LOG_CONNECT(gras_msg_rpc, gras_msg);
92
93     XBT_LOG_CONNECT(gras_timer, gras);
94
95     XBT_LOG_CONNECT(gras_virtu, gras);
96     XBT_LOG_CONNECT(gras_virtu_emul, gras_virtu);
97     XBT_LOG_CONNECT(gras_virtu_process, gras_virtu);
98
99     if (!getenv("GRAS_NO_WARN_EXPERIMENTAL"))
100       XBT_WARN("GRAS is not well maintained anymore. We consider it to be experimental (and not stable anymore) since SimGrid 3.6. Sorry about it, please consider contributing to improve this situation");
101
102     gras_trp_register();
103     gras_msg_register();
104
105     xbt_trp_plugin_new("file", gras_trp_file_setup);
106     if (gras_if_SG()) {
107       xbt_trp_plugin_new("sg", gras_trp_sg_setup);
108     }
109     /* the TCP plugin (used in RL mode) is automatically loaded by XBT */
110   }
111   gras_running_process++;
112
113   /*
114    * Initialize the process specific stuff
115    */
116   gras_process_init();          /* calls procdata_init, which creates process specific data for each module */
117
118   /*
119    * Initialize the global stuff if it's not the first process created
120    */
121   if (first) {
122     gras_emul_init();
123     gras_msg_init();
124 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
125 # ifdef SIGUSR1
126     signal(SIGUSR1, gras_sigusr_handler);
127 # endif
128     signal(SIGINT, gras_sigint_handler);
129 #endif
130   }
131
132   /* and then init amok */
133   amok_init();
134
135   /* And finally, launch the listener thread */
136   pd = gras_procdata_get();
137   msg_pd = gras_libdata_by_name("gras_msg");
138   pd->listener = gras_msg_listener_launch(msg_pd->msg_received);
139 }
140
141 /**
142  * @ingroup GRAS_API
143  * @brief Finalize the gras mechanisms.
144  * */
145 void gras_exit(void)
146 {
147   XBT_INFO("Exiting GRAS");
148   amok_exit();
149   gras_moddata_leave();
150   gras_msg_listener_shutdown();
151   gras_process_exit();
152   if (--gras_running_process == 0) {
153     gras_msg_exit();
154     gras_emul_exit();
155     gras_moddata_exit();
156   }
157 }
158
159 const char *hexa_str(unsigned char *data, int size, int downside)
160 {
161   static char *buff = NULL;
162   static int buffsize = 0;
163   int i, pos = 0;
164   int begin, increment;
165
166   if (buffsize < 5 * (size + 1)) {
167     free(buff);
168     buffsize = 5 * (size + 1);
169     buff = xbt_malloc(buffsize);
170   }
171
172
173   if (downside) {
174     begin = size - 1;
175     increment = -1;
176   } else {
177     begin = 0;
178     increment = 1;
179   }
180
181   for (i = begin; 0 <= i && i < size; i += increment) {
182     if (data[i] < 32 || data[i] > 126)
183       sprintf(buff + pos, ".");
184     else
185       sprintf(buff + pos, "%c", data[i]);
186     while (buff[++pos]);
187   }
188   sprintf(buff + pos, "(");
189   while (buff[++pos]);
190   for (i = begin; 0 <= i && i < size; i += increment) {
191     sprintf(buff + pos, "%02x", data[i]);
192     while (buff[++pos]);
193   }
194   sprintf(buff + pos, ")");
195   while (buff[++pos]);
196   buff[pos] = '\0';
197   return buff;
198 }
199
200 void hexa_print(const char *name, unsigned char *data, int size)
201 {
202   printf("%s: %s\n", name, hexa_str(data, size, 0));
203 }