1dd4c2d5dcf128e8bac549f74ad4d41b7d191952
[platform/core/test/security-tests.git] / tests / framework / include / dpl / log / dlog_log_provider.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        dlog_log_provider.h
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of DLOG log provider
21  */
22 #ifndef DPL_DLOG_LOG_PROVIDER_H
23 #define DPL_DLOG_LOG_PROVIDER_H
24
25 #include <dpl/log/abstract_log_provider.h>
26 #include <dpl/scoped_free.h>
27 #include <string>
28
29 namespace DPL {
30 namespace Log {
31 class DLOGLogProvider :
32     public AbstractLogProvider
33 {
34   private:
35     DPL::ScopedFree<char> m_tag;
36
37     static std::string FormatMessage(const char *message,
38                                      const char *filename,
39                                      int line,
40                                      const char *function);
41
42   public:
43     DLOGLogProvider();
44     virtual ~DLOGLogProvider();
45
46     virtual void Debug(const char *message,
47                        const char *fileName,
48                        int line,
49                        const char *function);
50     virtual void Info(const char *message,
51                       const char *fileName,
52                       int line,
53                       const char *function);
54     virtual void Warning(const char *message,
55                          const char *fileName,
56                          int line,
57                          const char *function);
58     virtual void Error(const char *message,
59                        const char *fileName,
60                        int line,
61                        const char *function);
62     virtual void Pedantic(const char *message,
63                           const char *fileName,
64                           int line,
65                           const char *function);
66
67     // Set global Tag according to DLOG
68     void SetTag(const char *tag);
69 };
70 }
71 } // namespace DPL
72
73 #endif // DPL_DLOG_LOG_PROVIDER_H