package abstrasy.pcfx;
import abstrasy.INTERFACE;
import abstrasy.Interface;
import abstrasy.Node;
import abstrasy.PCoder;
import abstrasy.ASymbol;
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_abstract extends PCFx {
public PCFx_abstract() {
}
/**
* eval
*
* @param startAt Node
* @return Node
* @throws Exception
* @todo Implémenter cette méthode abstrasy.PCFx
*/
public Node eval(Node startAt) throws Exception {
/**
* forme générale : (abstract op 'symbole)
* ==============
*
* types :
* =====
*
* (abstract function 'symbole)
*
* (abstract interface)
*
*/
int arg_o = 1;
Node arg0 = startAt.getSubNode(arg_o++, Node.TYPE_PCODE | Node.TYPE_INTERFACE);
if (arg0.isInterface()) {
//
// C'est une interface...
//
//
// vérifier que nous somme à l'intérieur d'une section interface...
//
Node inode = INTERFACE.get();
if (inode == null)
throw new InterpreterException(StdErrors.Abstract_misplaced);
Interface ifaceTo = (Interface) inode.getExternal();
Interface ifaceFrom= (Interface) arg0.getExternal();
ifaceTo.imports(ifaceFrom);
return null;
}
else {
//
// C'est un pcode...
//
//
// récupération du type primaire...
//
int tn = arg0.getPCFx_Code();
//
// récupération du symbole...
//
ASymbol symbole = new ASymbol(PCoder.unselfing(startAt.getSubNode(arg_o++, Node.TYPE_QSYMBOL).getSymbol().getStr()));
if (symbole.getIdsCnt()!=1)
throw new InterpreterException(StdErrors.Local_symbol_required);
//
// vérification de la fin de l'expression
//
startAt.isGoodArgsCnt(arg_o);
//
// vérifier que nous somme à l'intérieur d'une section interface...
//
Node inode = INTERFACE.get();
if (inode == null)
throw new InterpreterException(StdErrors.Abstract_misplaced);
Interface iface = (Interface) inode.getExternal();
//
// c'est parti...
//
if (tn == PCoder.PC_FUNCTION)
iface.declare(symbole.getStr(), Node.TYPE_FUNCTION);
else
throw new InterpreterException(StdErrors.Syntax_error);
return null;
}
}
}