Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 261160082672d17f45ea427a208fe4bf0ebc1965 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
 * Copyright (c) 2011, 2015 Wind River Systems, Inc. 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:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.processes.core.launcher;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.PlatformObject;
import org.eclipse.tcf.te.core.terminals.interfaces.ITerminalTabListener;

/**
 * Remote process launcher terminal tab listener implementation.
 * <p>
 * <b>Note:</b> The notifications may occur in every thread!
 */
public class ProcessLauncherTerminalTabListener extends PlatformObject implements ITerminalTabListener {
	// Reference to the parent launcher
	private final ProcessLauncher parent;

	/**
	 * Constructor.
	 *
	 * @param parent The parent launcher. Must not be <code>null</code>.
	 */
	public ProcessLauncherTerminalTabListener(ProcessLauncher parent) {
		super();

		Assert.isNotNull(parent);
		this.parent = parent;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.tcf.te.core.terminals.interfaces.ITerminalTabListener#terminalTabDisposed(java.lang.Object, java.lang.Object)
	 */
	@Override
	public void terminalTabDisposed(Object source, Object data) {
		Assert.isNotNull(source);

		// The custom data object must be of type TcfRemoteProcessLauncher and match the parent launcher
		if (data instanceof ProcessLauncher && parent.equals(data)) {
			// Terminate the remote process (leads to the disposal of the parent)
			parent.terminate();
		}
	}
}

Back to the top