Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / svx / source / inc / trace.hxx
blob116429492d702a098aa1e45e33d820b55aaf4f6f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef _TRACE_HXX_
29 #define _TRACE_HXX_
31 #if defined(DBG_UTIL)
33 #include <tools/string.hxx>
34 #include <osl/thread.hxx>
35 #include <osl/mutex.hxx>
36 #include <comphelper/stl_types.hxx>
39 class Tracer
41 rtl::OString m_sBlockDescription;
43 DECLARE_STL_STDKEY_MAP( ::oslThreadIdentifier, sal_Int32, MapThreadId2Int );
44 static MapThreadId2Int s_aThreadIndents;
46 static ::osl::Mutex s_aMapSafety;
48 public:
49 Tracer(const char* _pBlockDescription);
50 ~Tracer();
52 void TraceString(const char* _pMessage);
53 void TraceString1StringParam(const char* _pMessage, const char* _pParam);
57 #define TRACE_RANGE(range_description) Tracer aTrace(range_description);
58 #define TRACE_RANGE_MESSAGE(message) { aTrace.TraceString(message); }
59 #define TRACE_RANGE_MESSAGE1(message, param) { aTrace.TraceString1StringParam(message, param); }
61 #else
63 #define TRACE_RANGE(range_description) ;
64 #define TRACE_RANGE_MESSAGE(message) ;
65 #define TRACE_RANGE_MESSAGE1(message, param) ;
67 #endif
69 #endif // _TRACE_HXX_
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */