blob: 573b071ba5ba9c56d2d42fd28530140d767ce876 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2010 Andrea Bittau, University College London, and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Andrea Bittau - initial API and implementation from the PsychoPath XPath 2.0
* David Carver - bug 282096 - improvements for surrogate handling
* Jesper Steen Moeller - bug 282096 - clean up string storage
* Mukul Gandhi - bug 280798 - PsychoPath support for JDK 1.4
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.internal.function;
import java.util.ArrayList;
import java.util.Collection;
import org.eclipse.wst.xml.xpath2.api.ResultSequence;
import org.eclipse.wst.xml.xpath2.processor.DynamicError;
import org.eclipse.wst.xml.xpath2.processor.internal.SeqType;
import org.eclipse.wst.xml.xpath2.processor.internal.types.QName;
import org.eclipse.wst.xml.xpath2.processor.internal.types.XSString;
/**
* <p>
* Conversion to lower-case function.
* </p>
*
* <p>
* Usage: fn:lower-case($arg as xs:string?) as xs:string
* </p>
*
* <p>
* This class returns the value of $arg after translating every character to its
* lower-case correspondent. Every character that does not have an lower-case
* correspondent is included in the returned value in its original form.
* </p>
*
* <p>
* If the value of $arg is the empty sequence, the zero-length string is
* returned.
* </p>
*/
public class FnLowerCase extends Function {
private static Collection _expected_args = null;
/**
* Constructor for FnLowerCase.
*/
public FnLowerCase() {
super(new QName("lower-case"), 1);
}
/**
* Evaluate the arguments.
*
* @param args
* are evaluated.
* @throws DynamicError
* Dynamic error.
* @return The evaluation of the arguments being converted to lower case.
*/
public ResultSequence evaluate(Collection args, org.eclipse.wst.xml.xpath2.api.EvaluationContext ec) throws DynamicError {
return lower_case(args);
}
/**
* Convert arguments to lower case.
*
* @param args
* are converted to lower case.
* @throws DynamicError
* Dynamic error.
* @return The result of converting the arguments to lower case.
*/
public static ResultSequence lower_case(Collection args)
throws DynamicError {
Collection cargs = Function.convert_arguments(args, expected_args());
ResultSequence arg1 = (ResultSequence) cargs.iterator().next();
if (arg1.empty()) {
return new XSString("");
}
String str = ((XSString) arg1.first()).value();
return new XSString(str.toLowerCase());
}
/**
* Calculate the expected arguments.
*
* @return The expected arguments.
*/
public synchronized static Collection expected_args() {
if (_expected_args == null) {
_expected_args = new ArrayList();
_expected_args.add(new SeqType(new XSString(), SeqType.OCC_QMARK));
}
return _expected_args;
}
}