Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabi <galim120@bezeqint.net>2014-10-31 02:13:27 +0300
committergabi <galim120@bezeqint.net>2014-10-31 02:13:27 +0300
commitc7b8c762fbeb7db011aea264254066c01eab5ab3 (patch)
treec7ba62b8403995f10ee9e9a0eb4b0df64dc6d728 /include/spdlog/formatter.h
parentcbddc8796a7ff5ceb903d27fe61ccd95d1166fcc (diff)
spdlog
Diffstat (limited to 'include/spdlog/formatter.h')
-rw-r--r--include/spdlog/formatter.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/spdlog/formatter.h b/include/spdlog/formatter.h
new file mode 100644
index 00000000..8575c073
--- /dev/null
+++ b/include/spdlog/formatter.h
@@ -0,0 +1,33 @@
+#pragma once
+
+#include "details/log_msg.h"
+namespace spdlog
+{
+namespace details {
+class flag_formatter;
+}
+
+class formatter
+{
+public:
+ virtual ~formatter() {}
+ virtual void format(details::log_msg& msg) = 0;
+};
+
+class pattern_formatter : public formatter
+{
+
+public:
+ explicit pattern_formatter(const std::string& pattern);
+ pattern_formatter(const pattern_formatter&) = delete;
+ void format(details::log_msg& msg) override;
+private:
+ const std::string _pattern;
+ std::vector<std::unique_ptr<details::flag_formatter>> _formatters;
+ void handle_flag(char flag);
+ void compile_pattern(const std::string& pattern);
+};
+}
+
+#include "details/pattern_formatter_impl.h"
+