Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dca05cb4e6b96abd5ecdf1c581f26d1a5d080336 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*******************************************************************************
 * Copyright (c) 2019 Red Hat Inc. 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:
 * - Mickael Istria (Red Hat Inc.)
 *******************************************************************************/
package org.eclipse.debug.internal.ui.quickaccess;

import java.util.Arrays;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationListener;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.debug.core.ILaunchMode;
import org.eclipse.debug.internal.ui.DebugPluginImages;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.quickaccess.QuickAccessElement;
import org.eclipse.ui.quickaccess.QuickAccessProvider;

public abstract class AbstractLaunchQuickAccessProvider extends QuickAccessProvider {

	protected final ILaunchManager manager;
	protected final ILaunchMode launchMode;

	public AbstractLaunchQuickAccessProvider(ILaunchMode launchMode) {
		super();
		manager = DebugPlugin.getDefault().getLaunchManager();
		this.launchMode = launchMode;
		manager.addLaunchConfigurationListener(new ILaunchConfigurationListener() {
			@Override
			public void launchConfigurationRemoved(ILaunchConfiguration configuration) {
				reset();
			}

			@Override
			public void launchConfigurationChanged(ILaunchConfiguration configuration) {
				reset();
			}

			@Override
			public void launchConfigurationAdded(ILaunchConfiguration configuration) {
				reset();
			}
		});
	}

	@Override
	public String getId() {
		return getClass().getName();
	}

	@Override
	public String getName() {
		return Action.removeMnemonics(launchMode.getLabel());
	}

	@Override
	public ImageDescriptor getImageDescriptor() {
		return DebugPluginImages.getImageDescriptor(IDebugUIConstants.IMG_OBJS_LAUNCH_RUN);
	}

	@Override
	public QuickAccessElement[] getElements() {
		try {
			return Arrays.stream(manager.getLaunchConfigurations()).filter(config -> {
				try {
					return config.getType().supportsMode(launchMode.getIdentifier());
				} catch (CoreException e) {
					DebugUIPlugin.log(e);
					return false;
				}
			}).map(config -> new LaunchQuickAccessElement(this, config, launchMode)).toArray(QuickAccessElement[]::new);
		} catch (CoreException e) {
			DebugUIPlugin.log(e);
			return new QuickAccessElement[0];
		}
	}

	@Override
	protected void doReset() {
	}

}

Back to the top