mirror of
https://github.com/openharmony/ace_ace_engine.git
synced 2026-07-01 21:14:03 -04:00
123 lines
3.9 KiB
C++
123 lines
3.9 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef FOUNDATION_ACE_FRAMEWORKS_BASE_LOG_LOG_WRAPPER_H
|
|
#define FOUNDATION_ACE_FRAMEWORKS_BASE_LOG_LOG_WRAPPER_H
|
|
|
|
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
#include "base/utils/macros.h"
|
|
|
|
#define PRINT_LOG(level, fmt, ...) \
|
|
do { \
|
|
if (OHOS::Ace::LogWrapper::JudgeLevel(OHOS::Ace::LogLevel::level)) { \
|
|
OHOS::Ace::LogWrapper::PrintLog(OHOS::Ace::LogDomain::FRAMEWORK, OHOS::Ace::LogLevel::level, \
|
|
"[%{private}-20s(%{private}s)] " fmt, OHOS::Ace::LogWrapper::GetBriefFileName(__FILE__), \
|
|
__FUNCTION__, ##__VA_ARGS__); \
|
|
} \
|
|
} while (0)
|
|
|
|
#ifdef ACE_DEBUG
|
|
#define LOGD(fmt, ...) PRINT_LOG(DEBUG, fmt, ##__VA_ARGS__)
|
|
#else
|
|
#define LOGD(fmt, ...)
|
|
#endif
|
|
|
|
#define LOGI(fmt, ...) PRINT_LOG(INFO, fmt, ##__VA_ARGS__)
|
|
#define LOGW(fmt, ...) PRINT_LOG(WARN, fmt, ##__VA_ARGS__)
|
|
#define LOGE(fmt, ...) PRINT_LOG(ERROR, fmt, ##__VA_ARGS__)
|
|
#define LOGF(fmt, ...) PRINT_LOG(FATAL, fmt, ##__VA_ARGS__)
|
|
|
|
#define PRINT_APP_LOG(level, fmt, ...) \
|
|
OHOS::Ace::LogWrapper::PrintLog(OHOS::Ace::LogDomain::JS_APP, OHOS::Ace::LogLevel::level, fmt, ##__VA_ARGS__)
|
|
|
|
#define APP_LOGD(fmt, ...) PRINT_APP_LOG(DEBUG, fmt, ##__VA_ARGS__)
|
|
#define APP_LOGI(fmt, ...) PRINT_APP_LOG(INFO, fmt, ##__VA_ARGS__)
|
|
#define APP_LOGW(fmt, ...) PRINT_APP_LOG(WARN, fmt, ##__VA_ARGS__)
|
|
#define APP_LOGE(fmt, ...) PRINT_APP_LOG(ERROR, fmt, ##__VA_ARGS__)
|
|
#define APP_LOGF(fmt, ...) PRINT_APP_LOG(FATAL, fmt, ##__VA_ARGS__)
|
|
|
|
namespace OHOS::Ace {
|
|
|
|
enum class LogDomain : uint32_t {
|
|
FRAMEWORK = 0,
|
|
JS_APP,
|
|
};
|
|
|
|
enum class LogLevel : uint32_t {
|
|
DEBUG = 0,
|
|
INFO,
|
|
WARN,
|
|
ERROR,
|
|
FATAL,
|
|
};
|
|
|
|
class ACE_EXPORT LogWrapper final {
|
|
public:
|
|
static bool JudgeLevel(LogLevel level)
|
|
{
|
|
return level_ <= level;
|
|
}
|
|
|
|
static void SetLogLevel(LogLevel level)
|
|
{
|
|
level_ = level;
|
|
}
|
|
|
|
static LogLevel GetLogLevel()
|
|
{
|
|
return level_;
|
|
}
|
|
|
|
static const char* GetBriefFileName(const char* name)
|
|
{
|
|
static const char separator = GetSeparatorCharacter();
|
|
const char* p = strrchr(name, separator);
|
|
return p != nullptr ? p + 1 : name;
|
|
}
|
|
|
|
static void StripFormatString(const std::string& prefix, std::string& str)
|
|
{
|
|
for (auto pos = str.find(prefix, 0); pos != std::string::npos; pos = str.find(prefix, pos)) {
|
|
str.erase(pos, prefix.size());
|
|
}
|
|
}
|
|
|
|
static void PrintLog(LogDomain domain, LogLevel level, const char* fmt, ...)
|
|
__attribute__((__format__(os_log, 3, 4)))
|
|
{
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
PrintLog(domain, level, fmt, args);
|
|
va_end(args);
|
|
}
|
|
|
|
// MUST implement these interface on each platform.
|
|
static char GetSeparatorCharacter();
|
|
static void PrintLog(LogDomain domain, LogLevel level, const char* fmt, va_list args);
|
|
|
|
private:
|
|
LogWrapper() = delete;
|
|
~LogWrapper() = delete;
|
|
|
|
static LogLevel level_;
|
|
};
|
|
|
|
} // namespace OHOS::Ace
|
|
|
|
#endif // FOUNDATION_ACE_FRAMEWORKS_BASE_LOG_LOG_WRAPPER_H
|