From c25ec0608a167bcf1d891043f02273761c351701 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 18 Sep 2000 15:18:56 +0000 Subject: initial import --- configmgr/source/inc/tracer.hxx | 180 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 configmgr/source/inc/tracer.hxx (limited to 'configmgr/source/inc/tracer.hxx') diff --git a/configmgr/source/inc/tracer.hxx b/configmgr/source/inc/tracer.hxx new file mode 100644 index 000000000000..27eba4317f86 --- /dev/null +++ b/configmgr/source/inc/tracer.hxx @@ -0,0 +1,180 @@ +/************************************************************************* + * + * $RCSfile: tracer.hxx,v $ + * + * $Revision: 1.1.1.1 $ + * + * last change: $Author: hr $ $Date: 2000-09-18 16:13:41 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * 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., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (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.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +#ifndef _CONFIGMGR_TRACER_HXX_ +#define _CONFIGMGR_TRACER_HXX_ + +#if defined(DEBUG) || defined(_DEBUG) +#define CFG_ENABLE_TRACING +#endif + +#ifdef CFG_ENABLE_TRACING + +#ifndef _SAL_TYPES_H_ +#include +#endif +#include +#ifndef _OSL_MUTEX_HXX_ +#include +#endif + +#include +#include + +#define OUSTRING2ASCII(rtlOUString) ::rtl::OString((rtlOUString).getStr(), (rtlOUString).getLength(), RTL_TEXTENCODING_ASCII_US).getStr() + +#define CFG_TRACE_INFO OTraceIndent aIndent; OConfigTracer::traceInfo +#define CFG_TRACE_WARNING OTraceIndent aIndent; OConfigTracer::traceWarning +#define CFG_TRACE_ERROR OTraceIndent aIndent; OConfigTracer::traceError +#define CFG_TRACE_INFO_NI OConfigTracer::traceInfo +#define CFG_TRACE_WARNING_NI OConfigTracer::traceWarning +#define CFG_TRACE_ERROR_NI OConfigTracer::traceError + +#define CFG_TRACE_TO_DEVICE OConfigTracer::traceToVirtualDevice + +namespace configmgr +{ + +struct OTracerSetup; +class OConfigTracer +{ + friend class OTraceIndent; + +protected: + static ::osl::Mutex s_aMutex; + static OTracerSetup* s_pImpl; + +private: + OConfigTracer(); // never implemented, no instantiation of this class allowed, only static members + +public: + static void traceInfo(const sal_Char* _pFormat, ...); + static void traceWarning(const sal_Char* _pFormat, ...); + static void traceError(const sal_Char* _pFormat, ...); + + static void traceToVirtualDevice(const sal_Char* _pDeviceName, const sal_Char* _pFormat, ...); + + static ::rtl::OString getTimeStamp(); + +protected: + static void implTrace(const sal_Char* _pType, const sal_Char* _pFormat, va_list args); + + static void inc(); + static void dec(); + + static void indent(); + + static void ensureData(); + static void ensureInitalized(); +}; + +class OTraceIndent +{ +public: + OTraceIndent() { OConfigTracer::inc(); } + ~OTraceIndent() { OConfigTracer::dec(); } +}; + +} // namespace configmgr + +#else // !(defined(DEBUG) || defined(_DEBUG)) + +#include + +#define OUSTRING2ASCII(rtlOUString) "nothing" + +#define CFG_TRACE_INFO 1 ? (0) : printf +#define CFG_TRACE_WARNING 1 ? (0) : printf +#define CFG_TRACE_ERROR 1 ? (0) : printf +#define CFG_TRACE_INFO_NI 1 ? (0) : printf +#define CFG_TRACE_WARNING_NI 1 ? (0) : printf +#define CFG_TRACE_ERROR_NI 1 ? (0) : printf +#define CFG_TRACE_TO_DEVICE 1 ? (0) : printf + +#endif // (defined(DEBUG) || defined(_DEBUG)) + +#endif // _CONFIGMGR_TRACER_HXX_ + +//************************************************************************** +// history: +// $Log: not supported by cvs2svn $ +// Revision 1.6 2000/09/15 09:51:50 willem.vandorp +// OpenOffice header added +// +// Revision 1.5 2000/08/30 10:00:40 fs +// getTimeStamp +// +// Revision 1.4 2000/08/20 12:52:14 fs +// #77860# introduced an impl class; introduces virtual trace devices +// +// Revision 1.3 2000/08/10 11:37:30 hjs +// filled defines with correct dummies +// +// Revision 1.2 2000/08/10 06:53:08 fs +// m_bInitialized +// +// Revision 1.1 2000/08/09 18:53:41 fs +// helper classes for tracing +// +// +// Revision 1.0 09.08.00 13:10:04 fs +//************************************************************************** + -- cgit