blob: 402c5feee148bcce61894705abff02144c06cfdc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentarou FUKUDA - initial API and implementation
* Hisashi MIYASHITA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.internal.flash;
import java.io.IOException;
import java.io.InputStream;
import org.eclipse.actf.model.flash.bridge.IWaXcoding;
import org.eclipse.actf.model.flash.bridge.WaXcodingFactory;
import org.eclipse.core.runtime.FileLocator;
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 FlashModelPlugin extends Plugin {
// The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.actf.model.flash"; //$NON-NLS-1$
// The shared instance
private static FlashModelPlugin plugin;
private static final Path imposedSWFPath = new Path("bridgeSWF/imposed.swf"); //$NON-NLS-1$
private static final Path bootloaderSWFPath = new Path(
"bridgeSWF/boot_loader.swf"); //$NON-NLS-1$
private static final Path bridgeInitSWFPath = new Path(
"bridgeSWF/boot_bridge.swf"); //$NON-NLS-1$
private static final Path bootloaderSWFV9Path = new Path(
"bridgeSWF/v9/bootloader_as3.swf"); //$NON-NLS-1$
private static final Path bridgeInitSWFV9Path = new Path(
"bridgeSWF/v9/bridge_as3.swf"); //$NON-NLS-1$
/**
* The constructor
*/
public FlashModelPlugin() {
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
InputStream is;
is = tryOpenStream(imposedSWFPath);
IWaXcoding wax = WaXcodingFactory.getWaXcoding();
if (is != null) {
wax.setSWFTranscodingImposedFile(is);
}
is = tryOpenStream(bootloaderSWFPath);
if (is != null) {
wax.setSWFBootloader(is);
}
is = tryOpenStream(bridgeInitSWFPath);
if (is != null) {
wax.setSWFBridgeInit(is);
}
is = tryOpenStream(bootloaderSWFV9Path);
if (is != null) {
wax.setSWFBootloaderV9(is);
}
is = tryOpenStream(bridgeInitSWFV9Path);
if (is != null) {
wax.setSWFBridgeInitV9(is);
}
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static FlashModelPlugin getDefault() {
return plugin;
}
private InputStream tryOpenStream(Path path) {
try {
return FileLocator.openStream(getBundle(), path, false);
} catch (IOException e) {
return null;
}
}
}