summaryrefslogtreecommitdiffstats
path: root/src/Common/Backends
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Backends')
-rw-r--r--src/Common/Backends/ConsoleLogger.cpp33
-rw-r--r--src/Common/Backends/ConsoleLogger.h41
-rw-r--r--src/Common/Backends/FileLogger.cpp32
-rw-r--r--src/Common/Backends/FileLogger.h46
-rw-r--r--src/Common/Backends/Makefile.am4
-rw-r--r--src/Common/Backends/Makefile.in9
6 files changed, 160 insertions, 5 deletions
diff --git a/src/Common/Backends/ConsoleLogger.cpp b/src/Common/Backends/ConsoleLogger.cpp
new file mode 100644
index 0000000..180a009
--- /dev/null
+++ b/src/Common/Backends/ConsoleLogger.cpp
@@ -0,0 +1,33 @@
+/*
+ * ConsoleLogger.cpp
+ *
+ * Copyright (C) 2008 Johannes Thorn <dante@g4t3.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ConsoleLogger.h"
+#include <iostream>
+
+namespace Mad {
+namespace Common {
+namespace Backends {
+
+void ConsoleLogger::logMessage(MessageLevel level, const std::string &message) {
+ std::cerr << message << std::endl;
+}
+
+}
+}
+}
diff --git a/src/Common/Backends/ConsoleLogger.h b/src/Common/Backends/ConsoleLogger.h
new file mode 100644
index 0000000..f55d7ba
--- /dev/null
+++ b/src/Common/Backends/ConsoleLogger.h
@@ -0,0 +1,41 @@
+/*
+ * ConsoleLogger.h
+ *
+ * Copyright (C) 2008 Johannes Thorn <dante@g4t3.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MAD_COMMON_BACKENDS_CONSOLELOGGER_H_
+#define MAD_COMMON_BACKENDS_CONSOLELOGGER_H_
+
+#include "../Logger.h"
+
+namespace Mad {
+namespace Common {
+namespace Backends {
+
+class ConsoleLogger : public Logger {
+ protected:
+ virtual void logMessage(MessageLevel level, const std::string &message);
+
+ public:
+ ConsoleLogger() {}
+};
+
+}
+}
+}
+
+#endif /* MAD_COMMON_BACKENDS_CONSOLELOGGER_H_ */
diff --git a/src/Common/Backends/FileLogger.cpp b/src/Common/Backends/FileLogger.cpp
new file mode 100644
index 0000000..079c08c
--- /dev/null
+++ b/src/Common/Backends/FileLogger.cpp
@@ -0,0 +1,32 @@
+/*
+ * FileLogger.cpp
+ *
+ * Copyright (C) 2008 Johannes Thorn <dante@g4t3.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "FileLogger.h"
+
+namespace Mad {
+namespace Common {
+namespace Backends {
+
+void FileLogger::logMessage(MessageLevel level, const std::string &message) {
+ file << message << std::endl;
+}
+
+}
+}
+}
diff --git a/src/Common/Backends/FileLogger.h b/src/Common/Backends/FileLogger.h
new file mode 100644
index 0000000..219a464
--- /dev/null
+++ b/src/Common/Backends/FileLogger.h
@@ -0,0 +1,46 @@
+/*
+ * FileLogger.h
+ *
+ * Copyright (C) 2008 Johannes Thorn <dante@g4t3.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MAD_COMMON_BACKENDS_FILELOGGER_H_
+#define MAD_COMMON_BACKENDS_FILELOGGER_H_
+
+#include "../Logger.h"
+#include <fstream>
+
+namespace Mad {
+namespace Common {
+namespace Backends {
+
+class FileLogger : public Logger {
+ private:
+ std::ofstream file;
+
+ protected:
+ virtual void logMessage(MessageLevel level, const std::string &message);
+
+ public:
+ FileLogger(const std::string &filename)
+ : file(filename.c_str(), std::ios_base::out|std::ios_base::app) {}
+};
+
+}
+}
+}
+
+#endif /* MAD_COMMON_BACKENDS_FILELOGGER_H_ */
diff --git a/src/Common/Backends/Makefile.am b/src/Common/Backends/Makefile.am
index aa705d8..5a6e325 100644
--- a/src/Common/Backends/Makefile.am
+++ b/src/Common/Backends/Makefile.am
@@ -1,5 +1,5 @@
noinst_LTLIBRARIES = libbackends.la
-libbackends_la_SOURCES = SystemBackendProc.cpp
+libbackends_la_SOURCES = ConsoleLogger.cpp FileLogger.cpp SystemBackendProc.cpp
-noinst_HEADERS = SystemBackendProc.h
+noinst_HEADERS = ConsoleLogger.h FileLogger.h SystemBackendProc.h
diff --git a/src/Common/Backends/Makefile.in b/src/Common/Backends/Makefile.in
index 4f684e8..d943c5e 100644
--- a/src/Common/Backends/Makefile.in
+++ b/src/Common/Backends/Makefile.in
@@ -45,7 +45,8 @@ CONFIG_HEADER = $(top_builddir)/src/config.h
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libbackends_la_LIBADD =
-am_libbackends_la_OBJECTS = SystemBackendProc.lo
+am_libbackends_la_OBJECTS = ConsoleLogger.lo FileLogger.lo \
+ SystemBackendProc.lo
libbackends_la_OBJECTS = $(am_libbackends_la_OBJECTS)
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src
depcomp = $(SHELL) $(top_srcdir)/depcomp
@@ -186,8 +187,8 @@ target_alias = @target_alias@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
noinst_LTLIBRARIES = libbackends.la
-libbackends_la_SOURCES = SystemBackendProc.cpp
-noinst_HEADERS = SystemBackendProc.h
+libbackends_la_SOURCES = ConsoleLogger.cpp FileLogger.cpp SystemBackendProc.cpp
+noinst_HEADERS = ConsoleLogger.h FileLogger.h SystemBackendProc.h
all: all-am
.SUFFIXES:
@@ -239,6 +240,8 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConsoleLogger.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FileLogger.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SystemBackendProc.Plo@am__quote@
.cpp.o: