• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef ARKCOMPILER_TOOLCHAIN_INSPECTOR_LOG_WRAPPER_H
17 #define ARKCOMPILER_TOOLCHAIN_INSPECTOR_LOG_WRAPPER_H
18 
19 #if defined(ENABLE_HILOG)
20 #include "hilog/log.h"
21 #endif
22 
23 namespace OHOS::ArkCompiler::Toolchain {
24 #ifdef LOGF
25 #undef LOGF
26 #endif
27 #ifdef LOGE
28 #undef LOGE
29 #endif
30 #ifdef LOGW
31 #undef LOGW
32 #endif
33 #ifdef LOGI
34 #undef LOGI
35 #endif
36 #ifdef LOGD
37 #undef LOGD
38 #endif
39 
40 #if !defined(ENABLE_HILOG)
41 enum class LogLevel {
42     UNKNOWN,
43     DEFAULT,
44     VERBOSE,
45     DEBUG,
46     INFO,
47     WARN,
48     ERROR,
49     FATAL
50 };
51 class StdLog {
52 public:
53     StdLog() = default;
54     ~StdLog() = default;
55 
56     static void PrintLog(LogLevel level, const char* fmt, ...);
57 };
58 #else
59 static constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {
60     LOG_CORE,
61     0xD003F00,
62     "ArkCompiler"
63 };
64 #endif
65 
66 #pragma clang diagnostic push
67 #pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
68 #if !defined(ENABLE_HILOG)
69 #define LOGF(fmt, ...) StdLog::PrintLog(LogLevel::FATAL, fmt, ##__VA_ARGS__)
70 #define LOGE(fmt, ...) StdLog::PrintLog(LogLevel::ERROR, fmt, ##__VA_ARGS__)
71 #define LOGW(fmt, ...) StdLog::PrintLog(LogLevel::WARN, fmt, ##__VA_ARGS__)
72 #define LOGI(fmt, ...) StdLog::PrintLog(LogLevel::INFO, fmt, ##__VA_ARGS__)
73 #define LOGD(fmt, ...) StdLog::PrintLog(LogLevel::DEBUG, fmt, ##__VA_ARGS__)
74 #else
75 #define LOGF(fmt, ...) OHOS::HiviewDFX::HiLog::Fatal(LABEL, fmt, ##__VA_ARGS__)
76 #define LOGE(fmt, ...) OHOS::HiviewDFX::HiLog::Error(LABEL, fmt, ##__VA_ARGS__)
77 #define LOGW(fmt, ...) OHOS::HiviewDFX::HiLog::Warn(LABEL, fmt, ##__VA_ARGS__)
78 #define LOGI(fmt, ...) OHOS::HiviewDFX::HiLog::Info(LABEL, fmt, ##__VA_ARGS__)
79 #define LOGD(fmt, ...) OHOS::HiviewDFX::HiLog::Debug(LABEL, fmt, ##__VA_ARGS__)
80 #endif
81 #pragma clang diagnostic pop
82 } // namespace OHOS::ArkCompiler::Toolchain
83 #endif // ARKCOMPILER_TOOLCHAIN_INSPECTOR_LOG_WRAPPER_H
84