blob: 754b8850e9160031215dab1de58398675a524554 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation and/or initial documentation
* ...
*******************************************************************************/
package org.eclipse.intent.mapping.ide;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.intent.mapping.MappingUtils;
import org.eclipse.intent.mapping.ide.connector.ResourceLocationListener;
import org.eclipse.intent.mapping.ide.connector.TextFileConnectorDelegate;
import org.eclipse.intent.mapping.ide.internal.content.IdeFileTypeRegistry;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle.
*
* @author <a href="mailto:yvan.lussaud@obeo.fr">Yvan Lussaud</a>
*/
public class Activator extends Plugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = "org.eclipse.intent.mapping.ide";
/** This plug-in's shared instance. */
private static Activator plugin;
/** The registry listener that will be used to listen to extension changes. */
private IdeMappingRegistryListener registryListener = new IdeMappingRegistryListener();
/** The {@link IdeFileTypeRegistry}. */
private IdeFileTypeRegistry fileTypeRegistry;
/**
* The {@link ResourceLocationListener}.
*/
private ResourceLocationListener resourceLocationListener;
/**
* Gets the {@link ResourceLocationListener}.
*
* @param resourceLocationListener
* the {@link ResourceLocationListener}
*/
public void setResourceLocationListener(ResourceLocationListener resourceLocationListener) {
if (this.resourceLocationListener != null) {
ResourcesPlugin.getWorkspace().removeResourceChangeListener(this.resourceLocationListener);
}
this.resourceLocationListener = resourceLocationListener;
ResourcesPlugin.getWorkspace().addResourceChangeListener(resourceLocationListener);
}
/**
* {@inheritDoc}
*
* @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
fileTypeRegistry = new IdeFileTypeRegistry(MappingUtils.getFileTypeRegistry());
MappingUtils.setFileTypeRegistry(fileTypeRegistry);
IdeMappingUtils.getFileConectorDelegateRegistry().register(new TextFileConnectorDelegate());
final IExtensionRegistry registry = Platform.getExtensionRegistry();
registry.addListener(registryListener, IdeMappingRegistryListener.CONTAINER_PROVIDER_EXTENSION_POINT);
registry.addListener(registryListener,
IdeMappingRegistryListener.FILE_CONNECTOR_DELEGATE_EXTENSION_POINT);
registry.addListener(registryListener, IdeMappingRegistryListener.CONNECTOR_EXTENSION_POINT);
registry.addListener(registryListener, IdeMappingRegistryListener.MARKER_TO_LOCATION_EXTENSION_POINT);
registry.addListener(registryListener, IdeMappingRegistryListener.LOCATION_EXTENSION_POINT);
registry.addListener(registryListener, IdeMappingRegistryListener.BASE_PROVIDER_EXTENSION_POINT);
registryListener.parseInitialContributions();
}
/**
* {@inheritDoc}
*
* @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;
MappingUtils.setFileTypeRegistry(fileTypeRegistry.getDelegate());
final IExtensionRegistry registry = Platform.getExtensionRegistry();
registry.removeListener(registryListener);
// TODO clear registry ?
ResourcesPlugin.getWorkspace().removeResourceChangeListener(resourceLocationListener);
resourceLocationListener = null;
}
/**
* Returns the shared instance.
*
* @return the shared instance
*/
public static Activator getDefault() {
return plugin;
}
}