package abstrasy.pcfx;
import abstrasy.Interpreter;
import abstrasy.Node;
import abstrasy.PCoder;
import abstrasy.ROOT;
import abstrasy.interpreter.BaseContextSnapshot;
import abstrasy.interpreter.InterpreterException;
import abstrasy.interpreter.SilentException;
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_new extends PCFx {
public PCFx_new() {
}
/**
* Création d'un objet à partir d'une classe et d'une expression de post-initialisation.
*
* @param symClassNode
* @param postInit
* @param startAt
* @return ObjetNode
* @throws Exception
*/
public static Node create_object(Node symClassNode,Node postInit, Node startAt) throws Exception {
Node objectNode;
Interpreter interpreter = Interpreter.mySelf();
BaseContextSnapshot contextSnapshot = new BaseContextSnapshot(interpreter);
try {
/*
* Instanciation de la classe et exécution du constructeur...
*
* L'expression postInit est lancée automatiquement avec l'instanciation.
*/
Node old_root = ROOT.swap(symClassNode);
objectNode = Node.createDelegableFrom(symClassNode,postInit);
ROOT.restore(old_root);
}
catch (Exception ex) {
contextSnapshot.restore();
if (ex instanceof SilentException) {
throw ex;
}
if (Interpreter.isDebugMode()) {
ex.printStackTrace();
}
throw new InterpreterException(StdErrors.createTrace(startAt, ex));
}
return objectNode;
}
/**
* eval
*
* @param startAt Node
* @return Node
* @throws Exception
* @todo Implémenter cette méthode abstrasy.PCFx
*/
public Node eval(Node startAt) throws Exception {
//System.out.println("NEW:"+ startAt.nodeToString());
startAt.isGoodArgsLength(false, 2);
/**
* Formes (new <final> PATTERN/DELEGABLE)
* 0 +1
*
* (new <final> PATTERN/DELEGABLE using {...})
* 0 +1 2 3
*
*/
int i = 1;
/**
* Tester le mot clé final...
*/
boolean forceFinal = startAt.elementAt(i).getSymbolicValue().isPCode(PCoder.PC_FINAL);
if(forceFinal) i++;
/**
* La class est toujours le premier élémént...
*/
Node symClassNode = startAt.getSubNode(i++, Node.TYPE_PATTERN|Node.VTYPE_DELEGABLE); // CLASS/DELEGABLE
/**
* on récupère la fonction de post-initialisation si elle existe...
*/
Node postInit = null;
if (i < startAt.size()) {
startAt.requirePCode(i++, PCoder.PC_USING);
postInit = startAt.getSubNode(i++, Node.TYPE_LAZY);
}
/**
* s'il y a encore des paramètres, il y a un problème...
*/
if (i < startAt.size())
throw new InterpreterException(StdErrors.Syntax_error);
Node objectNode = create_object(symClassNode,postInit,startAt);
if (forceFinal)
/*
* Si forceFinal, l'instance de l'objet est créée finale...
*/
objectNode.setFinalNode(true);
return objectNode;
}
}