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_combin extends PCFx {
private static final class Combin {
private int[] index = null;
private int noEls = 0;
private Node[] elements = null;
private int length = 0;
private int cnt = 0;
Combin(Node[] elements, int length) {
if (elements != null) {
this.elements = elements;
this.index = new int[length];
this.noEls = elements.length;
this.length = length;
for (int i = 0; i < index.length; i++) {
index[i] = i;
}
cnt = 0;
}
}
boolean hasNext() {
if(elements==null){return false;}
if (cnt == 0) {
cnt++;
return true;
}
else {
cnt++;
int i = length - 1;
while (index[i] == noEls - length + i) {
i--;
if (i < 0) {
return false;
}
}
index[i]++;
for (int j = i+1;j<=length-1; j++) {
index[j] = index[j - 1] + 1;
}
return true;
}
}
Node[] getNext() {
Node[] c = new Node[length];
for (int i = 0; i < index.length; i++) {
c[i] = elements[index[i]];
}
return c;
}
}
public PCFx_foreach_combin() {
}
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-combin [liste] k do{...})
* (foreach-combin [liste] k list{...})
*/
int i = 1;
startAt.isGoodArgsCnt(5);
Node rnode = null;
Node xnode = null;
Node lNode = startAt.getSubNode(i++, Node.TYPE_CLIST);
int kn = (int)startAt.getSubNode(i++, Node.TYPE_NUMBER).getNumber();
/**
* foreach-combin ne supporte que la liste comme argument entrant.
*
*/
if(kn<1 || kn>lNode.size()){
throw new InterpreterException(StdErrors.extend(StdErrors.Out_of_range, "" + kn));
}
Combin combinaisons = new Combin(lNode.getArray(), kn);
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-combin [liste] k 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() && combinaisons.hasNext() && xnode==null) {
_clear_closure_(local);
argv = Node.createCList();
argv.setArray(combinaisons.getNext());
argv_h.put(PCoder.ARGV, argv);
xnode = enode.exec(true);
}
Heap.pull(); // supprimer l'espace local...
Heap.pull(); // supprimer l'espace exclusif pour argv...
}
else if (btype.isPCode(PCoder.PC_LIST)) {
/**
* (foreach-combin [liste] k 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() && combinaisons.hasNext()) {
_clear_closure_(local);
argv = Node.createCList();
argv.setArray(combinaisons.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 de 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;
}
}