blob: 76d08fa3bfd67abdcbec03a0354d84bec6cdc309 [file] [log] [blame]
/*
* weinre is available under *either* the terms of the modified BSD license *or* the
* MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
*
* Copyright (c) 2010, 2011 IBM Corporation
*/
package weinre.server.service;
import java.io.IOException;
import java.util.List;
import org.apache.wink.json4j.JSONArray;
import org.apache.wink.json4j.JSONException;
import org.apache.wink.json4j.JSONObject;
import weinre.server.Channel;
import weinre.server.Client;
import weinre.server.ConnectionManager;
import weinre.server.Main;
import weinre.server.Target;
//-------------------------------------------------------------------
public class WeinreClientCommands {
//---------------------------------------------------------------
public void registerClient(Channel channel, String callbackId) throws IOException {
Client client = new Client(channel);
JSONObject description = client.getDescription();
channel.sendCallback("WeinreClientEvents", callbackId, description);
channel.sendEvent("WeinreClientEvents", "serverProperties", Main.getSettings().asProperties());
}
//---------------------------------------------------------------
public void getTargets(Channel channel, String callbackId) throws IOException {
List<Target> targets = ConnectionManager.$.getTargets(channel.getId());
JSONArray targetResults = new JSONArray();
for (Target target: targets) {
targetResults.add(target.getDescription());
}
channel.sendCallback("WeinreClientEvents", callbackId, targetResults);
}
//---------------------------------------------------------------
public void getClients(Channel channel, String callbackId) throws IOException {
List<Client> clients = ConnectionManager.$.getClients(channel.getId());
JSONArray clientResults = new JSONArray();
for (Client client: clients) {
clientResults.add(client.getDescription());
}
channel.sendCallback("WeinreClientEvents", callbackId, clientResults);
}
//---------------------------------------------------------------
public void connectTarget(Channel channel, String clientId, String targetId, String callbackId) {
Client client = ConnectionManager.$.getClient(clientId);
if (client == null) return;
Target target = ConnectionManager.$.getTarget(targetId);
if (target == null) return;
ConnectionManager.$.connect(client, target);
}
//---------------------------------------------------------------
public void disconnectTarget(Channel channel, String clientId, String callbackId) {
Client client = ConnectionManager.$.getClient(clientId);
if (client == null) return;
Target target = client.getConnectedTarget();
if (target == null) return;
ConnectionManager.$.disconnect(client, target);
}
//---------------------------------------------------------------
public void logDebug(Channel channel, String message, String callbackId) {
Main.debug("client " + channel.getName() + ": " + message);
}
//---------------------------------------------------------------
public void logInfo(Channel channel, String message, String callbackId) {
Main.info("client " + channel.getName() + ": " + message);
}
//---------------------------------------------------------------
public void logWarning(Channel channel, String message, String callbackId) {
Main.warn("client " + channel.getName() + ": " + message);
}
//---------------------------------------------------------------
public void logError(Channel channel, String message, String callbackId) {
Main.error("client " + channel.getName() + ": " + message);
}
}