summaryrefslogtreecommitdiff
path: root/src/util/output.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-11-24 21:03:35 +0000
committerMorgan Deters <mdeters@gmail.com>2009-11-24 21:03:35 +0000
commit811158832b74e3b101af2c7473f4e11a41377dd4 (patch)
tree07c55ab126dd7eb24239b615c987a490b182c8a6 /src/util/output.h
parentf6968899de4d27c5bc986c3ac89972fbbe35c361 (diff)
configure option adjustments as per 11/24 meeting; various fixes and improvements
Diffstat (limited to 'src/util/output.h')
-rw-r--r--src/util/output.h135
1 files changed, 135 insertions, 0 deletions
diff --git a/src/util/output.h b/src/util/output.h
new file mode 100644
index 000000000..4d3752849
--- /dev/null
+++ b/src/util/output.h
@@ -0,0 +1,135 @@
+/********************* -*- C++ -*- */
+/** output.h
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009 The Analysis of Computer Systems Group (ACSys)
+ ** Courant Institute of Mathematical Sciences
+ ** New York University
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.
+ **
+ ** Output utility classes and functions.
+ **/
+
+#ifndef __CVC4__OUTPUT_H
+#define __CVC4__OUTPUT_H
+
+#include <iostream>
+#include <string>
+#include <set>
+#include "util/exception.h"
+
+namespace CVC4 {
+
+
+class Debug {
+ std::set<std::string> d_tags;
+ std::ostream &d_out;
+
+public:
+ static void operator()(const char* tag, const char*);
+ static void operator()(const char* tag, std::string);
+ static void operator()(string tag, const char*);
+ static void operator()(string tag, std::string);
+
+ static void printf(const char* tag, const char* fmt, ...) __attribute__ ((format(printf, 2, 3)));
+ static void printf(const char* tag, std::string fmt, ...) __attribute__ ((format(printf, 2, 3)));
+ static void printf(std::string tag, const char* fmt, ...) __attribute__ ((format(printf, 2, 3)));
+ static void printf(std::string tag, std::string fmt, ...) __attribute__ ((format(printf, 2, 3)));
+
+ static std::ostream& operator()(const char* tag);
+ static std::ostream& operator()(std::string tag);
+
+ static void on (const char* tag) { d_tags.insert(std::string(tag)); };
+ static void on (std::string tag) { d_tags.insert(tag); };
+ static void off(const char* tag) { d_tags.erase (std::string(tag)); };
+ static void off(std::string tag) { d_tags.erase (tag); };
+
+ static void setStream(std::ostream& os) { d_out = os; }
+};/* class Debug */
+
+
+class Warning {
+ std::ostream &d_out;
+
+public:
+ static void operator()(const char*);
+ static void operator()(std::string);
+
+ static void printf(const char* fmt, ...) __attribute__ ((format(printf, 2, 3)));
+ static void printf(std::string fmt, ...) __attribute__ ((format(printf, 2, 3)));
+
+ static std::ostream& operator()();
+
+ static void setStream(std::ostream& os) { d_out = os; }
+};/* class Warning */
+
+
+class Notice {
+ std::ostream &d_os;
+
+public:
+ static void operator()(const char*);
+ static void operator()(std::string);
+
+ static void printf(const char* fmt, ...) __attribute__ ((format(printf, 2, 3)));
+ static void printf(std::string fmt, ...) __attribute__ ((format(printf, 2, 3)));
+
+ static std::ostream& operator()();
+
+ static void setStream(std::ostream& os) { d_out = os; }
+};/* class Notice */
+
+
+class Chat {
+ std::ostream &d_os;
+
+public:
+ static void operator()(const char*);
+ static void operator()(std::string);
+
+ static void printf(const char* fmt, ...) __attribute__ ((format(printf, 2, 3)));
+ static void printf(std::string fmt, ...) __attribute__ ((format(printf, 2, 3)));
+
+ static std::ostream& operator()();
+
+ static void setStream(std::ostream& os) { d_out = os; }
+};/* class Chat */
+
+
+class Trace {
+ std::ostream &d_os;
+
+public:
+ static void operator()(const char* tag, const char*);
+ static void operator()(const char* tag, std::string);
+ static void operator()(string tag, const char*);
+ static void operator()(string tag, std::string);
+
+ static void printf(const char* tag, const char* fmt, ...) __attribute__ ((format(printf, 2, 3))) {
+ va_list vl;
+ va_start(vl, fmt);
+ vfprintf(buf, 1024, fmt, vl);
+ va_end(vl);
+ }
+ static void printf(const char* tag, std::string fmt, ...) __attribute__ ((format(printf, 2, 3))) {
+ }
+ static void printf(std::string tag, const char* fmt, ...) __attribute__ ((format(printf, 2, 3))) {
+ }
+ static void printf(std::string tag, std::string fmt, ...) __attribute__ ((format(printf, 2, 3))) {
+ }
+
+ static std::ostream& operator()(const char* tag);
+ static std::ostream& operator()(std::string tag);
+
+ static void on (const char* tag) { d_tags.insert(std::string(tag)); };
+ static void on (std::string tag) { d_tags.insert(tag); };
+ static void off(const char* tag) { d_tags.erase (std::string(tag)); };
+ static void off(std::string tag) { d_tags.erase (tag); };
+
+ static void setStream(std::ostream& os) { d_out = os; }
+};/* class Trace */
+
+
+}/* CVC4 namespace */
+
+#endif /* __CVC4__OUTPUT_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback