blob: 35a14fac41e92673e2b40fd8b7e00c0bc6923482 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 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 - STAR - bug 262765 - Fixed arguments for Name function.
* Jesper Steen Moeller - bug 285145 - implement full arity checking
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.internal.function;
import org.eclipse.wst.xml.xpath2.processor.DynamicError;
import org.eclipse.wst.xml.xpath2.processor.ResultSequence;
import org.eclipse.wst.xml.xpath2.processor.ResultSequenceFactory;
import org.eclipse.wst.xml.xpath2.processor.internal.*;
import org.eclipse.wst.xml.xpath2.processor.internal.types.*;
import java.util.*;
/**
* Returns the name of a node, as an xs:string that is either the zero-length
* string, or has the lexical form of an xs:QName.
*/
public class FnName extends Function {
private static Collection _expected_args = null;
/**
* Constructor for FnName.
*/
public FnName() {
super(new QName("name"), 0, 1);
}
/**
* Evaluate arguments.
*
* @param args
* argument expressions.
* @throws DynamicError
* Dynamic error.
* @return Result of evaluation.
*/
@Override
public ResultSequence evaluate(Collection args) throws DynamicError {
return name(args);
}
/**
* Name operation.
*
* @param args
* Result from the expressions evaluation.
* @throws DynamicError
* Dynamic error.
* @return Result of fn:name operation.
*/
public static ResultSequence name(Collection args) throws DynamicError {
if (args.isEmpty()) {
throw DynamicError.contextUndefined();
}
Collection cargs = Function.convert_arguments(args, expected_args());
ResultSequence rs = ResultSequenceFactory.create_new();
// get arg
ResultSequence arg1 = (ResultSequence) cargs.iterator().next();
if (arg1.empty()) {
rs.add(new XSString(""));
return rs;
}
NodeType an = (NodeType) arg1.first();
QName name = an.node_name();
String sname = "";
if (name != null)
sname = name.string();
rs.add(new XSString(sname));
return rs;
}
/**
* 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(SeqType.OCC_QMARK);
_expected_args.add(arg);
}
return _expected_args;
}
}