ld_log.h 2.2 KB
Newer Older
W
wangjiahui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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 LD_LOG_H
#define LD_LOG_H

W
wangjiahui 已提交
19 20
#include <musl_log.h>

21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

W
wangjiahui 已提交
25 26 27 28 29
#define LD_LOG_ERROR 1
#define LD_LOG_WARNING 2
#define LD_LOG_INFO 4
#define LD_LOG_DEBUG 8

30
#define LD_LOG_LEVEL (LD_LOG_ERROR | LD_LOG_WARNING | LD_LOG_INFO)
W
wangjiahui 已提交
31

G
ganlan 已提交
32 33
#define LD_LOG_TAG "MUSL-LDSO"

34 35 36
hidden bool get_ld_log_enable();
hidden void ld_log_reset();

O
openharmony_ci 已提交
37 38
hidden bool is_dlclose_debug_enable();

39 40 41 42
#if ((LD_LOG_LEVEL & LD_LOG_ERROR) && (defined(OHOS_ENABLE_PARAMETER) || defined(ENABLE_MUSL_LOG)))
#define LD_LOGE(...) if (get_ld_log_enable()) {   \
    (void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_ERROR, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__);    \
}
W
wangjiahui 已提交
43 44 45 46
#else
#define LD_LOGE(...)
#endif

47 48 49 50
#if ((LD_LOG_LEVEL & LD_LOG_WARNING) && (defined(OHOS_ENABLE_PARAMETER) || defined(ENABLE_MUSL_LOG)))
#define LD_LOGW(...) if (get_ld_log_enable()) {   \
    (void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_WARN, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__); \
}
W
wangjiahui 已提交
51 52 53 54
#else
#define LD_LOGW(...)
#endif

55 56 57 58
#if ((LD_LOG_LEVEL & LD_LOG_INFO) && (defined(OHOS_ENABLE_PARAMETER) || defined(ENABLE_MUSL_LOG)))
#define LD_LOGI(...) if (get_ld_log_enable()) {   \
    (void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_INFO, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__);    \
}
W
wangjiahui 已提交
59 60 61 62
#else
#define LD_LOGI(...)
#endif

63 64 65 66
#if (LD_LOG_LEVEL & LD_LOG_DEBUG) && (defined(OHOS_ENABLE_PARAMETER) || defined(ENABLE_MUSL_LOG))
#define LD_LOGD(...) if (get_ld_log_enable()) {   \
    (void)HiLogAdapterPrint(MUSL_LOG_TYPE, LOG_DEBUG, MUSL_LOG_DOMAIN, LD_LOG_TAG, __VA_ARGS__);    \
}
W
wangjiahui 已提交
67 68 69 70
#else
#define LD_LOGD(...)
#endif

71 72 73 74
#ifdef __cplusplus
}
#endif

W
wangjiahui 已提交
75
#endif  // LD_LOG_H