poco/Foundation/src/PatternFormatter.cpp

191 lines
6.1 KiB
C++
Raw Normal View History

2006-10-23 17:48:43 +02:00
//
// PatternFormatter.cpp
//
2007-02-23 15:27:57 +01:00
// $Id: //poco/Main/Foundation/src/PatternFormatter.cpp#13 $
2006-10-23 17:48:43 +02:00
//
// Library: Foundation
// Package: Logging
// Module: PatternFormatter
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
#include "Poco/PatternFormatter.h"
#include "Poco/Message.h"
#include "Poco/DateTimeFormat.h"
#include "Poco/DateTimeFormatter.h"
#include "Poco/DateTime.h"
#include "Poco/Timestamp.h"
#include "Poco/Timezone.h"
#include "Poco/NumberFormatter.h"
#include "Poco/Environment.h"
namespace Poco {
const std::string PatternFormatter::PROP_PATTERN = "pattern";
const std::string PatternFormatter::PROP_TIMES = "times";
PatternFormatter::PatternFormatter():
_localTime(false)
{
}
PatternFormatter::PatternFormatter(const std::string& format):
_localTime(false),
_pattern(format)
{
}
PatternFormatter::~PatternFormatter()
{
}
void PatternFormatter::format(const Message& msg, std::string& text)
{
Timestamp timestamp = msg.getTime();
if (_localTime)
{
timestamp += Timezone::utcOffset()*Timestamp::resolution();
timestamp += Timezone::dst()*Timestamp::resolution();
}
DateTime dateTime = timestamp;
std::string::const_iterator it = _pattern.begin();
std::string::const_iterator end = _pattern.end();
while (it != end)
{
if (*it == '%')
{
if (++it != end)
{
switch (*it)
{
case 's': text.append(msg.getSource()); break;
case 't': text.append(msg.getText()); break;
case 'l': text.append(NumberFormatter::format((int) msg.getPriority())); break;
case 'p': text.append(getPriorityName((int) msg.getPriority())); break;
case 'q': text += getPriorityName((int) msg.getPriority()).at(0); break;
case 'P': text.append(NumberFormatter::format(msg.getPid())); break;
case 'T': text.append(msg.getThread()); break;
case 'I': text.append(NumberFormatter::format(msg.getTid())); break;
case 'N': text.append(Environment::nodeName()); break;
case 'w': text.append(DateTimeFormat::WEEKDAY_NAMES[dateTime.dayOfWeek()], 0, 3); break;
case 'W': text.append(DateTimeFormat::WEEKDAY_NAMES[dateTime.dayOfWeek()]); break;
case 'b': text.append(DateTimeFormat::MONTH_NAMES[dateTime.month() - 1], 0, 3); break;
case 'B': text.append(DateTimeFormat::MONTH_NAMES[dateTime.month() - 1]); break;
case 'd': text.append(NumberFormatter::format0(dateTime.day(), 2)); break;
case 'e': text.append(NumberFormatter::format(dateTime.day())); break;
case 'f': text.append(NumberFormatter::format(dateTime.day(), 2)); break;
case 'm': text.append(NumberFormatter::format0(dateTime.month(), 2)); break;
case 'n': text.append(NumberFormatter::format(dateTime.month())); break;
case 'o': text.append(NumberFormatter::format(dateTime.month(), 2)); break;
case 'y': text.append(NumberFormatter::format0(dateTime.year() % 100, 2)); break;
case 'Y': text.append(NumberFormatter::format0(dateTime.year(), 4)); break;
case 'H': text.append(NumberFormatter::format0(dateTime.hour(), 2)); break;
case 'h': text.append(NumberFormatter::format0(dateTime.hourAMPM(), 2)); break;
case 'a': text.append(dateTime.isAM() ? "am" : "pm"); break;
case 'A': text.append(dateTime.isAM() ? "AM" : "PM"); break;
case 'M': text.append(NumberFormatter::format0(dateTime.minute(), 2)); break;
case 'S': text.append(NumberFormatter::format0(dateTime.second(), 2)); break;
case 'i': text.append(NumberFormatter::format0(dateTime.millisecond(), 3)); break;
case 'c': text.append(NumberFormatter::format(dateTime.millisecond()/100)); break;
case 'z': text.append(DateTimeFormatter::tzdISO(_localTime ? Timezone::tzd() : DateTimeFormatter::UTC)); break;
case 'Z': text.append(DateTimeFormatter::tzdRFC(_localTime ? Timezone::tzd() : DateTimeFormatter::UTC)); break;
case '[':
{
++it;
std::string prop;
while (it != end && *it != ']') prop += *it++;
2006-12-22 10:31:08 +01:00
if (it == end) --it;
2006-10-23 17:48:43 +02:00
try
{
text.append(msg[prop]);
}
catch (...)
{
}
break;
}
default: text += *it;
}
++it;
}
}
else text += *it++;
}
}
void PatternFormatter::setProperty(const std::string& name, const std::string& value)
{
if (name == PROP_PATTERN)
_pattern = value;
else if (name == PROP_TIMES)
_localTime = (value == "local");
else
Formatter::setProperty(name, value);
}
std::string PatternFormatter::getProperty(const std::string& name) const
{
if (name == PROP_PATTERN)
return _pattern;
else if (name == PROP_TIMES)
return _localTime ? "local" : "UTC";
else
return Formatter::getProperty(name);
}
const std::string& PatternFormatter::getPriorityName(int prio)
{
static std::string priorities[] =
{
"",
"Fatal",
"Critical",
"Error",
"Warning",
"Notice",
"Information",
"Debug",
"Trace"
};
poco_assert (1 <= prio && prio <= 8);
return priorities[prio];
}
} // namespace Poco