More diagnostics for close
[metaproxy-moved-to-github.git] / src / filter_log.hpp
index 84d1491..c8d3f85 100644 (file)
@@ -1,3 +1,8 @@
+/* $Id: filter_log.hpp,v 1.6 2005-10-25 11:48:30 adam Exp $
+   Copyright (c) 2005, Index Data.
+
+%LICENSE%
+ */
 
 #ifndef FILTER_LOG_HPP
 #define FILTER_LOG_HPP
 
 #include "filter.hpp"
 
+#include <boost/thread/mutex.hpp>
+
+
 namespace yp2 {
-    class FilterLog : public yp2::Filter {
-    public:
-       FilterLog::FilterLog();
-       void process(yp2::Package & package) const;
-    };
+    namespace filter {
+        class Log : public Base {
+        public:
+            Log();
+            void process(yp2::Package & package) const;
+            void set_prefix(const std::string &msg);
+        private:
+            /// static mutex to lock Ostream during logging operation
+            static boost::mutex m_log_mutex;
+            std::string m_msg;
+        };
+    }
 }
 
 #endif
@@ -20,6 +35,7 @@ namespace yp2 {
  * Local variables:
  * c-basic-offset: 4
  * indent-tabs-mode: nil
+ * c-file-style: "stroustrup"
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab
  */