summaryrefslogtreecommitdiff
path: root/sc/inc/recursionhelper.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 10:28:21 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 10:28:21 +0000
commit5924a5fbfe6c30af24ebfe813dd25aa944503458 (patch)
tree37d1e619a5fb3ee21ae6dc64b0c82b1f38bc833d /sc/inc/recursionhelper.hxx
parentf23cb022512ab7d183c8c043427817f272480c36 (diff)
INTEGRATION: CWS calcer (1.1.2); FILE ADDED
2005/02/18 18:52:24 er 1.1.2.1: #i20986# #i21124# #i4874# #i7309# new algorithm for recursions and iterations
Diffstat (limited to 'sc/inc/recursionhelper.hxx')
-rw-r--r--sc/inc/recursionhelper.hxx189
1 files changed, 189 insertions, 0 deletions
diff --git a/sc/inc/recursionhelper.hxx b/sc/inc/recursionhelper.hxx
new file mode 100644
index 000000000000..213ae85dfa8c
--- /dev/null
+++ b/sc/inc/recursionhelper.hxx
@@ -0,0 +1,189 @@
+/*************************************************************************
+ *
+ * $RCSfile: recursionhelper.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2005-03-08 11:28:21 $
+ *
+ * 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 2004 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: 2005 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef INCLUDED_RECURSIONHELPER_HXX
+#define INCLUDED_RECURSIONHELPER_HXX
+
+#include <list>
+#include <stack>
+#include <tools/solar.h>
+
+class ScFormulaCell;
+
+struct ScFormulaRecursionEntry
+{
+ ScFormulaCell* pCell;
+ BOOL bOldRunning;
+ double fPreviousResult;
+ ScFormulaRecursionEntry( ScFormulaCell* p, BOOL b, double f ) : pCell(p),
+ bOldRunning(b),
+ fPreviousResult(f)
+ {}
+};
+
+typedef ::std::list< ScFormulaRecursionEntry > ScFormulaRecursionList;
+
+class ScRecursionHelper
+{
+ typedef ::std::stack< ScFormulaCell* > ScRecursionInIterationStack;
+ ScFormulaRecursionList aRecursionFormulas;
+ ScFormulaRecursionList::iterator aInsertPos;
+ ScFormulaRecursionList::iterator aLastIterationStart;
+ ScRecursionInIterationStack aRecursionInIterationStack;
+ USHORT nRecursionCount;
+ USHORT nIteration;
+ bool bInRecursionReturn;
+ bool bDoingRecursion;
+ bool bInIterationReturn;
+ bool bConverging;
+
+ void Init()
+ {
+ nRecursionCount = 0;
+ bInRecursionReturn = bDoingRecursion = bInIterationReturn = false;
+ aInsertPos = GetEnd();
+ ResetIteration();
+ }
+ void ResetIteration()
+ {
+ aLastIterationStart = GetEnd();
+ nIteration = 0;
+ bConverging = false;
+ }
+
+ public:
+
+ ScRecursionHelper() { Init(); }
+ USHORT GetRecursionCount() const { return nRecursionCount; }
+ void IncRecursionCount() { ++nRecursionCount; }
+ void DecRecursionCount() { --nRecursionCount; }
+ /// A pure recursion return, no iteration.
+ bool IsInRecursionReturn() const { return bInRecursionReturn &&
+ !bInIterationReturn; }
+ void SetInRecursionReturn( bool b )
+ {
+ // Do not use IsInRecursionReturn() here, it decouples iteration.
+ if (b && !bInRecursionReturn)
+ aInsertPos = aRecursionFormulas.begin();
+ bInRecursionReturn = b;
+ }
+ bool IsDoingRecursion() const { return bDoingRecursion; }
+ void SetDoingRecursion( bool b ) { bDoingRecursion = b; }
+ void Insert( ScFormulaCell* p, BOOL bOldRunning, double fResult )
+ {
+ aRecursionFormulas.insert( aInsertPos, ScFormulaRecursionEntry( p,
+ bOldRunning, fResult));
+ }
+ ScFormulaRecursionList::iterator GetStart()
+ {
+ return aRecursionFormulas.begin();
+ }
+ ScFormulaRecursionList::iterator GetEnd()
+ {
+ return aRecursionFormulas.end();
+ }
+ bool IsInIterationReturn() const { return bInIterationReturn; }
+ void SetInIterationReturn( bool b )
+ {
+ // An iteration return is always coupled to a recursion return.
+ SetInRecursionReturn( b);
+ bInIterationReturn = b;
+ }
+ bool IsDoingIteration() const { return nIteration > 0; }
+ USHORT GetIteration() const { return nIteration; }
+ bool & GetConvergingReference() { return bConverging; }
+ void StartIteration()
+ {
+ SetInIterationReturn( false);
+ nIteration = 1;
+ bConverging = false;
+ aLastIterationStart = GetIterationStart();
+ }
+ void ResumeIteration()
+ {
+ SetInIterationReturn( false);
+ aLastIterationStart = GetIterationStart();
+ }
+ void IncIteration() { ++nIteration; }
+ void EndIteration()
+ {
+ aRecursionFormulas.erase( GetIterationStart(), GetIterationEnd());
+ ResetIteration();
+ }
+ ScFormulaRecursionList::iterator GetLastIterationStart() { return aLastIterationStart; }
+ ScFormulaRecursionList::iterator GetIterationStart() { return GetStart(); }
+ ScFormulaRecursionList::iterator GetIterationEnd() { return GetEnd(); }
+ /** Any return, recursion or iteration, iteration is always coupled with
+ recursion. */
+ bool IsInReturn() const { return bInRecursionReturn; }
+ const ScFormulaRecursionList& GetList() const { return aRecursionFormulas; }
+ ScFormulaRecursionList& GetList() { return aRecursionFormulas; }
+ ScRecursionInIterationStack& GetRecursionInIterationStack() { return aRecursionInIterationStack; }
+ void Clear()
+ {
+ aRecursionFormulas.clear();
+ while (!aRecursionInIterationStack.empty())
+ aRecursionInIterationStack.pop();
+ Init();
+ }
+};
+
+#endif // INCLUDED_RECURSIONHELPER_HXX