1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef LOGHANDLER_HXX
#define LOGHANDLER_HXX
/** === begin UNO includes === **/
#include <com/sun/star/logging/XLogFormatter.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/logging/LogRecord.hpp>
/** === end UNO includes === **/
#include <comphelper/namedvaluecollection.hxx>
#include <cppuhelper/interfacecontainer.hxx>
#include <rtl/string.hxx>
//........................................................................
namespace logging
{
//........................................................................
//====================================================================
//=
//====================================================================
class LogHandlerHelper
{
private:
// <attributes>
rtl_TextEncoding m_eEncoding;
sal_Int32 m_nLevel;
::com::sun::star::uno::Reference< ::com::sun::star::logging::XLogFormatter >
m_xFormatter;
// <//attributes>
::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >
m_xContext;
::osl::Mutex& m_rMutex;
::cppu::OBroadcastHelper& m_rBHelper;
bool m_bInitialized;
public:
LogHandlerHelper(
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext,
::osl::Mutex& _rMutex,
::cppu::OBroadcastHelper& _rBHelper
);
public:
bool getIsInitialized() const { return m_bInitialized; }
void setIsInitialized() { m_bInitialized = true; }
bool getEncoding( ::rtl::OUString& _out_rEncoding ) const;
bool setEncoding( const ::rtl::OUString& _rEncoding );
inline rtl_TextEncoding
getTextEncoding() const { return m_eEncoding; }
inline ::com::sun::star::uno::Reference< ::com::sun::star::logging::XLogFormatter >
getFormatter() const { return m_xFormatter; }
inline void
setFormatter( const ::com::sun::star::uno::Reference< ::com::sun::star::logging::XLogFormatter >& _rxFormatter )
{
m_xFormatter = _rxFormatter;
}
inline sal_Int32
getLevel() const { return m_nLevel; }
inline void
setLevel( const sal_Int32 _nLevel )
{
m_nLevel = _nLevel;
}
/** prepares implementation of an public accessible method of a log handler
<code>enterMethod</code> does the following things:
<ul><li>It acquires the mutex given in the constructor.</li>
<li>It checks whether the component is already initialized, and throws an exception if not os.</li>
<li>It checks whether the component is already disposed, and throws an exception if not os.</li>
<li>It creates a default formatter (PlainTextFormatter), if no formatter exists at this time.</li>
</ul>
*/
void enterMethod();
/** formats a record for publishing it
The method first checks whether the records log level is greater or equal our own
log level. If not, <FALSE/> is returned.
Second, our formatter is used to create a unicode string from the log record. If an error occurs
during this, e.g. if the formatter is <NULL/> or throws an exception during formatting,
<FALSE/> is returned.
Finally, the unicode string is encoded into a byte string, using our encoding setting. Then,
<TRUE/> is returned.
*/
bool formatForPublishing( const ::com::sun::star::logging::LogRecord& _rRecord, ::rtl::OString& _out_rEntry ) const;
/** retrieves our formatter's heading, encoded with our encoding
@return <TRUE/> in case of success, <FALSE/> if any error occurred
*/
bool getEncodedHead( ::rtl::OString& _out_rHead ) const;
/** retrieves our formatter's tail, encoded with our encoding
@return <TRUE/> in case of success, <FALSE/> if any error occurred
*/
bool getEncodedTail( ::rtl::OString& _out_rTail ) const;
/** initializes the instance from a collection of named settings
The recognized named settings are <code>Encoding</code>, <code>Formatter</code>, and <code>Level</code>,
which initialize the respective attributes.
Settings which are recognized are remove from the given collection. This allows
the caller to determine whether or not the collection contained any unsupported
items, and react appropriately.
@throws IllegalArgumentException
if one of the values in the collection is of wrong type.
*/
void initFromSettings( const ::comphelper::NamedValueCollection& _rSettings );
};
//........................................................................
} // namespace logging
//........................................................................
#endif // LOGHANDLER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|