1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
/* -*- 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 code.
*
* The Initial Developer of the Original Code is
* Jonas Sicking.
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Jonas Sicking <sicking@bigfoot.com>
* Peter Van der Beken <peterv@propagandism.org>
*
* 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 ***** */
#include "txNodeSorter.h"
#include "txExecutionState.h"
#include "txXPathResultComparator.h"
#include "txAtoms.h"
#include "txNodeSetContext.h"
#include "ExprResult.h"
#include "Expr.h"
#include "txStringUtils.h"
#include "prmem.h"
#include "nsQuickSort.h"
/*
* Sorts Nodes as specified by the W3C XSLT 1.0 Recommendation
*/
txNodeSorter::txNodeSorter() : mNKeys(0)
{
}
txNodeSorter::~txNodeSorter()
{
txListIterator iter(&mSortKeys);
while (iter.hasNext()) {
SortKey* key = (SortKey*)iter.next();
delete key->mComparator;
delete key;
}
}
nsresult
txNodeSorter::addSortElement(Expr* aSelectExpr, Expr* aLangExpr,
Expr* aDataTypeExpr, Expr* aOrderExpr,
Expr* aCaseOrderExpr, txIEvalContext* aContext)
{
SortKey* key = new SortKey;
NS_ENSURE_TRUE(key, NS_ERROR_OUT_OF_MEMORY);
nsresult rv = NS_OK;
// Select
key->mExpr = aSelectExpr;
// Order
MBool ascending = MB_TRUE;
if (aOrderExpr) {
nsRefPtr<txAExprResult> exprRes;
rv = aOrderExpr->evaluate(aContext, getter_AddRefs(exprRes));
NS_ENSURE_SUCCESS(rv, rv);
nsAutoString attrValue;
exprRes->stringValue(attrValue);
if (TX_StringEqualsAtom(attrValue, txXSLTAtoms::descending)) {
ascending = MB_FALSE;
}
else if (!TX_StringEqualsAtom(attrValue, txXSLTAtoms::ascending)) {
delete key;
// XXX ErrorReport: unknown value for order attribute
return NS_ERROR_XSLT_BAD_VALUE;
}
}
// Create comparator depending on datatype
nsAutoString dataType;
if (aDataTypeExpr) {
nsRefPtr<txAExprResult> exprRes;
rv = aDataTypeExpr->evaluate(aContext, getter_AddRefs(exprRes));
NS_ENSURE_SUCCESS(rv, rv);
exprRes->stringValue(dataType);
}
if (!aDataTypeExpr || TX_StringEqualsAtom(dataType, txXSLTAtoms::text)) {
// Text comparator
// Language
nsAutoString lang;
if (aLangExpr) {
nsRefPtr<txAExprResult> exprRes;
rv = aLangExpr->evaluate(aContext, getter_AddRefs(exprRes));
NS_ENSURE_SUCCESS(rv, rv);
exprRes->stringValue(lang);
}
// Case-order
MBool upperFirst = PR_FALSE;
if (aCaseOrderExpr) {
nsRefPtr<txAExprResult> exprRes;
rv = aCaseOrderExpr->evaluate(aContext, getter_AddRefs(exprRes));
NS_ENSURE_SUCCESS(rv, rv);
nsAutoString attrValue;
exprRes->stringValue(attrValue);
if (TX_StringEqualsAtom(attrValue, txXSLTAtoms::upperFirst)) {
upperFirst = PR_TRUE;
}
else if (!TX_StringEqualsAtom(attrValue,
txXSLTAtoms::lowerFirst)) {
delete key;
// XXX ErrorReport: unknown value for case-order attribute
return NS_ERROR_XSLT_BAD_VALUE;
}
}
key->mComparator = new txResultStringComparator(ascending,
upperFirst,
lang);
NS_ENSURE_TRUE(key->mComparator, NS_ERROR_OUT_OF_MEMORY);
}
else if (TX_StringEqualsAtom(dataType, txXSLTAtoms::number)) {
// Number comparator
key->mComparator = new txResultNumberComparator(ascending);
NS_ENSURE_TRUE(key->mComparator, NS_ERROR_OUT_OF_MEMORY);
}
else {
// XXX ErrorReport: unknown data-type
delete key;
return NS_ERROR_XSLT_BAD_VALUE;
}
mSortKeys.add(key);
mNKeys++;
return NS_OK;
}
nsresult
txNodeSorter::sortNodeSet(txNodeSet* aNodes, txExecutionState* aEs,
txNodeSet** aResult)
{
if (mNKeys == 0 || aNodes->isEmpty()) {
NS_ADDREF(*aResult = aNodes);
return NS_OK;
}
*aResult = nsnull;
nsRefPtr<txNodeSet> sortedNodes;
nsresult rv = aEs->recycler()->getNodeSet(getter_AddRefs(sortedNodes));
NS_ENSURE_SUCCESS(rv, rv);
txNodeSetContext* evalContext = new txNodeSetContext(aNodes, aEs);
NS_ENSURE_TRUE(evalContext, NS_ERROR_OUT_OF_MEMORY);
rv = aEs->pushEvalContext(evalContext);
NS_ENSURE_SUCCESS(rv, rv);
// Create and set up memoryblock for sort-values and indexarray
PRUint32 len = NS_STATIC_CAST(PRUint32, aNodes->size());
void* mem = PR_Malloc(len * (sizeof(PRUint32) + mNKeys * sizeof(TxObject*)));
NS_ENSURE_TRUE(mem, NS_ERROR_OUT_OF_MEMORY);
PRUint32* indexes = NS_STATIC_CAST(PRUint32*, mem);
TxObject** sortValues = NS_REINTERPRET_CAST(TxObject**, indexes + len);
PRUint32 i;
for (i = 0; i < len; ++i) {
indexes[i] = i;
}
memset(sortValues, 0, len * mNKeys * sizeof(TxObject*));
// Sort the indexarray
SortData sortData;
sortData.mNodeSorter = this;
sortData.mContext = evalContext;
sortData.mSortValues = sortValues;
sortData.mRv = NS_OK;
NS_QuickSort(indexes, len, sizeof(PRUint32), compareNodes, &sortData);
// Delete these here so we don't have to deal with them at every possible
// failurepoint
PRUint32 numSortValues = len * mNKeys;
for (i = 0; i < numSortValues; ++i) {
delete sortValues[i];
}
if (NS_FAILED(sortData.mRv)) {
PR_Free(mem);
// The txExecutionState owns the evalcontext so no need to handle it
return sortData.mRv;
}
// Insert nodes in sorted order in new nodeset
for (i = 0; i < len; ++i) {
rv = sortedNodes->append(aNodes->get(indexes[i]));
if (NS_FAILED(rv)) {
PR_Free(mem);
// The txExecutionState owns the evalcontext so no need to handle it
return rv;
}
}
PR_Free(mem);
delete aEs->popEvalContext();
NS_ADDREF(*aResult = sortedNodes);
return NS_OK;
}
// static
int
txNodeSorter::compareNodes(const void* aIndexA, const void* aIndexB,
void* aSortData)
{
SortData* sortData = NS_STATIC_CAST(SortData*, aSortData);
NS_ENSURE_SUCCESS(sortData->mRv, -1);
txListIterator iter(&sortData->mNodeSorter->mSortKeys);
PRUint32 indexA = *NS_STATIC_CAST(const PRUint32*, aIndexA);
PRUint32 indexB = *NS_STATIC_CAST(const PRUint32*, aIndexB);
TxObject** sortValuesA = sortData->mSortValues +
indexA * sortData->mNodeSorter->mNKeys;
TxObject** sortValuesB = sortData->mSortValues +
indexB * sortData->mNodeSorter->mNKeys;
int i;
// Step through each key until a difference is found
for (i = 0; i < sortData->mNodeSorter->mNKeys; ++i) {
SortKey* key = (SortKey*)iter.next();
// Lazy create sort values
if (!sortValuesA[i] &&
!calcSortValue(sortValuesA[i], key, sortData, indexA)) {
return -1;
}
if (!sortValuesB[i] &&
!calcSortValue(sortValuesB[i], key, sortData, indexB)) {
return -1;
}
// Compare node values
int compRes = key->mComparator->compareValues(sortValuesA[i],
sortValuesB[i]);
if (compRes != 0)
return compRes;
}
// All keys have the same value for these nodes
return indexA - indexB;
}
//static
PRBool
txNodeSorter::calcSortValue(TxObject*& aSortValue, SortKey* aKey,
SortData* aSortData, PRUint32 aNodeIndex)
{
aSortData->mContext->setPosition(aNodeIndex + 1); // position is 1-based
nsRefPtr<txAExprResult> res;
nsresult rv = aKey->mExpr->evaluate(aSortData->mContext,
getter_AddRefs(res));
if (NS_FAILED(rv)) {
aSortData->mRv = rv;
return PR_FALSE;
}
aSortValue = aKey->mComparator->createSortableValue(res);
if (!aSortValue) {
aSortData->mRv = NS_ERROR_OUT_OF_MEMORY;
return PR_FALSE;
}
return PR_TRUE;
}
|