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
316 lines
9.7 KiB
C++
316 lines
9.7 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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 The MITRE Corporation.
|
|
* Portions created by MITRE are Copyright (C) 1999 The MITRE Corporation.
|
|
*
|
|
* Portions created by Keith Visco as a Non MITRE employee,
|
|
* (C) 1999 Keith Visco. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Keith Visco, kvisco@ziplink.net
|
|
* -- original author.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* StringFunctionCall
|
|
* A representation of the XPath String funtions
|
|
**/
|
|
|
|
#include "FunctionLib.h"
|
|
#include "XMLDOMUtils.h"
|
|
#include "XMLUtils.h"
|
|
#include "txAtoms.h"
|
|
#include "txIXPathContext.h"
|
|
#include <math.h>
|
|
|
|
/**
|
|
* Creates a StringFunctionCall of the given type
|
|
**/
|
|
StringFunctionCall::StringFunctionCall(StringFunctions aType) : mType(aType)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Evaluates this Expr based on the given context node and processor state
|
|
* @param context the context node for evaluation of this Expr
|
|
* @param ps the ContextState containing the stack information needed
|
|
* for evaluation
|
|
* @return the result of the evaluation
|
|
**/
|
|
ExprResult* StringFunctionCall::evaluate(txIEvalContext* aContext)
|
|
{
|
|
txListIterator iter(¶ms);
|
|
switch (mType) {
|
|
case CONCAT:
|
|
{
|
|
if (!requireParams(2, aContext))
|
|
return new StringResult("error");
|
|
|
|
String resultStr;
|
|
while (iter.hasNext()) {
|
|
evaluateToString((Expr*)iter.next(), aContext, resultStr);
|
|
}
|
|
return new StringResult(resultStr);
|
|
}
|
|
case CONTAINS:
|
|
{
|
|
if (!requireParams(2, 2, aContext))
|
|
return new StringResult("error");
|
|
|
|
String arg1, arg2;
|
|
evaluateToString((Expr*)iter.next(), aContext, arg1);
|
|
evaluateToString((Expr*)iter.next(), aContext, arg2);
|
|
return new BooleanResult(arg1.indexOf(arg2) >= 0);
|
|
}
|
|
case NORMALIZE_SPACE:
|
|
{
|
|
if (!requireParams(0, 1, aContext))
|
|
return new StringResult("error");
|
|
|
|
String resultStr;
|
|
if (iter.hasNext())
|
|
evaluateToString((Expr*)iter.next(), aContext, resultStr);
|
|
else
|
|
XMLDOMUtils::getNodeValue(aContext->getContextNode(),
|
|
resultStr);
|
|
|
|
MBool addSpace = MB_FALSE;
|
|
MBool first = MB_TRUE;
|
|
String normed(resultStr.length());
|
|
UNICODE_CHAR c;
|
|
PRUint32 src;
|
|
for (src = 0; src < resultStr.length(); src++) {
|
|
c = resultStr.charAt(src);
|
|
if (XMLUtils::isWhitespace(c)) {
|
|
addSpace = MB_TRUE;
|
|
}
|
|
else {
|
|
if (addSpace && !first)
|
|
normed.append(' ');
|
|
|
|
normed.append(c);
|
|
addSpace = MB_FALSE;
|
|
first = MB_FALSE;
|
|
}
|
|
}
|
|
return new StringResult(normed);
|
|
}
|
|
case STARTS_WITH:
|
|
{
|
|
if (!requireParams(2, 2, aContext))
|
|
return new StringResult("error");
|
|
|
|
String arg1, arg2;
|
|
evaluateToString((Expr*)iter.next(), aContext, arg1);
|
|
evaluateToString((Expr*)iter.next(), aContext, arg2);
|
|
return new BooleanResult(arg1.indexOf(arg2) == 0);
|
|
}
|
|
case STRING_LENGTH:
|
|
{
|
|
if (!requireParams(0, 1, aContext))
|
|
return new StringResult("error");
|
|
|
|
String resultStr;
|
|
if (iter.hasNext())
|
|
evaluateToString((Expr*)iter.next(), aContext, resultStr);
|
|
else
|
|
XMLDOMUtils::getNodeValue(aContext->getContextNode(),
|
|
resultStr);
|
|
return new NumberResult(resultStr.length());
|
|
}
|
|
case SUBSTRING:
|
|
{
|
|
if (!requireParams(2, 3, aContext))
|
|
return new StringResult("error");
|
|
|
|
String src;
|
|
double start, end;
|
|
evaluateToString((Expr*)iter.next(), aContext, src);
|
|
start = evaluateToNumber((Expr*)iter.next(), aContext);
|
|
|
|
// check for NaN or +/-Inf
|
|
if (Double::isNaN(start) ||
|
|
Double::isInfinite(start) ||
|
|
start >= src.length() + 0.5)
|
|
return new StringResult();
|
|
|
|
start = floor(start + 0.5) - 1;
|
|
if (iter.hasNext()) {
|
|
end = start + evaluateToNumber((Expr*)iter.next(),
|
|
aContext);
|
|
if (Double::isNaN(end) || end < 0)
|
|
return new StringResult();
|
|
|
|
if (end > src.length())
|
|
end = src.length();
|
|
else
|
|
end = floor(end + 0.5);
|
|
}
|
|
else {
|
|
end = src.length();
|
|
}
|
|
|
|
if (start < 0)
|
|
start = 0;
|
|
|
|
if (start > end)
|
|
return new StringResult();
|
|
|
|
String resultStr;
|
|
src.subString((PRUint32)start, (PRUint32)end, resultStr);
|
|
return new StringResult(resultStr);
|
|
}
|
|
case SUBSTRING_AFTER:
|
|
{
|
|
if (!requireParams(2, 2, aContext))
|
|
return new StringResult("error");
|
|
|
|
String arg1, arg2;
|
|
evaluateToString((Expr*)iter.next(), aContext, arg1);
|
|
evaluateToString((Expr*)iter.next(), aContext, arg2);
|
|
PRInt32 idx = arg1.indexOf(arg2);
|
|
if (idx != kNotFound) {
|
|
PRUint32 len = arg2.length();
|
|
arg1.subString(idx + len, arg2);
|
|
return new StringResult(arg2);
|
|
}
|
|
return new StringResult();
|
|
}
|
|
case SUBSTRING_BEFORE:
|
|
{
|
|
if (!requireParams(2, 2, aContext))
|
|
return new StringResult("error");
|
|
|
|
String arg1, arg2;
|
|
evaluateToString((Expr*)iter.next(), aContext, arg1);
|
|
evaluateToString((Expr*)iter.next(), aContext, arg2);
|
|
PRInt32 idx = arg1.indexOf(arg2);
|
|
if (idx != kNotFound) {
|
|
arg2.clear();
|
|
arg1.subString(0, idx, arg2);
|
|
return new StringResult(arg2);
|
|
}
|
|
return new StringResult();
|
|
}
|
|
case TRANSLATE:
|
|
{
|
|
if (!requireParams(3, 3, aContext))
|
|
return new StringResult("error");
|
|
|
|
String src;
|
|
evaluateToString((Expr*)iter.next(), aContext, src);
|
|
if (src.isEmpty())
|
|
return new StringResult();
|
|
|
|
String oldChars, newChars, dest;
|
|
evaluateToString((Expr*)iter.next(), aContext, oldChars);
|
|
evaluateToString((Expr*)iter.next(), aContext, newChars);
|
|
PRUint32 i;
|
|
for (i = 0; i < src.length(); i++) {
|
|
PRInt32 idx = oldChars.indexOf(src.charAt(i));
|
|
if (idx != kNotFound) {
|
|
if (idx < newChars.length())
|
|
dest.append(newChars.charAt((PRUint32)idx));
|
|
}
|
|
else {
|
|
dest.append(src.charAt(i));
|
|
}
|
|
}
|
|
return new StringResult(dest);
|
|
}
|
|
case STRING:
|
|
{
|
|
if (!requireParams(0, 1, aContext))
|
|
return new StringResult("error");
|
|
|
|
String resultStr;
|
|
if (iter.hasNext())
|
|
evaluateToString((Expr*)iter.next(), aContext, resultStr);
|
|
else
|
|
XMLDOMUtils::getNodeValue(aContext->getContextNode(),
|
|
resultStr);
|
|
return new StringResult(resultStr);
|
|
}
|
|
}
|
|
|
|
String err("Internal error");
|
|
aContext->receiveError(err, NS_ERROR_UNEXPECTED);
|
|
return new StringResult("error");
|
|
}
|
|
|
|
nsresult StringFunctionCall::getNameAtom(txAtom** aAtom)
|
|
{
|
|
switch (mType) {
|
|
case CONCAT:
|
|
{
|
|
*aAtom = txXPathAtoms::concat;
|
|
break;
|
|
}
|
|
case CONTAINS:
|
|
{
|
|
*aAtom = txXPathAtoms::contains;
|
|
break;
|
|
}
|
|
case NORMALIZE_SPACE:
|
|
{
|
|
*aAtom = txXPathAtoms::normalizeSpace;
|
|
break;
|
|
}
|
|
case STARTS_WITH:
|
|
{
|
|
*aAtom = txXPathAtoms::startsWith;
|
|
break;
|
|
}
|
|
case STRING:
|
|
{
|
|
*aAtom = txXPathAtoms::string;
|
|
break;
|
|
}
|
|
case STRING_LENGTH:
|
|
{
|
|
*aAtom = txXPathAtoms::stringLength;
|
|
break;
|
|
}
|
|
case SUBSTRING:
|
|
{
|
|
*aAtom = txXPathAtoms::substring;
|
|
break;
|
|
}
|
|
case SUBSTRING_AFTER:
|
|
{
|
|
*aAtom = txXPathAtoms::substringAfter;
|
|
break;
|
|
}
|
|
case SUBSTRING_BEFORE:
|
|
{
|
|
*aAtom = txXPathAtoms::substringBefore;
|
|
break;
|
|
}
|
|
case TRANSLATE:
|
|
{
|
|
*aAtom = txXPathAtoms::translate;
|
|
break;
|
|
}
|
|
default:
|
|
{
|
|
*aAtom = 0;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
}
|
|
TX_ADDREF_ATOM(*aAtom);
|
|
return NS_OK;
|
|
}
|