2012-04-08 03:59:47 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2012-04-09 03:00:51 +02:00
|
|
|
// mapnik
|
2012-04-08 03:59:47 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
|
|
|
|
2012-04-09 12:05:49 +02:00
|
|
|
// stl
|
|
|
|
#include <ctime>
|
2013-06-03 05:19:33 +02:00
|
|
|
#include <stdexcept>
|
2012-04-09 12:05:49 +02:00
|
|
|
|
|
|
|
#ifndef MAPNIK_LOG_FORMAT
|
2013-03-27 09:02:03 +01:00
|
|
|
#define MAPNIK_LOG_FORMAT Mapnik LOG> %Y-%m-%d %H:%M:%S:
|
2012-04-09 12:05:49 +02:00
|
|
|
#endif
|
|
|
|
|
2012-04-10 16:19:51 +02:00
|
|
|
#ifndef MAPNIK_DEFAULT_LOG_SEVERITY
|
|
|
|
#ifdef MAPNIK_DEBUG
|
2013-01-04 22:52:50 +01:00
|
|
|
#define MAPNIK_DEFAULT_LOG_SEVERITY 0
|
2012-04-10 16:19:51 +02:00
|
|
|
#else
|
2013-01-04 22:52:50 +01:00
|
|
|
#define MAPNIK_DEFAULT_LOG_SEVERITY 2
|
2012-04-10 16:19:51 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
namespace mapnik {
|
|
|
|
|
2012-04-10 16:19:51 +02:00
|
|
|
// mutexes
|
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
#ifdef MAPNIK_THREADSAFE
|
|
|
|
boost::mutex logger::severity_mutex_;
|
|
|
|
boost::mutex logger::format_mutex_;
|
|
|
|
#endif
|
2012-04-09 03:00:51 +02:00
|
|
|
|
2012-04-10 00:25:31 +02:00
|
|
|
|
2012-04-10 16:19:51 +02:00
|
|
|
// first time checks
|
|
|
|
|
|
|
|
bool logger::severity_env_check_ = true;
|
|
|
|
bool logger::format_env_check_ = true;
|
|
|
|
|
|
|
|
|
2012-04-09 12:05:49 +02:00
|
|
|
// severity
|
2012-04-09 03:00:51 +02:00
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
logger::severity_type logger::severity_level_ =
|
2012-04-10 16:19:51 +02:00
|
|
|
#if MAPNIK_DEFAULT_LOG_SEVERITY == 0
|
|
|
|
logger::debug
|
2012-08-17 00:52:32 +02:00
|
|
|
#elif MAPNIK_DEFAULT_LOG_SEVERITY == 1
|
2012-04-10 16:19:51 +02:00
|
|
|
logger::warn
|
2012-11-30 20:27:06 +01:00
|
|
|
#elif MAPNIK_DEFAULT_LOG_SEVERITY == 2
|
2012-04-10 16:19:51 +02:00
|
|
|
logger::error
|
2012-11-30 20:27:06 +01:00
|
|
|
#elif MAPNIK_DEFAULT_LOG_SEVERITY == 3
|
2012-04-10 16:19:51 +02:00
|
|
|
logger::none
|
|
|
|
#else
|
|
|
|
#error "Wrong default log severity level specified!"
|
|
|
|
#endif
|
2012-04-09 12:05:49 +02:00
|
|
|
;
|
2012-04-09 03:00:51 +02:00
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
logger::severity_map logger::object_severity_level_ = logger::severity_map();
|
2012-04-10 00:25:31 +02:00
|
|
|
|
2012-04-09 03:00:51 +02:00
|
|
|
|
2012-04-09 12:05:49 +02:00
|
|
|
// format
|
|
|
|
|
|
|
|
#define __xstr__(s) __str__(s)
|
|
|
|
#define __str__(s) #s
|
2012-04-10 10:14:28 +02:00
|
|
|
std::string logger::format_ = __xstr__(MAPNIK_LOG_FORMAT);
|
2012-04-09 12:05:49 +02:00
|
|
|
#undef __xstr__
|
|
|
|
#undef __str__
|
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
std::string logger::str()
|
2012-04-09 12:05:49 +02:00
|
|
|
{
|
2012-04-10 16:19:51 +02:00
|
|
|
#if 0
|
|
|
|
// update the format from getenv if this is the first time
|
|
|
|
if (logger::format_env_check_)
|
|
|
|
{
|
|
|
|
logger::format_env_check_ = false;
|
|
|
|
|
|
|
|
const char* log_format = getenv("MAPNIK_LOG_FORMAT");
|
|
|
|
if (log_format != NULL)
|
|
|
|
{
|
|
|
|
logger::format_ = log_format;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-09 12:05:49 +02:00
|
|
|
char buf[256];
|
|
|
|
const time_t tm = time(0);
|
2012-04-10 10:14:28 +02:00
|
|
|
strftime(buf, sizeof(buf), logger::format_.c_str(), localtime(&tm));
|
2012-04-09 12:05:49 +02:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-10 00:25:31 +02:00
|
|
|
// output
|
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
std::ofstream logger::file_output_;
|
|
|
|
std::string logger::file_name_;
|
|
|
|
std::streambuf* logger::saved_buf_ = 0;
|
2012-04-10 00:25:31 +02:00
|
|
|
|
2012-09-03 19:27:48 +02:00
|
|
|
void logger::use_file(std::string const& filepath)
|
2012-04-10 00:25:31 +02:00
|
|
|
{
|
|
|
|
// save clog rdbuf
|
|
|
|
if (saved_buf_ == 0)
|
|
|
|
{
|
|
|
|
saved_buf_ = std::clog.rdbuf();
|
|
|
|
}
|
|
|
|
|
|
|
|
// use a file to output as clog rdbuf
|
|
|
|
if (file_name_ != filepath)
|
|
|
|
{
|
|
|
|
file_name_ = filepath;
|
|
|
|
|
|
|
|
if (file_output_.is_open())
|
|
|
|
{
|
|
|
|
file_output_.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
file_output_.open(file_name_.c_str(), std::ios::out | std::ios::app);
|
|
|
|
if (file_output_)
|
|
|
|
{
|
|
|
|
std::clog.rdbuf(file_output_.rdbuf());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::stringstream s;
|
|
|
|
s << "cannot redirect log to file " << file_output_;
|
|
|
|
throw std::runtime_error(s.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-10 10:14:28 +02:00
|
|
|
void logger::use_console()
|
2012-04-10 00:25:31 +02:00
|
|
|
{
|
|
|
|
// save clog rdbuf
|
|
|
|
if (saved_buf_ == 0)
|
|
|
|
{
|
|
|
|
saved_buf_ = std::clog.rdbuf();
|
|
|
|
}
|
|
|
|
|
2012-04-10 16:46:11 +02:00
|
|
|
// close the file to force a flush
|
|
|
|
if (file_output_.is_open())
|
|
|
|
{
|
|
|
|
file_output_.close();
|
|
|
|
}
|
|
|
|
|
2012-04-10 00:25:31 +02:00
|
|
|
std::clog.rdbuf(saved_buf_);
|
|
|
|
}
|
|
|
|
|
2012-04-10 16:46:11 +02:00
|
|
|
|
|
|
|
} // namespace mapnik
|