blob: 03b861f765c34e8c24641a3f540603fe67d59ae4 [file] [log] [blame]
Georgios Pinitas3faea252017-10-30 14:13:50 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2019 Arm Limited.
Georgios Pinitas3faea252017-10-30 14:13:50 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_LOG_H
25#define ARM_COMPUTE_LOG_H
Georgios Pinitas3faea252017-10-30 14:13:50 +000026
27#include "arm_compute/core/utils/logging/Macros.h"
28
Michalis Spyrou7043d362018-12-03 13:58:32 +000029#ifdef ARM_COMPUTE_LOGGING_ENABLED
Georgios Pinitas3faea252017-10-30 14:13:50 +000030/** Create a default core logger
31 *
32 * @note It will eventually create all default loggers in don't exist
33 */
34#define ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER() \
35 do \
36 { \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010037 if (arm_compute::logging::LoggerRegistry::get().logger("CORE") == nullptr) \
Georgios Pinitas3faea252017-10-30 14:13:50 +000038 { \
39 arm_compute::logging::LoggerRegistry::get().create_reserved_loggers(); \
40 } \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010041 } while (false)
Michalis Spyrou7043d362018-12-03 13:58:32 +000042#else /* ARM_COMPUTE_LOGGING_ENABLED */
43#define ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER()
44#endif /* ARM_COMPUTE_LOGGING_ENABLED */
Georgios Pinitas3faea252017-10-30 14:13:50 +000045
46/** Log a message to the core system logger
47 *
48 * @param[in] log_level Logging level
49 * @param[in] msg Message to log
50 */
Anthony Barbier7068f992017-10-26 15:23:08 +010051#define ARM_COMPUTE_LOG_MSG_CORE(log_level, msg) \
52 do \
53 { \
54 ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER(); \
55 ARM_COMPUTE_LOG_MSG("CORE", log_level, msg); \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010056 } while (false)
Georgios Pinitas3faea252017-10-30 14:13:50 +000057
58/** Log a message with format to the core system logger
59 *
60 * @param[in] log_level Logging level
61 * @param[in] fmt String format (printf style)
62 * @param[in] ... Message arguments
63 */
Anthony Barbier7068f992017-10-26 15:23:08 +010064#define ARM_COMPUTE_LOG_MSG_WITH_FORMAT_CORE(log_level, fmt, ...) \
65 do \
66 { \
67 ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER(); \
68 ARM_COMPUTE_LOG_MSG_WITH_FORMAT("CORE", log_level, fmt, __VA_ARGS__); \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010069 } while (false)
Georgios Pinitas3faea252017-10-30 14:13:50 +000070
71/** Log a stream to the core system logger
72 *
73 * @param[in] log_level Logging level
74 * @param[in] ss Stream to log
75 */
Anthony Barbier7068f992017-10-26 15:23:08 +010076#define ARM_COMPUTE_LOG_STREAM_CORE(log_level, ss) \
77 do \
78 { \
79 ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER(); \
80 ARM_COMPUTE_LOG_STREAM("CORE", log_level, ss); \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010081 } while (false)
Georgios Pinitas3faea252017-10-30 14:13:50 +000082
83/** Log information level message to the core system logger
84 *
85 * @param[in] msg Stream to log
86 */
Anthony Barbier7068f992017-10-26 15:23:08 +010087#define ARM_COMPUTE_LOG_INFO_MSG_CORE(msg) \
88 do \
89 { \
90 ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER(); \
91 ARM_COMPUTE_LOG_MSG_CORE(arm_compute::logging::LogLevel::INFO, msg); \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092 } while (false)
Georgios Pinitas3faea252017-10-30 14:13:50 +000093
94/** Log information level formatted message to the core system logger
95 *
96 * @param[in] fmt String format (printf style)
97 * @param[in] ... Message arguments
98 */
Michalis Spyrou7c60c992019-10-10 14:33:47 +010099#define ARM_COMPUTE_LOG_INFO_MSG_WITH_FORMAT_CORE(fmt, ...) \
100 do \
101 { \
102 ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER(); \
103 ARM_COMPUTE_LOG_MSG_WITH_FORMAT_CORE(arm_compute::logging::LogLevel::INFO, #fmt, __VA_ARGS__); \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100104 } while (false)
Georgios Pinitas3faea252017-10-30 14:13:50 +0000105
106/** Log information level stream to the core system logger
107 *
108 * @param[in] ss Message to log
109 */
Anthony Barbier7068f992017-10-26 15:23:08 +0100110#define ARM_COMPUTE_LOG_INFO_STREAM_CORE(ss) \
111 do \
112 { \
113 ARM_COMPUTE_CREATE_DEFAULT_CORE_LOGGER(); \
114 ARM_COMPUTE_LOG_STREAM_CORE(arm_compute::logging::LogLevel::INFO, ss); \
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115 } while (false)
Georgios Pinitas3faea252017-10-30 14:13:50 +0000116
Michalis Spyrouf4643372019-11-29 16:17:13 +0000117#endif /* ARM_COMPUTE_LOGGING_MACROS_H */