Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I should stop coding at night -- sorry
[simgrid.git] / src / xbt / xbt_log_layout_simple.c
1 /* layout_simple - a dumb log layout                                        */
2
3 /* Copyright (c) 2007-2011. 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/sysdep.h"
10 #include "xbt/strbuff.h"        /* For dynamic version when the static one fails */
11 #include "xbt/log_private.h"
12
13 #include "simgrid/simix.h"      /* SIMIX_host_self_get_name */
14 #include "surf/surf.h"
15 #include <stdio.h>
16 #include "portable.h"
17
18 extern const char *xbt_log_priority_names[8];
19 extern int xbt_log_no_loc;
20
21 static double simple_begin_of_time = -1;
22
23 #define check_overflow(len)                                             \
24   if ((rem_size -= (len)) > 0) {                                        \
25     p += (len);                                                         \
26   } else                                                                \
27     return 0
28
29 static int xbt_log_layout_simple_doit(xbt_log_layout_t l,
30                                       xbt_log_event_t ev,
31                                       const char *fmt)
32 {
33   char *p = ev->buffer;
34   int rem_size = ev->buffer_size;
35   const char *procname;
36   int len;
37
38   *p = '[';
39   check_overflow(1);
40
41   /* Display the proc info if available */
42   procname = xbt_procname();
43   if (procname && *procname) {
44     len = snprintf(p, rem_size, "%s:%s:(%d) ",
45                    SIMIX_host_self_get_name(), procname, xbt_getpid());
46     check_overflow(len);
47   }
48   else if (!procname)  {
49   len = snprintf(p, rem_size, "%s::(%d) ",
50                  SIMIX_host_self_get_name(), xbt_getpid());
51   check_overflow(len);
52   }
53
54   /* Display the date */
55   len = snprintf(p, rem_size, "%f] ",
56                  surf_get_clock() - simple_begin_of_time);
57   check_overflow(len);
58
59   /* Display file position if not INFO */
60   if (ev->priority != xbt_log_priority_info && !xbt_log_no_loc) {
61     len = snprintf(p, rem_size, "%s:%d: ",
62                    ev->fileName, ev->lineNum);
63     check_overflow(len);
64   }
65
66   /* Display category name */
67   len = snprintf(p, rem_size, "[%s/%s] ",
68                  ev->cat->name, xbt_log_priority_names[ev->priority]);
69   check_overflow(len);
70
71   /* Display user-provided message */
72   len = vsnprintf(p, rem_size, fmt, ev->ap);
73   check_overflow(len);
74
75   /* End it */
76   *p = '\n';
77   check_overflow(1);
78   *p = '\0';
79
80   return 1;
81 }
82
83 xbt_log_layout_t xbt_log_layout_simple_new(char *arg)
84 {
85   xbt_log_layout_t res = xbt_new0(s_xbt_log_layout_t, 1);
86   res->do_layout = xbt_log_layout_simple_doit;
87
88   if (simple_begin_of_time < 0)
89     simple_begin_of_time = surf_get_clock();
90
91   return res;
92 }