blob: 17015d9ae913ee7ef406e9bdb89e124cd2198fc0 [file] [log] [blame]
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +01003 *
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 */
24#include "arm_compute/core/utils/logging/LoggerRegistry.h"
25
26#include "arm_compute/core/Error.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010027
Georgios Pinitase874ef92019-09-09 17:40:33 +010028#include "support/Mutex.h"
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010029
30using namespace arm_compute::logging;
31
32/** Reserved logger used by the library */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033std::set<std::string> LoggerRegistry::_reserved_loggers = {"CORE", "RUNTIME", "GRAPH"};
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010034
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010035LoggerRegistry::LoggerRegistry() : _mtx(), _loggers()
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010036{
37}
38
39LoggerRegistry &LoggerRegistry::get()
40{
41 static LoggerRegistry _instance;
42 return _instance;
43}
44
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045void LoggerRegistry::create_logger(const std::string &name,
46 LogLevel log_level,
47 const std::vector<std::shared_ptr<Printer>> &printers)
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010048{
Georgios Pinitase874ef92019-09-09 17:40:33 +010049 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010050 if ((_loggers.find(name) == _loggers.end()) && (_reserved_loggers.find(name) == _reserved_loggers.end()))
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010051 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010052 _loggers[name] = std::make_shared<Logger>(name, log_level, printers);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010053 }
54}
55
56void LoggerRegistry::remove_logger(const std::string &name)
57{
Georgios Pinitase874ef92019-09-09 17:40:33 +010058 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010059 if (_loggers.find(name) != _loggers.end())
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010060 {
61 _loggers.erase(name);
62 }
63}
64
65std::shared_ptr<Logger> LoggerRegistry::logger(const std::string &name)
66{
Georgios Pinitase874ef92019-09-09 17:40:33 +010067 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010068 return (_loggers.find(name) != _loggers.end()) ? _loggers[name] : nullptr;
69}
70
Michalis Spyrou299fdd32019-05-01 13:03:59 +010071void LoggerRegistry::create_reserved_loggers(LogLevel log_level, const std::vector<std::shared_ptr<Printer>> &printers)
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010072{
Georgios Pinitase874ef92019-09-09 17:40:33 +010073 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010074 for (const auto &r : _reserved_loggers)
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010075 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010076 if (_loggers.find(r) == _loggers.end())
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010077 {
78 _loggers[r] = std::make_shared<Logger>(r, log_level, printers);
79 }
80 }
81}