debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ILaunchDelegateConnectionExtension.java
author Ed Swartz <ed.swartz@nokia.com>
Tue, 20 Apr 2010 15:36:01 -0500
branchRCL_2_4
changeset 1254 0e45b6356eac
permissions -rw-r--r--
Initial pass getting PlatSim connections to work in App/Sys TRK configurations. Add extension for TRK launch delegate for PlatSim-specific behavior.

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/

package com.nokia.cdt.internal.debug.launch;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.ILaunch;

import com.nokia.carbide.remoteconnections.interfaces.IConnection;

/**
 * This extension augments a launch delegate's behavior.  Every extension is called for
 * every connection-based launch; ignore the call if the connection is not relevant
 * for your needs. 
 * 
 * Note: the extension instance is created once for each session.
 */
public interface ILaunchDelegateConnectionExtension {
	String ID = LaunchPlugin.PLUGIN_ID + ".launchDelegateConnectionExtension"; //$NON-NLS-1$
	
	/** 
	 * Initialize a connection for a run or debug launch after it has been selected (either it was
	 * static or was selected by the user; you cannot influence the connection selector).
	 * This is called before the connection is marked "in use".
	 * @param launch
	 * @param connection
	 * @param monitor
	 * @throws CoreException if the extension determines some problem with the
	 * connection for this configuration
	 */
	void initializeConnection(ILaunch launch, IConnection connection, IProgressMonitor monitor) throws CoreException;

	/**
	 * Handle any work when the launch has started successfully.
	 * @param launch
	 * @param connection
	 * @param monitor 
	 * @throws CoreException
	 */
	void launchStarted(ILaunch launch, IConnection connection, IProgressMonitor monitor) throws CoreException; 
	
	/**
	 * Terminate a connection for a launch after a session has completed.  This
	 * is called before the connection is marked "not in use".
	 * @param launch
	 * @param connection
	 * @param monitor
	 * @throws CoreException if the extension encounters a failure terminating the connection
	 */
	void terminateConnection(ILaunch launch, IConnection connection, IProgressMonitor monitor) throws CoreException;

}