summaryrefslogtreecommitdiff
path: root/binfilter/bf_sw/source/core/except/sw_dbgloop.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sw/source/core/except/sw_dbgloop.cxx')
-rw-r--r--binfilter/bf_sw/source/core/except/sw_dbgloop.cxx119
1 files changed, 119 insertions, 0 deletions
diff --git a/binfilter/bf_sw/source/core/except/sw_dbgloop.cxx b/binfilter/bf_sw/source/core/except/sw_dbgloop.cxx
new file mode 100644
index 000000000000..68a46a75ee77
--- /dev/null
+++ b/binfilter/bf_sw/source/core/except/sw_dbgloop.cxx
@@ -0,0 +1,119 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+namespace binfilter {
+
+//DbgLoopStack DbgLoop::aDbgLoopStack;
+
+/*************************************************************************
+ * class DbgLoopStack
+ *************************************************************************/
+
+///*N*/ DbgLoopStack::DbgLoopStack()
+///*N*/ {
+///*N*/ Reset();
+///*N*/ }
+
+///*N*/ void DbgLoopStack::Reset()
+///*N*/ {
+///*N*/ nPtr = 0;
+///*N*/ pDbg = 0;
+///*N*/ for( USHORT i = 0; i < DBG_MAX_STACK; ++i )
+///*N*/ aCount[i] = 0;
+///*N*/ }
+
+/*************************************************************************
+ * DbgLoopStack::Push()
+ *************************************************************************/
+
+///*N*/ void DbgLoopStack::Push( const void *pThis )
+///*N*/ {
+///*N*/ // Wir muessen irgendwie mitbekommen, wann die erste Stackposition
+///*N*/ // resettet werden soll, z.B. wenn wir einen Nullpointer uebergeben
+///*N*/ if( !nPtr && ( pDbg != pThis || !pThis ) )
+///*N*/ {
+///*N*/ aCount[1] = 0;
+///*N*/ pDbg = pThis;
+///*N*/ }
+///*N*/
+///*N*/ ++nPtr;
+///*N*/ if( DBG_MAX_STACK > nPtr )
+///*N*/ {
+///*N*/ // Wenn eine loop entdeckt wird, wird der counter wieder zurueckgesetzt.
+///*N*/ ASSERT( DBG_MAX_LOOP > aCount[nPtr], "DbgLoopStack::Push: loop detected" );
+///*N*/ if( DBG_MAX_LOOP > aCount[nPtr] )
+///*N*/ ++(aCount[nPtr]);
+///*N*/ else
+///*N*/ aCount[nPtr] = 0;
+///*N*/ }
+///*N*/ }
+
+/*************************************************************************
+ * DbgLoopStack::Pop()
+ *************************************************************************/
+
+///*N*/ void DbgLoopStack::Pop()
+///*N*/ {
+///*N*/ if( DBG_MAX_STACK > nPtr )
+///*N*/ {
+///*N*/ ASSERT( nPtr, "DbgLoopStack::Pop: can't pop the stack" );
+///*N*/
+///*N*/ ASSERT( aCount[nPtr], "DbgLoopStack::Pop: can't dec the count" );
+///*N*/ if( DBG_MAX_STACK > nPtr + 1 )
+///*N*/ aCount[nPtr + 1] = 0;
+///*N*/ }
+///*N*/ --nPtr;
+///*N*/ }
+
+/*************************************************************************
+ * DbgLoopStack::Print()
+ *************************************************************************/
+
+
+//#ifdef STAND_ALONE
+// compile with: cl /AL /DSTAND_ALONE dbgloop.cxx
+
+/*************************************************************************
+ * main()
+ *************************************************************************/
+
+//#include <stdlib.h>
+
+///*N*/ void AssertFail( const char *pErr, const char *pFile, USHORT nLine )
+///*N*/ {
+///*N*/ cout << pErr << '\n';
+/////*N*/ PrintLoopStack( cout );
+///*N*/ exit(0);
+///*N*/ }
+
+//#endif
+
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */