phat.server.commands.InstallApkCommand Maven / Gradle / Ivy
/*
* Copyright (C) 2014 Pablo Campillo-Sanchez
*
* This software has been developed as part of the
* SociAAL project directed by Jorge J. Gomez Sanz
* (http://grasia.fdi.ucm.es/sociaal)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package phat.server.commands;
import com.jme3.app.Application;
import com.jme3.bullet.control.KinematicRagdollControl;
import com.jme3.scene.Node;
import java.util.logging.Level;
import phat.commands.PHATCommandListener;
import phat.devices.DevicesAppState;
import phat.devices.commands.PHATDeviceCommand;
import phat.devices.smartphone.SmartPhoneFactory;
import phat.mobile.adm.AndroidVirtualDevice;
import phat.server.ServerAppState;
/**
*
* @author pablo
*/
public class InstallApkCommand extends PHATServerCommand {
private String smartphoneId;
private String apkFile;
public InstallApkCommand(String smartphoneId, String apkFile) {
this(smartphoneId, apkFile, null);
}
public InstallApkCommand(String smartphoneId, String apkFile, PHATCommandListener listener) {
super(listener);
this.smartphoneId = smartphoneId;
this.apkFile = apkFile;
logger.log(Level.INFO, "New Command: {0}", new Object[]{this});
}
@Override
public void runCommand(Application app) {
DevicesAppState devicesAppState = app.getStateManager().getState(DevicesAppState.class);
ServerAppState serverAppState = app.getStateManager().getState(ServerAppState.class);
Node smartphone = devicesAppState.getDevice(smartphoneId);
if(smartphone != null) {
AndroidVirtualDevice avd = serverAppState.getAVD(smartphoneId);
if(avd != null) {
avd.install(apkFile);
setState(State.Success);
return;
}
}
setState(State.Fail);
}
@Override
public void interruptCommand(Application app) {
setState(State.Interrupted);
}
@Override
public String toString() {
return getClass().getSimpleName() + "(" + smartphoneId + ", " + apkFile + ")";
}
}