Package edu.drexel.cs544.mcmuc.actions

Source Code of edu.drexel.cs544.mcmuc.actions.Runner

package edu.drexel.cs544.mcmuc.actions;

import java.util.List;

import org.json.JSONObject;

import edu.drexel.cs544.mcmuc.channels.Channel;
import edu.drexel.cs544.mcmuc.channels.Controller;

/**
* The use-rooms action is used to reply to a list-rooms action. Clients will either
* reply with a collection of all channels they know are in use or the subset of
* channels in use that were asked about in the original list-rooms action. In
* addition, use-rooms is also used to create a new room.
*
* The JSON format of a UseRooms is {'uid':'<uid>','action':'use-rooms','rooms':'<rooms>'}
*/
public class UseRooms extends RoomAction {

    public static final String action = "use-rooms";

    /**
     * The use-rooms action must carry a list of rooms that receiving clients should
     * begin or continue forwarding traffic for.
     *
     * @param rooms List<Integer> the list of the rooms
     */
    public UseRooms(List<Integer> rooms) {
        super(rooms, UseRooms.action);
    }

    /**
     * Deserializes JSON into a UseRooms object
     *
     * @param json the JSON to deserialize
     */
    public UseRooms(JSONObject json) {
        super(json, UseRooms.action);
    }

    /**
     * Upon receiving a UseRooms action, iterate through the list of rooms, and pass the port
     * to Controller to reserve resources for the room.
     *
     * @see Controller
     */
    @Override
    public void process(Channel channel) {
        class Runner implements Runnable {
            UseRooms message;
            Channel channel;

            Runner(UseRooms m, Channel c) {
                channel = c;
                message = m;
            }

            public void run() {
                Controller controller = Controller.getInstance();
                for (int room : message.getRooms()) {
                    controller.useRoom(room);
                }
                channel.send(message);
            }
        }
        Thread t = new Thread(new Runner(this, channel));
        t.start();
    }
}
TOP

Related Classes of edu.drexel.cs544.mcmuc.actions.Runner

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.