merge the formfield patch from ooo-build
[ooovba.git] / svx / source / fmcomp / trace.cxx
blobd5e2a0087f0ef1759104392cc820be38c9dbb066
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: trace.cxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_svx.hxx"
33 #include "trace.hxx"
34 #include <tools/debug.hxx>
36 #if defined(DBG_UTIL)
38 //==============================================================================
40 //------------------------------------------------------------------------------
41 ::vos::OMutex Tracer::s_aMapSafety;
42 ::std::map< ::vos::OThread::TThreadIdentifier, INT32, ::std::less< ::vos::OThread::TThreadIdentifier > >
43 Tracer::s_aThreadIndents;
45 //------------------------------------------------------------------------------
46 Tracer::Tracer(const char* _pBlockDescription)
47 :m_sBlockDescription(_pBlockDescription)
49 ::vos::OGuard aGuard(s_aMapSafety);
50 INT32 nIndent = s_aThreadIndents[ ::vos::OThread::getCurrentIdentifier() ]++;
52 ByteString sIndent;
53 while (nIndent--)
54 sIndent += '\t';
56 ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
57 sThread += '\t';
59 ByteString sMessage(sThread);
60 sMessage += sIndent;
61 sMessage += m_sBlockDescription;
62 sMessage += " {";
63 DBG_TRACE(sMessage.GetBuffer());
66 //------------------------------------------------------------------------------
67 Tracer::~Tracer()
69 ::vos::OGuard aGuard(s_aMapSafety);
70 INT32 nIndent = --s_aThreadIndents[ ::vos::OThread::getCurrentIdentifier() ];
72 ByteString sIndent;
73 while (nIndent--)
74 sIndent += '\t';
76 ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
77 sThread += '\t';
79 ByteString sMessage(sThread);
80 sMessage += sIndent;
81 sMessage += "} // ";
82 sMessage += m_sBlockDescription;
83 DBG_TRACE(sMessage.GetBuffer());
86 //------------------------------------------------------------------------------
87 void Tracer::TraceString(const char* _pMessage)
89 ::vos::OGuard aGuard(s_aMapSafety);
90 INT32 nIndent = s_aThreadIndents[ ::vos::OThread::getCurrentIdentifier() ];
92 ByteString sIndent;
93 while (nIndent--)
94 sIndent += '\t';
96 ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
97 sThread += '\t';
99 ByteString sMessage(sThread);
100 sMessage += sIndent;
101 sMessage += m_sBlockDescription;
102 sMessage += ": ";
103 sMessage += _pMessage;
104 DBG_TRACE(sMessage.GetBuffer());
107 //------------------------------------------------------------------------------
108 void Tracer::TraceString1StringParam(const char* _pMessage, const char* _pParam)
110 ::vos::OGuard aGuard(s_aMapSafety);
111 INT32 nIndent = s_aThreadIndents[ ::vos::OThread::getCurrentIdentifier() ];
113 ByteString sIndent;
114 while (nIndent--)
115 sIndent += '\t';
117 ByteString sThread( ByteString::CreateFromInt32( (INT32)::vos::OThread::getCurrentIdentifier() ) );
118 sThread += '\t';
120 ByteString sMessage(sThread);
121 sMessage += sIndent;
122 sMessage += m_sBlockDescription;
123 sMessage += ": ";
124 sMessage += _pMessage;
125 DBG_TRACE1(sMessage.GetBuffer(), _pParam);
127 #endif