blob: 2fd080517f0452aad75c0dee28576c41b27ecbc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Nokia 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:
* Nokia - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.edc.internal;
import org.eclipse.cdt.debug.edc.ITCFServiceManager;
import org.eclipse.cdt.debug.edc.MessageLogger;
import org.eclipse.cdt.debug.edc.tcf.extension.services.ILogging;
import org.eclipse.cdt.debug.edc.tcf.extension.services.ISettings;
import org.eclipse.cdt.debug.edc.tcf.extension.services.LoggingProxy;
import org.eclipse.cdt.debug.edc.tcf.extension.services.SettingsProxy;
import org.eclipse.cdt.dsf.concurrent.IDsfStatusConstants;
import org.eclipse.cdt.scripting.ScriptingPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
import org.eclipse.core.runtime.preferences.InstanceScope;
import org.eclipse.debug.core.DebugException;
import org.eclipse.osgi.service.debug.DebugOptions;
import org.eclipse.osgi.service.debug.DebugTrace;
import org.eclipse.tm.tcf.protocol.IChannel;
import org.eclipse.tm.tcf.protocol.Protocol;
import org.eclipse.tm.tcf.protocol.Protocol.ChannelOpenListener;
import org.osgi.framework.BundleContext;
import org.osgi.util.tracker.ServiceTracker;
/**
* The activator class controls the plug-in life cycle
*/
public class EDCDebugger extends Plugin {
// The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.cdt.debug.edc"; //$NON-NLS-1$
// The shared instance
private static EDCDebugger plugin;
/** Platform facility used to trace. Lock {@link #traceLock} before accessing. */
private volatile DebugTrace trace;
/** Serializes access to {@link #trace} */
private final String traceLock = new String("trace lock");
private ITCFServiceManager tcfServiceManager;
private PersistentCache cache;
/** This plugin, once activated */
private BundleContext context;
/**
* The constructor
*/
public EDCDebugger() {
}
/* (non-Javadoc)
* @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext)
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
this.context = context;
plugin = this;
// Validate our plugin ID constant
if (!getBundle().getSymbolicName().equals(PLUGIN_ID)) {
throw new IllegalStateException("PLUGIN_ID constant is not correct"); //$NON-NLS-1$
}
EDCTrace.init();
installChannelListener();
}
private void installChannelListener() {
Protocol.invokeLater(new Runnable() {
public void run() {
Protocol.addChannelOpenListener(new ChannelOpenListener() {
public void onChannelOpen(IChannel channel) {
// logging service
if (channel.getRemoteService(ILogging.NAME) != null)
channel.setServiceProxy(ILogging.class, new LoggingProxy(channel));
// settings service
if (channel.getRemoteService(ISettings.NAME) != null)
channel.setServiceProxy(ISettings.class, new SettingsProxy(channel));
//
}
});
};
});
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
*/
@Override
public void stop(BundleContext context) throws Exception {
if (cache != null)
cache.flushAll();
plugin = null;
if (tcfServiceManager != null)
((TCFServiceManager) tcfServiceManager).shutdown();
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static EDCDebugger getDefault() {
return plugin;
}
public static BundleContext getBundleContext() {
return getDefault().getBundle().getBundleContext();
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public DebugTrace getTrace() {
synchronized (traceLock) {
if (trace == null) {
if (context == null) {
return null; // Sorry, can't help. Bundle hasn't been activated yet
}
ServiceTracker tracker = new ServiceTracker(context, DebugOptions.class.getName(), null);
tracker.open();
DebugOptions debugOptions = (DebugOptions)tracker.getService();
if (debugOptions != null) {
trace = debugOptions.newDebugTrace(getBundle().getSymbolicName());
}
tracker.close();
}
}
return trace;
}
public ITCFServiceManager getServiceManager() {
if (tcfServiceManager == null) {
tcfServiceManager = new TCFServiceManager();
}
return tcfServiceManager;
}
/**
* Utility method for creating a CoreException object with this EDC plugin
* ID.
*
* @param msg
* - error message.
* @param e
* - cause exception, can be null.
* @return a {@link CoreException} object.
*/
public static CoreException newCoreException(String msg, Throwable t) {
if ((msg == null || msg.length() == 0) && t instanceof CoreException)
return new CoreException(((CoreException) t).getStatus());
else
return new CoreException(new Status(IStatus.ERROR, PLUGIN_ID, msg, t));
}
/**
* Utility method for creating a CoreException object with this EDC plugin
* ID.
*
* @param msg
* - error message.
* @return a {@link CoreException} object.
*/
public static CoreException newCoreException(String msg) {
return new CoreException(new Status(IStatus.ERROR, PLUGIN_ID, msg));
}
/**
* Utility method for creating a DebugException object with this EDC plugin
* ID.
*
* @param msg
* - error message.
* @param e
* - cause exception, can be null.
* @return a {@link DebugException} object.
*/
public static DebugException newDebugException(String msg, Throwable t) {
if ((msg == null || msg.length() == 0) && t instanceof CoreException)
return new DebugException(((CoreException) t).getStatus());
else
return new DebugException(new Status(IStatus.ERROR, PLUGIN_ID, msg, t));
}
/**
* Utility method for creating a DebugException object with this EDC plugin
* ID.
*
* @param msg
* - error message.
* @return a {@link DebugException} object.
*/
public static DebugException newDebugException(String msg) {
return new DebugException(new Status(IStatus.ERROR, PLUGIN_ID, msg));
}
public static MessageLogger getMessageLogger() {
return new MessageLogger() {
@Override
public String getPluginID() {
return PLUGIN_ID;
}
@Override
public Plugin getPlugin() {
return plugin;
}
};
}
/**
* Returns the unique identifier of this plugin.
*/
public static String getUniqueIdentifier() {
return PLUGIN_ID;
}
public static IStatus dsfRequestFailedStatus(String message, Throwable exception) {
return new Status(IStatus.ERROR, PLUGIN_ID, IDsfStatusConstants.REQUEST_FAILED, message, exception);
}
public PersistentCache getCache() {
if (cache == null) {
cache = new PersistentCache(getStateLocation().append("cached_data"));
}
return cache;
}
public static IEclipsePreferences getPrefs(String qualifier)
{
return InstanceScope.INSTANCE.getNode(qualifier);
}
}