blob: dad3e668a460ce39f1d2b9bf7555ec8ed98caa33 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.karaf.eik.ui.internal;
import org.apache.karaf.eik.ui.KarafUIPluginActivator;
import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URL;
import org.eclipse.ant.core.AntRunner;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.osgi.framework.Bundle;
public class PopulateObrFileJob extends Job {
private static final String ANT_BUILD_OBR_FILE = "ant/build.xml";
private final File obrFile;
private volatile boolean obrComplete;
/**
* Creates a {@link Job} that will populate a {@link File} with OBR data
*
* @param name
* the name of the {@code Job}
* @param obrFile
* the {@code File} where this {@code Job} will write the OBR
* data
*/
public PopulateObrFileJob(final String name, final File obrFile) {
super(name);
this.obrFile = obrFile;
}
@Override
protected IStatus run(final IProgressMonitor monitor) {
if (AntRunner.isBuildRunning()) {
schedule(15 * 1000);
return Status.OK_STATUS;
}
obrComplete = false;
File buildFile;
final AntRunner runner = new AntRunner();
try {
buildFile = getAntBuildFile();
runner.setBuildFileLocation(buildFile.getAbsolutePath());
runner.setArguments("-Dobr.filename=" + obrFile.getAbsolutePath());
runner.run(monitor);
} catch (final CoreException e) {
monitor.setCanceled(true);
return Status.CANCEL_STATUS;
} catch (final IOException e) {
monitor.setCanceled(true);
return Status.CANCEL_STATUS;
} finally {
monitor.done();
}
obrComplete = true;
return Status.OK_STATUS;
}
/**
* Getter for the {@link File} that contains the OBR data
*
* @return the {@code File} that contains the OBR data
*/
public File getObrFile() {
return obrFile;
}
/**
* Determines whether or the OBR file population has complated
*
* @return true if the OBR file is complete, false otherwise
*/
public boolean isObrPopulationComplete() {
return obrComplete;
}
/**
* Getter for the {@code build.xml} file used to execute the
* {@link AntRunner}
*
* @return the {@link File} that the {@code AntRunner} will execute
* @throws IOException
* thrown if the {@code File} cannot be created
*/
private File getAntBuildFile() throws IOException {
final Bundle thisBundle = KarafUIPluginActivator.getDefault().getBundle();
final URL[] urls = FileLocator.findEntries(thisBundle, new Path(ANT_BUILD_OBR_FILE));
if (urls.length > 1 || urls.length == 0) {
throw new AssertionError("Error locating Bundle URL for " + ANT_BUILD_OBR_FILE);
}
final URL fileUrl = FileLocator.toFileURL(urls[0]);
try {
return new File(fileUrl.toURI());
} catch (final URISyntaxException e) {
throw new IOException("Unable to convert URI to File", e);
}
}
}