Changed header includes.
[cacao.git] / src / toolbox / logging.h
1 /* src/toolbox/logging.h - contains logging functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28
29    Changes: Christan Thalinger
30
31    $Id: logging.h 2128 2005-03-29 22:25:59Z twisti $
32
33 */
34
35
36 #ifndef _LOGGING_H
37 #define _LOGGING_H
38
39 #include <stdio.h>
40
41 #include "config.h"
42 #include "vm/class.h"
43 #include "vm/method.h"
44 #include "vm/utf8.h"
45
46
47 #define MAXLOGTEXT 500
48
49 /* function prototypes ********************************************************/
50
51 void log_init(const char *fname);
52 void log_text(const char *txt);
53
54 /* same as log_text without "LOG: " and newline */
55 void log_plain(const char *txt);
56
57 /* fflush logfile */
58 void log_flush(void);
59
60 /* newline and fflush */
61 void log_nl(void);
62
63 #if defined(STATISTICS)
64 void log_cputime(void);
65 #endif
66
67 void log_message_class(const char *msg, classinfo *c);
68 void log_message_method(const char *msg, methodinfo *m);
69
70 void dolog(const char *txt, ...);
71
72 /* same as dolog without "LOG: " and newline*/
73 void dolog_plain(const char *txt, ...);
74
75 void error(const char *txt, ...);
76
77 /* XXX this is just a quick hack on darwin */
78 #if !defined(__DARWIN__)
79 void panic(const char *txt);
80 #endif
81
82 FILE *get_logfile(void);                        /* return the current logfile */
83
84 /* write utf symbol to logfile/stdout */
85 void log_utf(utf *u);
86 void log_plain_utf(utf *u);
87
88 #endif /* _LOGGING_H */
89
90
91 /*
92  * These are local overrides for various environment variables in Emacs.
93  * Please do not remove this and leave it at the end of the file, where
94  * Emacs will automagically detect them.
95  * ---------------------------------------------------------------------
96  * Local variables:
97  * mode: c
98  * indent-tabs-mode: t
99  * c-basic-offset: 4
100  * tab-width: 4
101  * End:
102  */