Rewrite pretty much all variable and parameter handling. Makes global and local variables be handled differently. Global variables are no longer part of the variables stack, and are lazily evaluated. Fixes bugs 117658, 92929 and some unfiled bugs and fixes remaining parts of bugs 83651 and 96802. Patch by sicking, r=Pike sr=bz. Fix for bug 156464: fix rounding problems in module, allow patterns without any '0's in the integer part and fix problems with grouping for standalone. Patch by sicking, r=Pike sr=bz. Fix for bug 157340 (Probable bugs in extensions/transformiix/source/base/txMozillaString.h). Patch by peterv, r=Pike, sr=bz. Fix for bug 146967 (Clean up Transformiix strings). Patch by peterv, r=sicking, sr=jst. Fix for bug 156464 (Remove static strings from Transformiix). Patch by peterv, r=Pike, sr=jst. git-svn-id: svn://10.0.0.236/trunk@126495 18797224-902f-48f8-a5cc-f745e15eee43
115 lines
3.6 KiB
C++
115 lines
3.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public 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.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is TransforMiiX XSLT processor.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Jonas Sicking.
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
* Jonas Sicking. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Jonas Sicking <sicking@bigfoot.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef TRANSFRMX_VARIABLEMAP_H
|
|
#define TRANSFRMX_VARIABLEMAP_H
|
|
|
|
#include "txError.h"
|
|
#include "XMLUtils.h"
|
|
#include "ExprResult.h"
|
|
#include "txExpandedNameMap.h"
|
|
|
|
class txVariableMap {
|
|
public:
|
|
txVariableMap(txVariableMap* aParentMap);
|
|
|
|
nsresult bindVariable(const txExpandedName& aName,
|
|
ExprResult* aValue, MBool aOwned);
|
|
|
|
ExprResult* getVariable(const txExpandedName& aName);
|
|
|
|
private:
|
|
// Parent map of variables
|
|
txVariableMap* mParentMap;
|
|
|
|
// Map with owned variables
|
|
txExpandedNameMap mOwnedVariables;
|
|
|
|
// Map with non-owned variables
|
|
txExpandedNameMap mNonOwnedVariables;
|
|
};
|
|
|
|
|
|
inline txVariableMap::txVariableMap(txVariableMap* aParentMap)
|
|
: mParentMap(aParentMap),
|
|
mOwnedVariables(MB_TRUE),
|
|
mNonOwnedVariables(MB_FALSE)
|
|
{
|
|
}
|
|
|
|
inline nsresult txVariableMap::bindVariable(const txExpandedName& aName,
|
|
ExprResult* aValue, MBool aOwned)
|
|
{
|
|
TxObject* var = 0;
|
|
txVariableMap* map = this;
|
|
while (!var && map) {
|
|
var = map->mOwnedVariables.get(aName);
|
|
if (!var) {
|
|
var = map->mNonOwnedVariables.get(aName);
|
|
}
|
|
map = map->mParentMap;
|
|
}
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
if (!var) {
|
|
if (aOwned) {
|
|
rv = mOwnedVariables.add(aName, aValue);
|
|
}
|
|
else {
|
|
rv = mNonOwnedVariables.add(aName, aValue);
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
inline ExprResult* txVariableMap::getVariable(const txExpandedName& aName)
|
|
{
|
|
ExprResult* var = 0;
|
|
txVariableMap* map = this;
|
|
while (!var && map) {
|
|
var = (ExprResult*)map->mOwnedVariables.get(aName);
|
|
if (!var) {
|
|
var = (ExprResult*)map->mNonOwnedVariables.get(aName);
|
|
}
|
|
map = map->mParentMap;
|
|
}
|
|
return var;
|
|
}
|
|
|
|
|
|
#endif //TRANSFRMX_VARIABLEMAP_H
|