Skip to content

iceoryx_utils/log/logmanager.hpp🔗

Namespaces🔗

Name
iox
building block to easily create free function for logging in a library context
iox::log

Classes🔗

Name
class iox::log::LogManager

Source code🔗

// Copyright (c) 2019 by Robert Bosch GmbH. All rights reserved.
//
// 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.
//
// SPDX-License-Identifier: Apache-2.0
#ifndef IOX_UTILS_LOG_LOGMANAGER_HPP
#define IOX_UTILS_LOG_LOGMANAGER_HPP

#include "iceoryx_utils/log/logcommon.hpp"
#include "iceoryx_utils/log/logger.hpp"

#include <atomic>
#include <map>
#include <string>

namespace iox
{
namespace log
{
enum class LogLevelOutput : uint8_t
{
    kDisplayLogLevel = 0,
    kHideLogLevel
};

class LogManager
{
  public:
    static LogManager& GetLogManager();
    static Logger& CreateLogContext(std::string ctxId, std::string ctxDescription, LogLevel appDefLogLevel) noexcept;

    ~LogManager() = default;

    LogManager(const LogManager&) = delete;
    LogManager(LogManager&&) = delete;
    LogManager& operator=(const LogManager&) = delete;
    LogManager& operator=(LogManager&&) = delete;

    LogLevel DefaultLogLevel() const noexcept;
    void SetDefaultLogLevel(const LogLevel logLevel,
                            const LogLevelOutput logLevelOutput = LogLevelOutput::kDisplayLogLevel) noexcept;

    LogMode DefaultLogMode() const noexcept;
    void SetDefaultLogMode(const LogMode logMode) noexcept;

  protected:
    LogManager() = default;

  private:
    std::atomic<LogLevel> m_defaultLogLevel{LogLevel::kVerbose};
    std::atomic<LogMode> m_defaultLogMode{LogMode::kConsole};

    std::map<std::string, Logger> m_loggers;
};

} // namespace log
} // namespace iox

#endif // IOX_UTILS_LOG_LOGMANAGER_HPP

Updated on 26 April 2021 at 15:31:01 CEST