blob: f9c58cdbc94df54ca82f9573a03fb4da3afe558f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
#include <log4cxx/logstring.h>
#include <log4cxx/helpers/loglog.h>
#include <log4cxx/helpers/transcoder.h>
#include <iostream>
#if !defined(LOG4CXX)
#define LOG4CXX 1
#endif
#include <log4cxx/private/log4cxx_private.h>
#include <log4cxx/helpers/aprinitializer.h>
#include <log4cxx/helpers/systemerrwriter.h>
#include <log4cxx/helpers/optionconverter.h>
#include <mutex>
using namespace LOG4CXX_NS;
using namespace LOG4CXX_NS::helpers;
struct LogLog::LogLogPrivate {
LogLogPrivate() :
debugEnabled(false),
quietMode(false){}
~LogLogPrivate()
{
quietMode = true; // Prevent output after deletion by onexit processing chain.
}
bool debugEnabled;
/**
In quietMode not even errors generate any output.
*/
bool quietMode;
std::mutex mutex;
};
LogLog::LogLog() :
m_priv(std::make_unique<LogLogPrivate>())
{
LogString log4cxxDebug = OptionConverter::getSystemProperty(LOG4CXX_STR("LOG4CXX_DEBUG"), LOG4CXX_STR("false"));
m_priv->debugEnabled = OptionConverter::toBoolean(log4cxxDebug, false);
}
LogLog::~LogLog(){}
LogLog& LogLog::getInstance()
{
static WideLife<LogLog> internalLogger;
return internalLogger;
}
void LogLog::setInternalDebugging(bool debugEnabled1)
{
auto p = getInstance().m_priv.get();
std::lock_guard<std::mutex> lock(p->mutex);
p->debugEnabled = debugEnabled1;
}
void LogLog::debug(const LogString& msg)
{
auto p = getInstance().m_priv.get();
if (p && !p->quietMode) // Not deleted by onexit processing?
{
if (!p->debugEnabled)
{
return;
}
std::lock_guard<std::mutex> lock(p->mutex);
emit(msg);
}
}
void LogLog::debug(const LogString& msg, const std::exception& e)
{
auto p = getInstance().m_priv.get();
if (p && !p->quietMode) // Not deleted by onexit processing?
{
if (!p->debugEnabled)
return;
std::lock_guard<std::mutex> lock(p->mutex);
emit(msg);
emit(e);
}
}
void LogLog::error(const LogString& msg)
{
auto p = getInstance().m_priv.get();
if (p && !p->quietMode) // Not deleted by onexit processing?
{
std::lock_guard<std::mutex> lock(p->mutex);
emit(msg);
}
}
void LogLog::error(const LogString& msg, const std::exception& e)
{
auto p = getInstance().m_priv.get();
if (p && !p->quietMode) // Not deleted by onexit processing?
{
std::lock_guard<std::mutex> lock(p->mutex);
emit(msg);
emit(e);
}
}
void LogLog::setQuietMode(bool quietMode1)
{
auto p = getInstance().m_priv.get();
std::lock_guard<std::mutex> lock(p->mutex);
p->quietMode = quietMode1;
}
void LogLog::warn(const LogString& msg)
{
auto p = getInstance().m_priv.get();
if (p && !p->quietMode) // Not deleted by onexit processing?
{
std::lock_guard<std::mutex> lock(p->mutex);
emit(msg);
}
}
void LogLog::warn(const LogString& msg, const std::exception& e)
{
auto p = getInstance().m_priv.get();
if (p && !p->quietMode) // Not deleted by onexit processing?
{
std::lock_guard<std::mutex> lock(p->mutex);
emit(msg);
emit(e);
}
}
void LogLog::emit(const LogString& msg)
{
LogString out(LOG4CXX_STR("log4cxx: "));
out.append(msg);
out.append(1, (logchar) 0x0A);
SystemErrWriter::write(out);
}
void LogLog::emit(const std::exception& ex)
{
LogString out(LOG4CXX_STR("log4cxx: "));
const char* raw = ex.what();
if (raw != 0)
{
Transcoder::decode(raw, out);
}
else
{
out.append(LOG4CXX_STR("std::exception::what() == null"));
}
out.append(1, (logchar) 0x0A);
SystemErrWriter::write(out);
}