* src/toolbox/tree.c: Removed.
[cacao.git] / src / toolbox / logging.h
index bde9f78b9f1fbb8f90719ffeeec554e596b49a06..bcf2e65389eb0037c7f7fe153f9899043c758b0d 100644 (file)
@@ -1,10 +1,7 @@
-/* toolbox/logging.h - contains logging functions
+/* src/toolbox/logging.h - contains logging functions
 
-   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   Institut f. Computersprachen, TU Wien
-   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
-   S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
-   J. Wenninger
+   Copyright (C) 1996-2005, 2006, 2007, 2008
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
-
-   Contact: cacao@complang.tuwien.ac.at
-
-   Authors: Reinhard Grafl
-
-   $Id: logging.h 1245 2004-06-30 20:15:25Z twisti $
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
 */
 
 #ifndef _LOGGING_H
 #define _LOGGING_H
 
+#include "config.h"
+
 #include <stdio.h>
+#include <stdarg.h>
+
+#include "vm/class.h"
+#include "vm/method.h"
+#include "vm/utf8.h"
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
-/* This is to bring in the conflicting panic from darwin */
-#include <sys/mman.h>
-/*  #define panic cacao_panic */
+/* function prototypes ********************************************************/
 
-#define PANICIF(when,txt)  if(when)panic(txt)
+void log_init(const char *fname);
 
-#define MAXLOGTEXT 500
+void log_start(void);
 
-/* function prototypes */
+void log_vprint(const char *text, va_list ap);
+void log_print(const char *text, ...);
+void log_println(const char *text, ...);
 
-void log_init(char *fname);
-void log_text(char *txt);
-void log_plain(char *txt); /* same as log_text without "LOG: " and newline */
-void log_flush();          /* fflush logfile */
-void log_nl();             /* newline and fflush */
+void log_finish(void);
 
-void log_cputime();
 
-void log_message_class(char *msg, classinfo *c);
-void log_message_method(char *msg, methodinfo *m);
+/* log message functions */
+void log_message_utf(const char *msg, utf *u);
+void log_message_class(const char *msg, classinfo *c);
+void log_message_class_message_class(const char *msg1, classinfo *c1,
+                                                                        const char *msg2, classinfo *c2);
+void log_message_method(const char *msg, methodinfo *m);
 
-void dolog(char *txt, ...);
-void dolog_plain(char *txt, ...); /* same as dolog without "LOG: " and newline */
-void error(char *txt, ...);
-void panic(char *txt);
+#define log_text(s) log_println("%s", (s))
+#define dolog log_println
 
-FILE *get_logfile(); /* return the current logfile */
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* _LOGGING_H */