Imported Upstream version 0.1.2
[platform/upstream/snapper.git] / snapper / Logger.h
1 /*
2  * Copyright (c) [2011-2012] Novell, Inc.
3  *
4  * All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of version 2 of the GNU General Public License as published
8  * by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, contact Novell, Inc.
17  *
18  * To contact Novell about this file by physical or electronic mail, you may
19  * find current contact information at www.novell.com.
20  */
21
22
23 #ifndef SNAPPER_LOGGER_H
24 #define SNAPPER_LOGGER_H
25
26 #include <string>
27
28
29 namespace snapper
30 {
31     using std::string;
32
33
34     enum LogLevel { DEBUG, MILESTONE, WARNING, ERROR };
35
36     /*
37      * Called function should be able to split content at newlines.
38      */
39     typedef void (*LogDo)(LogLevel level, const string& component, const char* file, int line,
40                           const char* func, const string& content);
41
42     typedef bool (*LogQuery)(LogLevel level, const string& component);
43
44     void setLogDo(LogDo log_do);
45
46     void setLogQuery(LogQuery log_query);
47
48     void callLogDo(LogLevel level, const string& component, const char* file, int line,
49                    const char* func, const string& text);
50
51     bool callLogQuery(LogLevel level, const string& component);
52
53     void initDefaultLogger();
54
55 }
56
57 #endif