blob: fe71902ec0f8b9d453f607f803b196519943f701 [file] [log] [blame]
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +01001/*
Michalis Spyrou299fdd32019-05-01 13:03:59 +01002 * Copyright (c) 2017-2019 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"
Georgios Pinitase874ef92019-09-09 17:40:33 +010027#include "support/Mutex.h"
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010028#include "support/ToolchainSupport.h"
29
30using namespace arm_compute::logging;
31
32/** Reserved logger used by the library */
33std::set<std::string> LoggerRegistry::_reserved_loggers = { "CORE", "RUNTIME", "GRAPH" };
34
35LoggerRegistry::LoggerRegistry()
36 : _mtx(), _loggers()
37{
38}
39
40LoggerRegistry &LoggerRegistry::get()
41{
42 static LoggerRegistry _instance;
43 return _instance;
44}
45
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010046void LoggerRegistry::create_logger(const std::string &name, LogLevel log_level, const std::vector<std::shared_ptr<Printer>> &printers)
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010047{
Georgios Pinitase874ef92019-09-09 17:40:33 +010048 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010049 if((_loggers.find(name) == _loggers.end()) && (_reserved_loggers.find(name) == _reserved_loggers.end()))
50 {
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010051 _loggers[name] = std::make_shared<Logger>(name, log_level, printers);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010052 }
53}
54
55void LoggerRegistry::remove_logger(const std::string &name)
56{
Georgios Pinitase874ef92019-09-09 17:40:33 +010057 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010058 if(_loggers.find(name) != _loggers.end())
59 {
60 _loggers.erase(name);
61 }
62}
63
64std::shared_ptr<Logger> LoggerRegistry::logger(const std::string &name)
65{
Georgios Pinitase874ef92019-09-09 17:40:33 +010066 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010067 return (_loggers.find(name) != _loggers.end()) ? _loggers[name] : nullptr;
68}
69
Michalis Spyrou299fdd32019-05-01 13:03:59 +010070void LoggerRegistry::create_reserved_loggers(LogLevel log_level, const std::vector<std::shared_ptr<Printer>> &printers)
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010071{
Georgios Pinitase874ef92019-09-09 17:40:33 +010072 arm_compute::lock_guard<arm_compute::Mutex> lock(_mtx);
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010073 for(const auto &r : _reserved_loggers)
74 {
75 if(_loggers.find(r) == _loggers.end())
76 {
77 _loggers[r] = std::make_shared<Logger>(r, log_level, printers);
78 }
79 }
80}