arkcompiler_ets_runtime/ecmascript/log.h
yingguofeng@huawei.com 81305f6a64 fix(dfx): xts failed caused log debug level modified bugfix
Closes #I5OM3Y

Change-Id: I257c4c59f9c5df65e8835465ef6b16fad0eab12b
Signed-off-by: yingguofeng@huawei.com <yingguofeng@huawei.com>
2022-08-29 16:36:08 +08:00

164 lines
4.3 KiB
C++

/*
* Copyright (c) 2022 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 ECMASCRIPT_LOG_H
#define ECMASCRIPT_LOG_H
#include <cstdint>
#include <iostream>
#include <sstream>
#include "ecmascript/common.h"
#ifdef ENABLE_HILOG
#include "hilog/log.h"
constexpr static unsigned int ARK_DOMAIN = 0xD003F00;
constexpr static auto TAG = "ArkCompiler";
constexpr static OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, ARK_DOMAIN, TAG};
#if ECMASCRIPT_ENABLE_VERBOSE_LEVEL_LOG
// print Debug level log if enable Verbose log
#define LOG_VERBOSE LOG_DEBUG
#else
#define LOG_VERBOSE LOG_LEVEL_MIN
#endif
#endif // ENABLE_HILOG
enum Level {
VERBOSE,
DEBUG,
INFO,
WARN,
ERROR,
FATAL,
};
namespace panda::ecmascript {
class JSRuntimeOptions;
class PUBLIC_API Log {
public:
static void Initialize(const JSRuntimeOptions &options);
static Level GetLevel()
{
return level_;
}
static void SetLevel(Level level)
{
level_ = level;
}
private:
static void SetLogLevelFromString(const std::string& level);
static Level level_;
};
#ifdef ENABLE_HILOG
template<LogLevel level>
class HiLog {
public:
HiLog() = default;
~HiLog()
{
if constexpr (level == LOG_LEVEL_MIN) {
// print nothing
} else if constexpr (level == LOG_DEBUG) {
OHOS::HiviewDFX::HiLog::Debug(LABEL, "%{public}s", stream_.str().c_str());
} else if constexpr (level == LOG_INFO) {
OHOS::HiviewDFX::HiLog::Info(LABEL, "%{public}s", stream_.str().c_str());
} else if constexpr (level == LOG_WARN) {
OHOS::HiviewDFX::HiLog::Warn(LABEL, "%{public}s", stream_.str().c_str());
} else if constexpr (level == LOG_ERROR) {
OHOS::HiviewDFX::HiLog::Error(LABEL, "%{public}s", stream_.str().c_str());
} else {
OHOS::HiviewDFX::HiLog::Fatal(LABEL, "%{public}s", stream_.str().c_str());
std::abort();
}
}
template<class type>
std::ostream &operator <<(type input)
{
stream_ << input;
return stream_;
}
private:
std::ostringstream stream_;
};
#endif // ENABLE_HILOG
template<Level level>
class StdLog {
public:
StdLog() = default;
~StdLog()
{
std::cerr << stream_.str().c_str() << std::endl;
if constexpr (level == FATAL) {
std::abort();
}
}
template<class type>
std::ostream &operator <<(type input)
{
stream_ << input;
return stream_;
}
private:
std::ostringstream stream_;
};
#ifdef PANDA_TARGET_ANDROID
template<Level level>
class PUBLIC_API AndroidLog {
public:
AndroidLog() = default;
~AndroidLog();
template<class type>
std::ostream &operator <<(type input)
{
stream_ << input;
return stream_;
}
private:
std::ostringstream stream_;
};
#endif
#ifdef ENABLE_HILOG
#if ECMASCRIPT_ENABLE_VERBOSE_LEVEL_LOG
static bool LOGGABLE_VERBOSE = HiLogIsLoggable(ARK_DOMAIN, TAG, LOG_VERBOSE);
#else
static bool LOGGABLE_VERBOSE = false;
#endif
static bool LOGGABLE_DEBUG = HiLogIsLoggable(ARK_DOMAIN, TAG, LOG_DEBUG);
static bool LOGGABLE_INFO = HiLogIsLoggable(ARK_DOMAIN, TAG, LOG_INFO);
static bool LOGGABLE_WARN = HiLogIsLoggable(ARK_DOMAIN, TAG, LOG_WARN);
static bool LOGGABLE_ERROR = HiLogIsLoggable(ARK_DOMAIN, TAG, LOG_ERROR);
static bool LOGGABLE_FATAL = HiLogIsLoggable(ARK_DOMAIN, TAG, LOG_FATAL);
#define LOG_ECMA(level) panda::ecmascript::LOGGABLE_##level && panda::ecmascript::HiLog<LOG_##level>()
#elif defined(PANDA_TARGET_ANDROID)
#define LOG_ECMA(level) panda::ecmascript::AndroidLog<(level)>()
#else
#define LOG_ECMA(level) ((level) >= panda::ecmascript::Log::GetLevel()) && panda::ecmascript::StdLog<(level)>()
#endif
} // namespace panda::ecmascript
#endif // ECMASCRIPT_LOG_H