Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics and fix ugly bug in windows code
[simgrid.git] / src / xbt / xbt_log_appender_file.c
1 /* file_appender - a dumb log appender which simply prints to a file        */
2
3 /* Copyright (c) 2007-2012. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "xbt/sysdep.h"
9 #include "xbt/log_private.h"
10 #ifdef HAVE_SMPI
11 #include "smpi/private.h" // to access bench_begin/end. Not ultraclean, I confess
12 #endif
13 #include <stdio.h>
14
15 static void append_file(xbt_log_appender_t this_, char *str) {
16   fputs(str, (FILE *) this_->data);
17 }
18
19 static void smpi_append_file(xbt_log_appender_t this_, char *str) {
20   fputs(str, (FILE *) this_->data);
21 }
22
23 static void free_(xbt_log_appender_t this_) {
24   if (this_->data != stderr)
25     fclose(this_->data);
26 }
27
28 #ifdef HAVE_SMPI
29 void __smpi_bench_dont (void); // Stupid prototype
30 void __smpi_bench_dont (void) { /* I'm only a place-holder in case we link without SMPI */; }
31 void smpi_bench_begin(void) __attribute__ ((weak, alias ("__smpi_bench_dont")));
32 void smpi_bench_end(void)   __attribute__ ((weak, alias ("__smpi_bench_dont")));
33 #endif
34
35 XBT_LOG_EXTERNAL_CATEGORY(smpi); // To detect if SMPI is inited
36
37 xbt_log_appender_t xbt_log_appender_file_new(char *arg) {
38
39   xbt_log_appender_t res = xbt_new0(s_xbt_log_appender_t, 1);
40   if (_XBT_LOGV(smpi).initialized) // HACK to detect if we run in SMPI mode. Relies on MAIN__ source disposition
41     res->do_append = smpi_append_file;
42   else
43     res->do_append = append_file;
44   res->free_ = free_;
45   if (arg)
46     res->data = (void *) fopen(arg, "w");
47   else
48     res->data = (void *) stderr;
49   return res;
50 }