Created
June 9, 2013 04:34
-
-
Save tml/5737665 to your computer and use it in GitHub Desktop.
This file, src/functions/FunctionSubstring.cpp, is missing from the current Hg repo for xqilla (and has been missing for some time).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2001-2008 | |
* DecisionSoft Limited. All rights reserved. | |
* Copyright (c) 2004-2008 | |
* Oracle. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
* | |
* $Id$ | |
*/ | |
#include "../config/xqilla_config.h" | |
#include <xqilla/functions/FunctionSubstring.hpp> | |
#include <xqilla/items/ATStringOrDerived.hpp> | |
#include <xqilla/items/ATDoubleOrDerived.hpp> | |
#include <xqilla/exceptions/FunctionException.hpp> | |
#include <xqilla/utils/XPath2Utils.hpp> | |
#include <xqilla/context/DynamicContext.hpp> | |
#include <xqilla/mapm/m_apm.h> | |
#include <xqilla/items/DatatypeFactory.hpp> | |
#include <xercesc/util/XMLString.hpp> | |
const XMLCh FunctionSubstring::name[] = { | |
XERCES_CPP_NAMESPACE_QUALIFIER chLatin_s, XERCES_CPP_NAMESPACE_QUALIFIER chLatin_u, XERCES_CPP_NAMESPACE_QUALIFIER chLatin_b, | |
XERCES_CPP_NAMESPACE_QUALIFIER chLatin_s, XERCES_CPP_NAMESPACE_QUALIFIER chLatin_t, XERCES_CPP_NAMESPACE_QUALIFIER chLatin_r, | |
XERCES_CPP_NAMESPACE_QUALIFIER chLatin_i, XERCES_CPP_NAMESPACE_QUALIFIER chLatin_n, XERCES_CPP_NAMESPACE_QUALIFIER chLatin_g, | |
XERCES_CPP_NAMESPACE_QUALIFIER chNull | |
}; | |
const unsigned int FunctionSubstring::minArgs = 2; | |
const unsigned int FunctionSubstring::maxArgs = 3; | |
/** | |
* fn:substring($sourceString as xs:string?, $startingLoc as xs:double) as xs:string | |
* fn:substring($sourceString as xs:string?, $startingLoc as xs:double, $length as xs:double) as xs:string | |
**/ | |
FunctionSubstring::FunctionSubstring(const VectorOfASTNodes &args, XPath2MemoryManager* memMgr) | |
: ConstantFoldingFunction(name, minArgs, maxArgs, "string?, double, double", args, memMgr) | |
{ | |
_src.getStaticType().flags = StaticType::STRING_TYPE; | |
} | |
Sequence FunctionSubstring::createSequence(DynamicContext* context, int flags) const | |
{ | |
XPath2MemoryManager* memMgr = context->getMemoryManager(); | |
Sequence string=getParamNumber(1, context)->toSequence(context); | |
if(string.isEmpty()) | |
return Sequence(context->getItemFactory()->createString(XERCES_CPP_NAMESPACE_QUALIFIER XMLUni::fgZeroLenString, context), memMgr); | |
ATStringOrDerived::Ptr str = (const ATStringOrDerived::Ptr )string.first(); | |
Sequence startingLoc=getParamNumber(2,context)->toSequence(context); | |
ATDoubleOrDerived::Ptr index = (const ATDoubleOrDerived::Ptr )startingLoc.first(); | |
ATDoubleOrDerived::Ptr subStrLength; | |
if(getNumArgs()>2) | |
{ | |
Sequence length=getParamNumber(3,context)->toSequence(context); | |
subStrLength=(const ATDoubleOrDerived::Ptr )length.first(); | |
} | |
else { | |
subStrLength=(const ATDoubleOrDerived::Ptr )context->getItemFactory()->createDouble((long)((const ATStringOrDerived*)str)->getLength(), context); | |
} | |
return Sequence(((const ATStringOrDerived*)str)->substring(index, subStrLength, context), memMgr); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment