blob: effc6615bf576b71cae4f9343c652787d8fe7b6d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.rcp.ui.tests;
import java.io.IOException;
import java.net.URL;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class Activator extends Plugin {
// ------------------------------------------------------------------------
// Attributes
// ------------------------------------------------------------------------
/**
* The plug-in ID
*/
public static final String PLUGIN_ID = "org.eclipse.tracecompass.lttng2.control.ui.tests";
// The shared instance
private static Activator fPlugin;
/**
* The constructor
*/
public Activator() {
setDefault(this);
}
/**
* @return the shared instance
*/
public static Activator getDefault() {
return fPlugin;
}
/**
* @param plugin the shared instance
*/
private static void setDefault(Activator plugin) {
fPlugin = plugin;
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
setDefault(this);
}
@Override
public void stop(BundleContext context) throws Exception {
setDefault(null);
super.stop(context);
}
/**
* Return a path to a file relative to this plugin's base directory
*
* @param relativePath
* The path relative to the plugin's root directory
* @return The path corresponding to the relative path in parameter
*/
public static IPath getAbsoluteFilePath(String relativePath) {
Activator plugin = Activator.getDefault();
if (plugin == null) {
/*
* Shouldn't happen but at least throw something to get the test to
* fail early
*/
throw new IllegalStateException();
}
URL location = FileLocator.find(plugin.getBundle(), new Path(relativePath), null);
try {
return new Path(FileLocator.toFileURL(location).getPath());
} catch (IOException e) {
throw new IllegalStateException();
}
}
}