Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4165fc728e001932bd207c7a1f7ef66da1f09952
[simgrid.git] / src / xbt / xbt_log_layout_simple.c
1 /* $Id: xbt_log_layout_simple.c 6309 2009-05-26 15:29:22Z mquinson $ */
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[8];
20 extern int xbt_log_no_loc;
21
22 static double simple_begin_of_time = -1;
23
24 static void xbt_log_layout_simple_dynamic(xbt_log_layout_t l,
25                                           xbt_log_event_t ev,
26                                           const char *fmt,
27                                           xbt_log_appender_t app)
28 {
29   xbt_strbuff_t buff = xbt_strbuff_new();
30   char loc_buff[256];
31   char *p;
32
33   /* Put every static information in a static buffer, and copy them in the dyn one */
34   p = loc_buff;
35   p += snprintf(p, 256 - (p - loc_buff), "[");
36
37   if (strlen(xbt_procname()))
38     p += snprintf(p, 256 - (p - loc_buff), "%s:%s:(%d) ",
39                   gras_os_myname(), xbt_procname(), (*xbt_getpid) ());
40   p +=
41     snprintf(p, 256 - (p - loc_buff), "%f] ",
42              gras_os_time() - simple_begin_of_time);
43   if (ev->priority != xbt_log_priority_info && xbt_log_no_loc==0)
44     p +=
45       snprintf(p, 256 - (p - loc_buff), "%s:%d: ", ev->fileName,
46                ev->lineNum);
47   p +=
48     snprintf(p, 256 - (p - loc_buff), "[%s/%s] ", ev->cat->name,
49              xbt_log_priority_names[ev->priority]);
50
51   xbt_strbuff_append(buff, loc_buff);
52
53   vasprintf(&p, fmt, ev->ap_copy);
54   xbt_strbuff_append(buff, p);
55   free(p);
56
57   xbt_strbuff_append(buff, "\n");
58
59   app->do_append(app, buff->data);
60   xbt_strbuff_free(buff);
61 }
62
63 /* only used after the format using: we suppose that the buffer is big enough to display our data */
64 #undef check_overflow
65 #define check_overflow \
66   if (p-ev->buffer > XBT_LOG_BUFF_SIZE) { /* buffer overflow */ \
67   xbt_log_layout_simple_dynamic(l,ev,fmt,app); \
68   return; \
69   }
70
71 static void xbt_log_layout_simple_doit(xbt_log_layout_t l,
72                                        xbt_log_event_t ev,
73                                        const char *fmt,
74                                        xbt_log_appender_t app)
75 {
76   char *p;
77
78   xbt_assert0(ev->priority >= 0,
79               "Negative logging priority naturally forbidden");
80   xbt_assert1(ev->priority < sizeof(xbt_log_priority_names),
81               "Priority %d is greater than the biggest allowed value",
82               ev->priority);
83
84   if (simple_begin_of_time < 0)
85     simple_begin_of_time = gras_os_time();
86
87   p = ev->buffer;
88   p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "[");
89   check_overflow;
90
91   /* Display the proc info if available */
92   if (strlen(xbt_procname())) {
93     p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%s:%s:(%d) ",
94                   gras_os_myname(), xbt_procname(), (*xbt_getpid) ());
95     check_overflow;
96   }
97
98   /* Display the date */
99   p +=
100     snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%f] ",
101              gras_os_time() - simple_begin_of_time);
102   check_overflow;
103
104   /* Display file position if not INFO */
105   if (ev->priority != xbt_log_priority_info && !xbt_log_no_loc)
106     p +=
107       snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%s:%d: ",
108                ev->fileName, ev->lineNum);
109
110   /* Display category name */
111   p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "[%s/%s] ",
112                 ev->cat->name, xbt_log_priority_names[ev->priority]);
113
114   /* Display user-provided message */
115   p += vsnprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), fmt, ev->ap);
116   check_overflow;
117
118   /* End it */
119   p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "\n");
120   check_overflow;
121   app->do_append(app, ev->buffer);
122 }
123
124 xbt_log_layout_t xbt_log_layout_simple_new(char *arg)
125 {
126   xbt_log_layout_t res = xbt_new0(s_xbt_log_layout_t, 1);
127   res->do_layout = xbt_log_layout_simple_doit;
128   return res;
129 }