1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: trace.cxx,v $
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"
34 #include <tools/debug.hxx>
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() ]++;
56 ByteString
sThread( ByteString::CreateFromInt32( (INT32
)::vos::OThread::getCurrentIdentifier() ) );
59 ByteString
sMessage(sThread
);
61 sMessage
+= m_sBlockDescription
;
63 DBG_TRACE(sMessage
.GetBuffer());
66 //------------------------------------------------------------------------------
69 ::vos::OGuard
aGuard(s_aMapSafety
);
70 INT32 nIndent
= --s_aThreadIndents
[ ::vos::OThread::getCurrentIdentifier() ];
76 ByteString
sThread( ByteString::CreateFromInt32( (INT32
)::vos::OThread::getCurrentIdentifier() ) );
79 ByteString
sMessage(sThread
);
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() ];
96 ByteString
sThread( ByteString::CreateFromInt32( (INT32
)::vos::OThread::getCurrentIdentifier() ) );
99 ByteString
sMessage(sThread
);
101 sMessage
+= m_sBlockDescription
;
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() ];
117 ByteString
sThread( ByteString::CreateFromInt32( (INT32
)::vos::OThread::getCurrentIdentifier() ) );
120 ByteString
sMessage(sThread
);
122 sMessage
+= m_sBlockDescription
;
124 sMessage
+= _pMessage
;
125 DBG_TRACE1(sMessage
.GetBuffer(), _pParam
);