Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do connect all log channel manually to parent using XBT_LOG_CONNECT() too, so that...
[simgrid.git] / src / gras / gras.c
1 /* $Id$ */
2
3 /* gras.c -- generic functions not fitting anywhere else                    */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson.                                 */
6 /* All rights reserved.                                                     */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include "xbt/log.h"
12 #include "xbt/virtu.h" /* set the XBT virtualization to use GRAS */
13 #include "xbt/module.h" /* xbt_init/exit */
14 #include "xbt/xbt_os_time.h" /* xbt_os_time */
15 #include "xbt/synchro.h"
16
17 #include "Virtu/virtu_interface.h" /* Module mechanism FIXME: deplace&rename */
18 #include "Virtu/virtu_private.h"
19 #include "gras_modinter.h"   /* module init/exit */
20 #include "amok/amok_modinter.h"   /* module init/exit */
21 #include "xbt_modinter.h"   /* module init/exit */
22
23 #include "gras.h"
24 #include "gras/process.h" /* FIXME: killme and put process_init in modinter */
25 #include "gras/Msg/msg_private.h"
26 #include "portable.h" /* hexa_*(); signalling stuff */
27
28 XBT_LOG_NEW_DEFAULT_CATEGORY(gras,"All GRAS categories (cf. section \ref GRAS_API)");
29 static int gras_running_process = 0;
30 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
31 static void gras_sigusr_handler(int sig) {
32    INFO0("SIGUSR1 received. Display the backtrace");
33    xbt_backtrace_display_current();
34 }
35
36 static void gras_sigint_handler(int sig) {
37    static double lastone = 0;
38    if (lastone == 0 || xbt_os_time() - lastone > 5) {
39       xbt_backtrace_display_current();
40       fprintf(stderr,
41               "\nBacktrace displayed because Ctrl-C was pressed. Press again (within 5 sec) to abort the process.\n");
42       lastone = xbt_os_time();
43    } else {
44       exit(1);
45    }
46 }
47 #endif
48
49 void gras_init(int *argc,char **argv) {
50
51         gras_procdata_t *pd;
52         gras_msg_procdata_t msg_pd;
53   VERB0("Initialize GRAS");
54
55   xbt_getpid = gras_os_getpid;
56   /* First initialize the XBT */
57   xbt_init(argc,argv);
58    
59   /* module registrations: 
60    *    - declare process specific data we need (without creating them) 
61    */
62   if (gras_running_process == 0) {
63      /* Connect our log channels: that must be done manually under windows */
64      XBT_LOG_CONNECT(gras_ddt, gras);
65        XBT_LOG_CONNECT(gras_ddt_cbps, gras_ddt);
66        XBT_LOG_CONNECT(gras_ddt_convert, gras_ddt);
67        XBT_LOG_CONNECT(gras_ddt_create, gras_ddt);
68        XBT_LOG_CONNECT(gras_ddt_exchange, gras_ddt);
69        XBT_LOG_CONNECT(gras_ddt_lexer, gras_ddt_parse);
70        XBT_LOG_CONNECT(gras_ddt_parse, gras_ddt);
71      
72      XBT_LOG_CONNECT(gras_modules, gras);
73      
74      XBT_LOG_CONNECT(gras_msg, gras);
75        XBT_LOG_CONNECT(gras_msg_read, gras_msg);
76        XBT_LOG_CONNECT(gras_msg_rpc, gras_msg);
77      
78      XBT_LOG_CONNECT(gras_timer, gras);
79      
80      XBT_LOG_CONNECT(gras_trp, gras);
81        XBT_LOG_CONNECT(gras_trp_file, gras_trp);
82        XBT_LOG_CONNECT(gras_trp_meas, gras_trp);
83        XBT_LOG_CONNECT(gras_trp_sg, gras_trp);
84        XBT_LOG_CONNECT(gras_trp_tcp, gras_trp);
85      
86      XBT_LOG_CONNECT(gras_virtu, gras);
87        XBT_LOG_CONNECT(gras_virtu_emul, gras_virtu);
88        XBT_LOG_CONNECT(gras_virtu_process, gras_virtu);
89      
90      gras_trp_register();
91      gras_msg_register();
92   }
93    
94   /*
95    * Initialize the process specific stuff
96    */
97   gras_process_init(); /* calls procdata_init, which creates process specific data for each module */
98   
99   /*
100    * Initialize the global stuff if it's not the first process created
101    */
102   if (gras_running_process++ == 0) {
103     gras_emul_init();
104     gras_msg_init();
105     gras_trp_init();
106     gras_datadesc_init();
107 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
108 # ifdef SIGUSR1
109     signal(SIGUSR1,gras_sigusr_handler);
110 # endif
111     signal(SIGINT,gras_sigint_handler);
112 #endif     
113   }
114    
115   /* and then init amok */
116   amok_init();
117         pd = gras_procdata_get();
118         msg_pd = gras_libdata_by_name("gras_msg");
119         pd->listener = gras_msg_listener_launch(msg_pd->msg_received);
120 }
121
122 void gras_exit(void) {
123         gras_procdata_t *pd;
124   INFO0("Exiting GRAS");
125   amok_exit();
126   gras_moddata_leave();
127         pd = gras_procdata_get();
128         gras_msg_listener_shutdown(pd->listener);
129   gras_process_exit();
130   if (--gras_running_process == 0) {
131     gras_msg_exit();
132     gras_trp_exit();
133     gras_datadesc_exit();
134     gras_emul_exit();
135     gras_moddata_exit();
136   }
137   xbt_exit();
138 }
139
140 const char *hexa_str(unsigned char *data, int size, int downside) {
141   static char*buff=NULL;
142   static int buffsize=0;
143   int i,pos=0;
144   int begin,increment;  
145   
146   if (buffsize<5*(size+1)) {
147     if (buff)
148       free(buff);
149     buffsize=5*(size+1);
150     buff=xbt_malloc(buffsize);
151   }
152    
153
154   if (downside) {
155      begin=size-1;
156      increment=-1;
157   } else {
158      begin=0;
159      increment=1;
160   }
161    
162   for (i=begin; 0<=i && i<size ; i+=increment)  {
163     if (data[i]<32 || data[i]>126)
164       sprintf(buff+pos,".");
165     else
166       sprintf(buff+pos,"%c",data[i]);
167     while (buff[++pos]);
168    }
169   sprintf(buff+pos,"(");
170   while (buff[++pos]);
171   for (i=begin; 0<=i && i<size ; i+=increment)  {
172     sprintf(buff+pos,"%02x",data[i]);
173     while (buff[++pos]);
174    }
175   sprintf(buff+pos,")");
176   while (buff[++pos]);
177   buff[pos]='\0';  
178   return buff;
179 }
180 void hexa_print(const char*name, unsigned char *data, int size) {
181    printf("%s: %s\n", name,hexa_str(data,size,0));
182 }
183