Files
libreoffice/extensions/source/logging/csvformatter.cxx
Andrea Gelmini 5b1337f7b2 tdf#62475: partial handmade fixes
Change-Id: Ib9af202c43b916b9af4b4e18db35d470a8692fe4
Reviewed-on: https://gerrit.libreoffice.org/15712
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2015-05-15 17:55:15 +00:00

353 lines
12 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
#include "log_module.hxx"
#include "log_services.hxx"
#include <stdio.h>
#include <string>
#include <com/sun/star/logging/XCsvLogFormatter.hpp>
#include <com/sun/star/logging/XLogFormatter.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <rtl/ustrbuf.hxx>
#include <osl/thread.h>
namespace logging
{
using ::com::sun::star::logging::XCsvLogFormatter;
using ::com::sun::star::logging::XLogFormatter;
using ::com::sun::star::uno::XComponentContext;
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
using ::com::sun::star::lang::XServiceInfo;
using ::com::sun::star::uno::RuntimeException;
using ::com::sun::star::logging::LogRecord;
using ::com::sun::star::uno::XInterface;
// formats for csv files as defined by RFC4180
typedef ::cppu::WeakImplHelper2 < XCsvLogFormatter
, XServiceInfo
> CsvFormatter_Base;
class CsvFormatter : public CsvFormatter_Base
{
public:
virtual OUString SAL_CALL formatMultiColumn(const Sequence< OUString>& column_data) throw (RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo - static version
static OUString SAL_CALL getImplementationName_static();
static Sequence< OUString > SAL_CALL getSupportedServiceNames_static();
static Reference< XInterface > Create( const Reference< XComponentContext >& context );
protected:
CsvFormatter();
virtual ~CsvFormatter();
// XCsvLogFormatter
virtual sal_Bool SAL_CALL getLogEventNo() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL getLogThread() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL getLogTimestamp() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL getLogSource() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence< OUString > SAL_CALL getColumnnames() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setLogEventNo( sal_Bool log_event_no ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setLogThread( sal_Bool log_thread ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setLogTimestamp( sal_Bool log_timestamp ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setLogSource( sal_Bool log_source ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setColumnnames( const Sequence< OUString>& column_names) throw (RuntimeException, std::exception) SAL_OVERRIDE;
// XLogFormatter
virtual OUString SAL_CALL getHead( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL format( const LogRecord& Record ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getTail( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw(RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService( const OUString& service_name ) throw(RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(RuntimeException, std::exception) SAL_OVERRIDE;
private:
bool m_LogEventNo;
bool m_LogThread;
bool m_LogTimestamp;
bool m_LogSource;
bool m_MultiColumn;
::com::sun::star::uno::Sequence< OUString > m_Columnnames;
};
} // namespace logging
// private helpers
namespace
{
const sal_Unicode quote_char = '"';
const sal_Unicode comma_char = ',';
const OUString dos_newline = "\r\n";
inline bool needsQuoting(const OUString& str)
{
static const OUString quote_trigger_chars = "\",\n\r";
sal_Int32 len = str.getLength();
for(sal_Int32 i=0; i<len; i++)
if(quote_trigger_chars.indexOf(str[i])!=-1)
return true;
return false;
};
inline void appendEncodedString(OUStringBuffer& buf, const OUString& str)
{
if(needsQuoting(str))
{
// each double-quote will get replaced by two double-quotes
buf.append(quote_char);
const sal_Int32 buf_offset = buf.getLength();
const sal_Int32 str_length = str.getLength();
buf.append(str);
// special treatment for the last character
if(quote_char==str[str_length-1])
buf.append(quote_char);
// iterating backwards because the index at which we insert wont be shifted
// when moving that way.
for(sal_Int32 i = str_length; i>=0; )
{
i=str.lastIndexOf(quote_char, --i);
if(i!=-1)
buf.insert(buf_offset + i, quote_char);
}
buf.append(quote_char);
}
else
buf.append(str);
};
::com::sun::star::uno::Sequence< OUString> initialColumns()
{
com::sun::star::uno::Sequence< OUString> result = ::com::sun::star::uno::Sequence< OUString>(1);
result[0] = "message";
return result;
};
}
namespace logging
{
CsvFormatter::CsvFormatter()
:m_LogEventNo(true),
m_LogThread(true),
m_LogTimestamp(true),
m_LogSource(false),
m_MultiColumn(false),
m_Columnnames(initialColumns())
{ }
CsvFormatter::~CsvFormatter()
{ }
sal_Bool CsvFormatter::getLogEventNo() throw (RuntimeException, std::exception)
{
return m_LogEventNo;
}
sal_Bool CsvFormatter::getLogThread() throw (RuntimeException, std::exception)
{
return m_LogThread;
}
sal_Bool CsvFormatter::getLogTimestamp() throw (RuntimeException, std::exception)
{
return m_LogTimestamp;
}
sal_Bool CsvFormatter::getLogSource() throw (RuntimeException, std::exception)
{
return m_LogSource;
}
Sequence< OUString > CsvFormatter::getColumnnames() throw (RuntimeException, std::exception)
{
return m_Columnnames;
}
void CsvFormatter::setLogEventNo(sal_Bool log_event_no) throw (RuntimeException, std::exception)
{
m_LogEventNo = log_event_no;
}
void CsvFormatter::setLogThread(sal_Bool log_thread) throw (RuntimeException, std::exception)
{
m_LogThread = log_thread;
}
void CsvFormatter::setLogTimestamp(sal_Bool log_timestamp) throw (RuntimeException, std::exception)
{
m_LogTimestamp = log_timestamp;
}
void CsvFormatter::setLogSource(sal_Bool log_source) throw (RuntimeException, std::exception)
{
m_LogSource = log_source;
}
void CsvFormatter::setColumnnames(const Sequence< OUString >& columnnames) throw (RuntimeException, std::exception)
{
m_Columnnames = Sequence< OUString>(columnnames);
m_MultiColumn = (m_Columnnames.getLength()>1);
}
OUString SAL_CALL CsvFormatter::getHead( ) throw (RuntimeException, std::exception)
{
OUStringBuffer buf;
if(m_LogEventNo)
buf.appendAscii("event no,");
if(m_LogThread)
buf.appendAscii("thread,");
if(m_LogTimestamp)
buf.appendAscii("timestamp,");
if(m_LogSource)
buf.appendAscii("class,method,");
sal_Int32 columns = m_Columnnames.getLength();
for(sal_Int32 i=0; i<columns; i++)
{
buf.append(m_Columnnames[i]);
buf.append(comma_char);
}
buf.setLength(buf.getLength()-1);
buf.append(dos_newline);
return buf.makeStringAndClear();
}
OUString SAL_CALL CsvFormatter::format( const LogRecord& record ) throw (RuntimeException, std::exception)
{
OUStringBuffer aLogEntry;
if(m_LogEventNo)
{
aLogEntry.append( record.SequenceNumber );
aLogEntry.append(comma_char);
}
if(m_LogThread)
{
aLogEntry.append( record.ThreadID );
aLogEntry.append(comma_char);
}
if(m_LogTimestamp)
{
// ISO 8601
char buffer[ 30 ];
const size_t buffer_size = sizeof( buffer );
snprintf( buffer, buffer_size, "%04i-%02i-%02iT%02i:%02i:%02i.%09i",
(int)record.LogTime.Year,
(int)record.LogTime.Month,
(int)record.LogTime.Day,
(int)record.LogTime.Hours,
(int)record.LogTime.Minutes,
(int)record.LogTime.Seconds,
(int)record.LogTime.NanoSeconds );
aLogEntry.appendAscii( buffer );
aLogEntry.append(comma_char);
}
if(m_LogSource)
{
appendEncodedString(aLogEntry, record.SourceClassName);
aLogEntry.append(comma_char);
appendEncodedString(aLogEntry, record.SourceMethodName);
aLogEntry.append(comma_char);
}
// if the CsvFormatter has multiple columns set via setColumnnames(), the
// message of the record is expected to be encoded with formatMultiColumn
// if the CsvFormatter has only one column set, the message is expected not
// to be encoded
if(m_MultiColumn)
aLogEntry.append(record.Message);
else
appendEncodedString(aLogEntry, record.Message);
aLogEntry.append( dos_newline );
return aLogEntry.makeStringAndClear();
}
OUString SAL_CALL CsvFormatter::getTail( ) throw (RuntimeException, std::exception)
{
return OUString();
}
OUString SAL_CALL CsvFormatter::formatMultiColumn(const Sequence< OUString>& column_data) throw (RuntimeException, std::exception)
{
sal_Int32 columns = column_data.getLength();
OUStringBuffer buf;
for(int i=0; i<columns; i++)
{
appendEncodedString(buf, column_data[i]);
buf.append(comma_char);
}
buf.setLength(buf.getLength()-1);
return buf.makeStringAndClear();
}
sal_Bool SAL_CALL CsvFormatter::supportsService( const OUString& service_name ) throw(RuntimeException, std::exception)
{
return cppu::supportsService(this, service_name);
}
OUString SAL_CALL CsvFormatter::getImplementationName() throw(RuntimeException, std::exception)
{
return getImplementationName_static();
}
Sequence< OUString > SAL_CALL CsvFormatter::getSupportedServiceNames() throw(RuntimeException, std::exception)
{
return getSupportedServiceNames_static();
}
OUString SAL_CALL CsvFormatter::getImplementationName_static()
{
return OUString( "com.sun.star.comp.extensions.CsvFormatter" );
}
Sequence< OUString > SAL_CALL CsvFormatter::getSupportedServiceNames_static()
{
Sequence< OUString > aServiceNames(1);
aServiceNames[0] = "com.sun.star.logging.CsvFormatter";
return aServiceNames;
}
Reference< XInterface > CsvFormatter::Create( const Reference< XComponentContext >& )
{
return *( new CsvFormatter );
}
void createRegistryInfo_CsvFormatter()
{
static OAutoRegistration< CsvFormatter > aAutoRegistration;
}
} // namespace logging
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */