Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 582deee4105607e20d76560fb4d999cb0cbff943 (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
51
52
53
/*******************************************************************************
 * Copyright (c) 2008 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.equinox.internal.app;

import org.eclipse.osgi.service.runnable.ApplicationRunnable;
import org.osgi.service.application.ApplicationException;

/**
 * A main threaded application may be launched using this class to launch the main threaded application.
 */
public class MainApplicationLauncher implements ApplicationRunnable {
	private final EclipseAppContainer appContainer;
	private ApplicationRunnable launchMainApp; // a handle to a main threaded application

	public MainApplicationLauncher(EclipseAppContainer appContainer) {
		this.appContainer = appContainer;
	}

	public Object run(Object context) throws Exception {
		appContainer.startDefaultApp(false);
		ApplicationRunnable mainHandle = getMainHandle();
		if (mainHandle != null)
			return mainHandle.run(context);
		throw new ApplicationException(ApplicationException.APPLICATION_INTERNAL_ERROR, Messages.application_noIdFound);
	}

	private synchronized ApplicationRunnable getMainHandle() {
		return launchMainApp;
	}

	public void stop() {
		// force the application to quit
		ApplicationRunnable handle = getMainHandle();
		if (handle != null)
			handle.stop();
	}

	synchronized void launch(ApplicationRunnable app) {
		launchMainApp = app;
	}
}

Back to the top