package abstrasy.pcfx;
import abstrasy.Node;
import abstrasy.PCoder;
import abstrasy.interpreter.InterpreterException;
import abstrasy.interpreter.StdErrors;
/**
* Abstrasy Interpreter
*
* Copyright : Copyright (c) 2006-2012, Luc Bruninx.
*
* Concédée sous licence EUPL, version 1.1 uniquement (la «Licence»).
*
* Vous ne pouvez utiliser la présente oeuvre que conformément à la Licence.
* Vous pouvez obtenir une copie de la Licence à l’adresse suivante:
*
* http://www.osor.eu/eupl
*
* Sauf obligation légale ou contractuelle écrite, le logiciel distribué sous
* la Licence est distribué "en l’état", SANS GARANTIES OU CONDITIONS QUELLES
* QU’ELLES SOIENT, expresses ou implicites.
*
* Consultez la Licence pour les autorisations et les restrictions
* linguistiques spécifiques relevant de la Licence.
*
*
* @author Luc Bruninx
* @version 1.0
*/
public class PCFx_extract extends PCFx_substitute {
public PCFx_extract() {
}
/**
* eval
*
* @param startAt Node
* @return Node
* @throws Exception
* @todo Implémenter cette méthode abstrasy.PCFx
*/
public Node eval(Node startAt) throws Exception {
/*
* forme: (extract n from '()) -> quote-encoded
*
* Remarque:
* --------
* (extract -1 from '(+ 1 2)) -> '2
*/
startAt.isGoodArgsCnt(4);
startAt.requirePCode(2, PCoder.PC_FROM);
int index = (int) startAt.getSubNode(1, Node.TYPE_NUMBER).getNumber();
Node xnode = startAt.getSubNode(3, Node.VTYPE_METAEXPRESSION);
/*
* Accepte un numéro d'index négatif. Dans ce cas, on commence par la fin de la méta-expression.
*/
if (index < 0) {
if ((xnode.size() + index) < 0) {
throw new InterpreterException(StdErrors.extend(StdErrors.Out_of_range, "" + index));
}
index = xnode.size() + index;
}
return Node.quoteEncoded_encode(xnode.elementAt(index));
}
}