Package abstrasy.pcfx

Source Code of abstrasy.pcfx.PCFx_foreach_col$Row

package abstrasy.pcfx;


import abstrasy.Heap;
import abstrasy.Interpreter;
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_foreach_col extends PCFx {

    private static final class Ring{
        private int i = 0;
        private int k = 0;
        private Node[] s = null;
               
        Ring(Node[] s){
          this.s=s;
          this.i=0;
          this.k=0;
        }
       
        Node getNext(){
            k = i++ % s.length;
            return s[k];
        }
       
        boolean isRevolution(){
            return k==0;
        }
       
        int getLength(){
            return s.length;
        }
       
        Node getFirst(){
            return s[0];
        }
    }
   
    private static final class Row {

        private int p = 0;
        private Ring[] rings = null;
        private Node[] c = null;

        Row(Ring[] rings) {
            if(rings!=null){
                this.rings = rings;
                this.c = new Node[rings.length];
                this.p = 0;
                for(int i=this.rings.length-1;i>=0;){
                    p= Math.max(p, this.rings[i--].getLength());
                }
            }
        }

        boolean hasNext() {
            if (rings==null) { return false; }
            if(p > 0) {
                for(int i=rings.length-1;i>=0;i--){
                    c[i] = rings[i].getNext();
                }
                p--;
                return true;
            }
            return false;
        }
       
        Node[] getNext(){
            return c;
        }

    }

    public PCFx_foreach_col() {
    }
   
    private final static void _clear_closure_(Heap closure){ if (closure.isLoaded()) closure.clear(); }

    /**
     * eval
     *
     * @param startAt Node
     * @return Node
     * @throws Exception
     * @todo Implémenter cette méthode abstrasy.PCFx
     */
    public Node eval(Node startAt) throws Exception {
        /*
         * forme (foreach-col [[l1]...[ln]] do{...})
         *       (foreach-col [[l1]...[ln]] list{...})
         */
        int i = 1;
        startAt.isGoodArgsCnt(4); // 1 seule liste...
        Node rnode = null;
        Node xnode = null;
        Node snode = startAt.getSubNode(i++, Node.TYPE_CLIST);
        if(snode.size()==0){
            throw new InterpreterException(StdErrors.Empty_list); // La liste ne peut pas être vide...
        }
        Ring[] rings = new Ring[snode.size()];
        for(int ri=0;ri<rings.length;ri++){
            Node[] s=snode.getSubNode(ri, Node.TYPE_CLIST).getArray();
            if(s==null){
                throw new InterpreterException(StdErrors.Empty_list); // aucune liste source ne peut être vide...
            }
            rings[ri] = new Ring(s);
        }   
        Row row = new Row(rings);
       
        Node btype = startAt.getSubNode(i++, Node.TYPE_PCODE);
        Node enode = startAt.getSubNode(i++, Node.TYPE_LAZY);
        Interpreter interpreter = Interpreter.mySelf();
        boolean oldCanLoop = interpreter.isCanLoop();
        boolean oldInLoop = interpreter.isInLoop();
        interpreter.setCanLoop(true);
        interpreter.setInLoop(true);

        try {
            if (btype.isPCode(PCoder.PC_DO)) {
                /**
                 * (foreach-col [[l1]...[ln]] do {...})
                 */
                Node argv;
               
                Heap.push(); // nouvel espace local pour argv (exclusivment)
                Heap argv_h = Heap.current(); // optimisation du 09/03/2012

                Heap.push(); // nouvel espace local
                Heap local = Heap.current();

                /*
                 * Correction du 10 mai 2011:
                 * =========================
                 *    Les boucles du type do{...} s'arrête dès qu'un résultat est retourné. Cela ne signifie
                 *    bien entendu pas que la condition qui permet l'itération n'est pas vérifiée. Toutefois,
                 *    comme les boucle du type do{...} ne peuvent retourner qu'un seul résultat, il est inutile
                 *    de relancer l'itération suivante ddès qu'un résultat est fourni. Ainsi, pour permettre
                 *    de continuer la boucle, il est possible de placer le résultat dans une variable et non de
                 *    la retourner directement comme résultat.
                 *   
                 */
                while (interpreter.isCanIterate() && row.hasNext() && xnode==null) {
                    _clear_closure_(local);
                    argv = Node.createCList();
                    argv.setArray(row.getNext());
                    argv_h.put(PCoder.ARGV, argv);
                    xnode = enode.exec(true);
                }

                Heap.pull(); // supprimer l'espace local...
                Heap.pull(); // supprimer l'espace de noms exclusif pour argv.

            }
            else if (btype.isPCode(PCoder.PC_LIST)) {
                /**
                 * (foreach-col [[l1]...[ln]] list{...})
                 */
                Node argv;
                xnode = Node.createCList();

                Heap.push(); // nouvel espace local pour argv (exclusivment)
                Heap argv_h = Heap.current(); // optimisation du 09/03/2012
               
                Heap.push(); // nouvel espace local
                Heap local = Heap.current();

                while (interpreter.isCanIterate() && row.hasNext()) {
                    _clear_closure_(local);
                    argv = Node.createCList();
                    argv.setArray(row.getNext());
                    argv_h.put(PCoder.ARGV, argv);
                    rnode = enode.exec(true);
                    if (rnode != null)
                        xnode.addElement(rnode.secure());
                   
                }

                Heap.pull(); // supprimer l'espace local...
                Heap.pull(); // supprimer l'espace exclusif pour argv...

            }
            else {
                // erreur de syntaxe.
                throw new InterpreterException(StdErrors.Syntax_error);
            }
        }
        catch (Exception ex) {
            interpreter.consumeBreakCode_onLoop();
            interpreter.setCanLoop(oldCanLoop);
            interpreter.setInLoop(oldInLoop);
            throw ex;
        }
        interpreter.consumeBreakCode_onLoop();
        interpreter.setCanLoop(oldCanLoop);
        interpreter.setInLoop(oldInLoop);
        return xnode;
    }

}
TOP

Related Classes of abstrasy.pcfx.PCFx_foreach_col$Row

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.