Package abstrasy.pcfx

Source Code of abstrasy.pcfx.PCFx_kill

package abstrasy.pcfx;


import abstrasy.Interpreter;
import abstrasy.InterpreterSemaphore;
import abstrasy.Node;

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_kill extends PCFx {

    public PCFx_kill() {
    }

    private void kill_target(String target) throws Exception{

        Interpreter myself = Interpreter.mySelf();
        InterpreterSemaphore sema = Interpreter.getSemaphore();
        Interpreter amie = sema.getThread(target);

        if (amie == myself) {
            throw new InterpreterException(StdErrors.An_actor_can_not_kill_himself);
        }

        if (amie != null) {
            if (!amie.isInterThread()) {
                throw new InterpreterException(StdErrors.An_actor_can_not_kill_supervisor);
            }
            sema.kill(amie);
        }
        /*
         * Correctif: rev6261 du 21/02/2011:
         *
         * Ne plus envoyer d'exception en cas où l'acteur serait déjà supprimé.
         *
         * En effet, celui-ci peut s'être arrêté entre le moment du teste de sa présence
         * et la commande kill.
         *
         *
         *
         * else {
         *   throw new InterpreterException(StdErrors.extend(StdErrors.Actor_not_found, target));
         * }
         *
         *
         *
         */
       
    }
   
    /**
     * eval
     *
     * @param startAt Node
     * @return Node
     * @throws Exception
     * @todo Implémenter cette méthode abstrasy.PCFx
     */
    public Node eval(Node startAt) throws Exception {
        /*
         * forme: (kill <string>)
         *        (kill [liste de nom <string>])
         *
         * Permet de "tuer" un ou plusieurs acteurs.
         *
         * Si l'opérateur reçoit une liste vide, aucun acteur n'est supprimé.
         *
         */
        startAt.isGoodArgsCnt(2);
        Node arg = startAt.getSubNode(1, Node.TYPE_STRING | Node.TYPE_CLIST);
        if(arg.isString()){
            /*
             * chaîne de caractères...
             */
            kill_target(arg.getString());
        }
        else{
            /*
             * liste de chaînes de caractères...
             */
            for(int i=0;i<arg.size();i++){
                kill_target(arg.getSubNode(i, Node.TYPE_STRING).getString());
            }
        }
        return null;
    }

}
TOP

Related Classes of abstrasy.pcfx.PCFx_kill

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.