org.robovm.gradle.tasks.AbstractIOSSimulatorTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robovm-gradle-plugin Show documentation
Show all versions of robovm-gradle-plugin Show documentation
The RoboVM Gradle Plugin provides a way to build RoboVM apps using Gradle.
/*
* Copyright (C) 2014 Trillian Mobile AB.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.robovm.gradle.tasks;
import java.io.File;
import org.gradle.api.GradleException;
import org.robovm.compiler.AppCompiler;
import org.robovm.compiler.config.Arch;
import org.robovm.compiler.config.Config;
import org.robovm.compiler.config.Config.TargetType;
import org.robovm.compiler.config.OS;
import org.robovm.compiler.target.ios.DeviceType;
import org.robovm.compiler.target.ios.IOSSimulatorLaunchParameters;
/**
*
* @author Junji Takakura
*/
abstract public class AbstractIOSSimulatorTask extends AbstractRoboVMTask {
protected void launch(DeviceType type) {
try {
AppCompiler compiler = build(OS.ios, getArch(), TargetType.ios);
Config config = compiler.getConfig();
IOSSimulatorLaunchParameters launchParameters = (IOSSimulatorLaunchParameters) config.getTarget().createLaunchParameters();
launchParameters.setDeviceType(type);
if (extension.getStdoutFifo() != null) {
File stdoutFifo = new File(extension.getStdoutFifo());
boolean isWritable;
if (stdoutFifo.exists()) {
isWritable = stdoutFifo.isFile() && stdoutFifo.canWrite();
} else {
File parent = stdoutFifo.getParentFile();
isWritable = parent != null && parent.isDirectory() && parent.canWrite();
}
if (!isWritable) {
throw new GradleException("Unwritable 'stdoutFifo' specified for RoboVM compile: " + stdoutFifo);
}
launchParameters.setStdoutFifo(stdoutFifo);
}
if (extension.getStderrFifo() != null) {
File stderrFifo = new File(extension.getStderrFifo());
boolean isWritable;
if (stderrFifo.exists()) {
isWritable = stderrFifo.isFile() && stderrFifo.canWrite();
} else {
File parent = stderrFifo.getParentFile();
isWritable = parent != null && parent.isDirectory() && parent.canWrite();
}
if (!isWritable) {
throw new GradleException("Unwritable 'stderrFifo' specified for RoboVM compile: " + stderrFifo);
}
launchParameters.setStderrFifo(stderrFifo);
}
compiler.launch(launchParameters);
} catch (Throwable t) {
throw new GradleException("Failed to launch IOS Simulator", t);
}
}
protected Arch getArch() {
Arch arch = Arch.x86;
if (extension.getArch() != null && extension.getArch().equals(Arch.x86_64.toString())) {
arch = Arch.x86_64;
}
return arch;
}
protected DeviceType getDeviceType(Config.Home home, DeviceType.DeviceFamily family) {
String deviceName = (String) project.getProperties().get("robovm.device.name");
String sdkVersion = (String) project.getProperties().get("robovm.sdk.version");
return DeviceType.getBestDeviceType(home, getArch(), family, deviceName, sdkVersion);
}
}