/************************************************************** * * 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. * *************************************************************/ #ifndef LOGHANDLER_HXX #define LOGHANDLER_HXX /** === begin UNO includes === **/ #include #include #include /** === end UNO includes === **/ #include #include #include //........................................................................ namespace logging { //........................................................................ //==================================================================== //= //==================================================================== class LogHandlerHelper { private: // rtl_TextEncoding m_eEncoding; sal_Int32 m_nLevel; ::com::sun::star::uno::Reference< ::com::sun::star::logging::XLogFormatter > m_xFormatter; // ::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 enterMethod does the following things:
  • It acquires the mutex given in the constructor.
  • It checks whether the component is already initialized, and throws an exception if not os.
  • It checks whether the component is already disposed, and throws an exception if not os.
  • It creates a default formatter (PlainTextFormatter), if no formatter exists at this time.
*/ 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, 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 or throws an exception during formatting, is returned. Finally, the unicode string is encoded into a byte string, using our encoding setting. Then, 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 in case of success, if any error occurred */ bool getEncodedHead( ::rtl::OString& _out_rHead ) const; /** retrieves our formatter's tail, encoded with our encoding @return in case of success, 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 Encoding, Formatter, and Level, 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