Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SMPI: Change the reference speed to a command line option
[simgrid.git] / src / xbt / xbt_log_layout_simple.c
1 /* $Id$ */
2
3 /* layout_simple - a dumb log layout                                        */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/sysdep.h"
11 #include "xbt/strbuff.h"        /* For dynamic version when the static one fails */
12 #include "xbt/log_private.h"
13 #include "xbt/synchro.h"        /* xbt_thread_name */
14
15 #include "gras/virtu.h"
16 #include <stdio.h>
17 #include "portable.h"
18
19 extern const char *xbt_log_priority_names[7];
20
21 static double begin_of_time = -1;
22
23 static void xbt_log_layout_simple_dynamic(xbt_log_layout_t l,
24                                           xbt_log_event_t ev,
25                                           const char *fmt,
26                                           xbt_log_appender_t app)
27 {
28   xbt_strbuff_t buff = xbt_strbuff_new();
29   char loc_buff[256];
30   char *p;
31
32   /* Put every static information in a static buffer, and copy them in the dyn one */
33   p = loc_buff;
34   p += snprintf(p, 256 - (p - ev->buffer), "[");
35
36   if (strlen(xbt_procname()))
37     p += snprintf(p, 256 - (p - ev->buffer), "%s:%s:(%d) ",
38                   gras_os_myname(), xbt_procname(), (*xbt_getpid) ());
39   p +=
40     snprintf(p, 256 - (p - ev->buffer), "%f] ",
41              gras_os_time() - begin_of_time);
42   if (ev->priority != xbt_log_priority_info)
43     p +=
44       snprintf(p, 256 - (p - ev->buffer), "%s:%d: ", ev->fileName,
45                ev->lineNum);
46   p +=
47     snprintf(p, 256 - (p - ev->buffer), "[%s/%s] ", ev->cat->name,
48              xbt_log_priority_names[ev->priority]);
49
50   xbt_strbuff_append(buff, loc_buff);
51
52   vasprintf(&p, fmt, ev->ap_copy);
53   xbt_strbuff_append(buff, p);
54   free(p);
55
56   xbt_strbuff_append(buff, "\n");
57
58   app->do_append(app, buff->data);
59   xbt_strbuff_free(buff);
60 }
61
62 /* only used after the format using: we suppose that the buffer is big enough to display our data */
63 #define check_overflow \
64   if (p-ev->buffer > XBT_LOG_BUFF_SIZE) { /* buffer overflow */ \
65   xbt_log_layout_simple_dynamic(l,ev,fmt,app); \
66   return; \
67   }
68
69 static void xbt_log_layout_simple_doit(xbt_log_layout_t l,
70                                        xbt_log_event_t ev,
71                                        const char *fmt,
72                                        xbt_log_appender_t app)
73 {
74   char *p;
75
76   xbt_assert0(ev->priority >= 0,
77               "Negative logging priority naturally forbidden");
78   xbt_assert1(ev->priority < sizeof(xbt_log_priority_names),
79               "Priority %d is greater than the biggest allowed value",
80               ev->priority);
81
82   if (begin_of_time < 0)
83     begin_of_time = gras_os_time();
84
85   p = ev->buffer;
86   p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "[");
87   check_overflow;
88
89   /* Display the proc info if available */
90   if (strlen(xbt_procname())) {
91     p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%s:%s:(%d) ",
92                   gras_os_myname(), xbt_procname(), (*xbt_getpid) ());
93     check_overflow;
94   }
95
96   /* Display the date */
97   p +=
98     snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%f] ",
99              gras_os_time() - begin_of_time);
100   check_overflow;
101
102   /* Display file position if not INFO */
103   if (ev->priority != xbt_log_priority_info)
104     p +=
105       snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%s:%d: ",
106                ev->fileName, ev->lineNum);
107
108   /* Display category name */
109   p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "[%s/%s] ",
110                 ev->cat->name, xbt_log_priority_names[ev->priority]);
111
112   /* Display user-provided message */
113   p += vsnprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), fmt, ev->ap);
114   check_overflow;
115
116   /* End it */
117   p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "\n");
118   check_overflow;
119   app->do_append(app, ev->buffer);
120 }
121
122 xbt_log_layout_t xbt_log_layout_simple_new(char *arg)
123 {
124   xbt_log_layout_t res = xbt_new0(s_xbt_log_layout_t, 1);
125   res->do_layout = xbt_log_layout_simple_doit;
126   return res;
127 }