Package abstrasy.pcfx

Source Code of abstrasy.pcfx.PCFx_interface

package abstrasy.pcfx;


import abstrasy.ASymbol;
import abstrasy.Heap;
import abstrasy.Node;
import abstrasy.PCoder;

import abstrasy.interpreter.InterpreterException;
import abstrasy.interpreter.StdErrors;

import java.util.ArrayList;


/**
* 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_interface extends PCFx {

  public PCFx_interface() {
  }



  /**
   * 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 : (interface ['Symbole] {...})
         * ==============
         *
         * formes :
         * ======
         *     
         *     
         *      (interface {...}) -> ix
         *      (interface 'Symbole {...})   -> (define 'Symbole (interface {...}))
         *     
         *   Extraire l'interface d'un objet délégable:
         *   -----------------------------------------
         *      (interface delegable) -> ix
         *      (interface 'Symbole delable)
         *     
         *              
         */
   
    int arg_o=1;
       
        //
        // symbole (nom du pattern)
        //
        ASymbol symbole=null;
       
        //
        // body (corps de l'interface : lazy)
        //
        Node body=null;
       
        //
        // récupération du symbole s'il y en a un...
        //
        if(startAt.testSubNode(arg_o, Node.TYPE_QSYMBOL)){
            symbole=startAt.getSubNode(arg_o++, Node.TYPE_QSYMBOL).getSymbol();
            if(!symbole.isImmutable())
               throw new InterpreterException(StdErrors.Immutable_symbol_required);          
        }
       
        //
        // récupération du corps de l'interface...
        //
        body=startAt.getSubNode(arg_o++, Node.TYPE_LAZY|Node.VTYPE_DELEGABLE);
       
        //
        // vérification de la fin de l'expression
        //
        startAt.isGoodArgsCnt(arg_o);
       
        //
        // c'est parti...
        //
       
        if(body.isDelegable()){
            ArrayList<String> slots = Node.VDelegable.slotsOf(body);
            Node nbody=Node.createLazy();
            for(int i=slots.size()-1; i>=0;){
                String slot=slots.get(i--);
                if(Node.VDelegable.getSlot(body, slot).getQType()==Node.TYPE_FUNCTION)
                    nbody.append(Node.createExpr().append(Node.createPCode(PCoder.PC_ABSTRACT)).append(Node.createPCode(PCoder.PC_FUNCTION)).append(Node.createQSymbol(slot)));
            }
            body=nbody;
        }
       
    Node pnode = Node.createInterface(body);
       
    if(symbole!=null){
      Heap.defv(symbole,pnode);
      return null;
    }
    else
      return pnode;
   

  }

}
TOP

Related Classes of abstrasy.pcfx.PCFx_interface

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.