summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Backends/NetworkLogger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/Backends/NetworkLogger.h')
-rw-r--r--src/Daemon/Backends/NetworkLogger.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/Daemon/Backends/NetworkLogger.h b/src/Daemon/Backends/NetworkLogger.h
new file mode 100644
index 0000000..b2895d2
--- /dev/null
+++ b/src/Daemon/Backends/NetworkLogger.h
@@ -0,0 +1,51 @@
+/*
+ * NetworkLogger.h
+ *
+ * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.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_DAEMON_BACKENDS_NETWORKLOGGER_H_
+#define MAD_DAEMON_BACKENDS_NETWORKLOGGER_H_
+
+#include <Common/Logger.h>
+#include <Common/RequestManager.h>
+#include <Daemon/Requests/LogRequest.h>
+#include <Net/Connection.h>
+
+namespace Mad {
+namespace Daemon {
+namespace Backends {
+
+class NetworkLogger : public Common::Logger {
+ private:
+ Net::Connection *connection;
+
+ protected:
+ virtual void logMessage(Common::Logger::MessageCategory category, Common::Logger::MessageLevel level, const std::string &message) {
+ Common::RequestManager::getRequestManager()->sendRequest(connection,
+ std::auto_ptr<Common::RequestBase>(new Requests::LogRequest(category, level, message, Requests::LogRequest::slot_type()))
+ );
+ }
+
+ public:
+ NetworkLogger(Net::Connection *connection0) : connection(connection0) {}
+};
+
+}
+}
+}
+
+#endif /* MAD_DAEMON_BACKENDS_NETWORKLOGGER_H_ */