Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5368343600e74ff565f37c9795c888a3f0a64ad9
[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/module.h" /* xbt_init/exit */
13
14 #include "Virtu/virtu_interface.h" /* Module mechanism FIXME: deplace&rename */
15 #include "gras_modinter.h"   /* module init/exit */
16 #include "amok/amok_modinter.h"   /* module init/exit */
17 #include "xbt_modinter.h"   /* module init/exit */
18
19 #include "gras.h"
20 #include "gras/process.h" /* FIXME: killme and put process_init in modinter */
21   
22 #include "portable.h" /* hexa_*(); signalling stuff */
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras,XBT_LOG_ROOT_CAT,"All GRAS categories (cf. section \ref GRAS_API)");
25 static int gras_running_process = 0;
26 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
27 static void gras_sigusr_handler(int sig) {
28    INFO0("SIGUSR1 received. Display the backtrace");
29    xbt_backtrace_display();
30 }
31
32 static void gras_sigint_handler(int sig) {
33    static double lastone = 0;
34    if (lastone == 0 || gras_os_time() - lastone > 5) {
35       lastone = gras_os_time();
36       xbt_backtrace_display();
37       fprintf(stderr,"\nBacktrace displayed because Ctrl-C was pressed. Press again (within 5 sec) to abort the process.\n");
38    } else {
39       exit(1);
40    }
41 }
42 #endif
43
44 void gras_init(int *argc,char **argv) {
45
46   VERB0("Initialize GRAS");
47   
48   /* First initialize the XBT */
49   xbt_init(argc,argv);
50    
51   /* module registrations: 
52    *    - declare process specific data we need (without creating them) 
53    */
54   if (gras_running_process == 0) {
55      gras_trp_register();
56      gras_msg_register();
57   }
58    
59   /*
60    * Initialize the process specific stuff
61    */
62   gras_process_init(); /* calls procdata_init, which creates process specific data for each module */
63   
64   /*
65    * Initialize the global stuff if it's not the first process created
66    */
67   if (gras_running_process++ == 0) {
68     gras_emul_init();
69     gras_msg_init();
70     gras_trp_init();
71     gras_datadesc_init();
72 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
73 # ifdef SIGUSR1
74     signal(SIGUSR1,gras_sigusr_handler);
75 # endif
76     signal(SIGINT,gras_sigint_handler);
77 #endif     
78   }
79    
80   /* and then init amok */
81   amok_init();
82 }
83
84 void gras_exit(void) {
85   INFO0("Exiting GRAS");
86   amok_exit();
87   gras_moddata_leave();
88   if (--gras_running_process == 0) {
89     gras_msg_exit();
90     gras_trp_exit();
91     gras_datadesc_exit();
92     gras_emul_exit();
93     gras_moddata_exit();
94   }
95   gras_process_exit();
96   xbt_exit();
97 }
98
99 const char *hexa_str(unsigned char *data, int size, int downside) {
100   static char*buff=NULL;
101   static int buffsize=0;
102   int i,pos=0;
103   int begin,increment;  
104   
105   if (buffsize<5*(size+1)) {
106     if (buff)
107       free(buff);
108     buffsize=5*(size+1);
109     buff=xbt_malloc(buffsize);
110   }
111    
112
113   if (downside) {
114      begin=size-1;
115      increment=-1;
116   } else {
117      begin=0;
118      increment=1;
119   }
120    
121   for (i=begin; 0<=i && i<size ; i+=increment)  {
122     if (data[i]<32 || data[i]>126)
123       sprintf(buff+pos,".");
124     else
125       sprintf(buff+pos,"%c",data[i]);
126     while (buff[++pos]);
127    }
128   sprintf(buff+pos,"(");
129   while (buff[++pos]);
130   for (i=begin; 0<=i && i<size ; i+=increment)  {
131     sprintf(buff+pos,"%02x",data[i]);
132     while (buff[++pos]);
133    }
134   sprintf(buff+pos,")");
135   while (buff[++pos]);
136   buff[pos]='\0';  
137   return buff;
138 }
139 void hexa_print(const char*name, unsigned char *data, int size) {
140    printf("%s: %s\n", name,hexa_str(data,size,0));
141 }
142