blob: c5f88932be88cd8e9b4ec9d559dd57c89dba4746 [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 java.util.Iterator;
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;
/**
* Returns the substring of the value of $arg1 that follows in the value of
* $arg1 the first occurrence of a sequence of collation units that provides a
* minimal match to the collation units of $arg2 according to the collation that
* is used.
*/
public class FnSubstringAfter extends Function {
private static Collection _expected_args = null;
/**
* Constructor for FnSubstringAfter.
*/
public FnSubstringAfter() {
super(new QName("substring-after"), 2);
}
/**
* Evaluate arguments.
*
* @param args
* argument expressions.
* @throws DynamicError
* Dynamic error.
* @return Result of evaluation.
*/
public ResultSequence evaluate(Collection args, org.eclipse.wst.xml.xpath2.api.EvaluationContext ec) throws DynamicError {
return substring_after(args);
}
/**
* Substring-After operation.
*
* @param args
* Result from the expressions evaluation.
* @throws DynamicError
* Dynamic error.
* @return Result of fn:substring-after operation.
*/
public static ResultSequence substring_after(Collection args)
throws DynamicError {
Collection cargs = Function.convert_arguments(args, expected_args());
// get args
Iterator argiter = cargs.iterator();
ResultSequence arg1 = (ResultSequence) argiter.next();
String str1 = "";
String str2 = "";
if (!arg1.empty()) {
str1 = ((XSString) arg1.first()).value();
}
ResultSequence arg2 = (ResultSequence) argiter.next();
if (!arg2.empty()) {
str2 = ((XSString) arg2.first()).value();
}
int str1len = str1.length();
int str2len = str2.length();
if (str2len == 0) {
return new XSString(str1);
}
int index = str1.indexOf(str2);
if (index == -1) {
return new XSString("");
}
String result = "";
if ((index + str2len) < str1len) {
index += str2len;
result = str1.substring(index, str1len);
}
return new XSString(result);
}
/**
* Obtain a list of expected arguments.
*
* @return Result of operation.
*/
public synchronized static Collection expected_args() {
if (_expected_args == null) {
_expected_args = new ArrayList();
SeqType arg = new SeqType(new XSString(), SeqType.OCC_QMARK);
_expected_args.add(arg);
_expected_args.add(arg);
}
return _expected_args;
}
}