Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3c264326424fba9415418d3b4c30b91ece114b6a (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*******************************************************************************
 *  Copyright (c) 2005, 2009 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
 *     Bjorn Freeman-Benson - initial API and implementation
 *     Wind River Systems - adopted to use with DSF
 *******************************************************************************/
package org.eclipse.cdt.examples.dsf.pda.ui;

import java.net.URL;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.WeakHashMap;

import org.eclipse.cdt.dsf.service.DsfSession;
import org.eclipse.cdt.examples.dsf.pda.launch.PDALaunch;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchesListener2;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.internal.util.BundleUtility;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;

/**
 * The main plugin class to be used in the desktop.
 */
public class PDAUIPlugin extends AbstractUIPlugin implements ILaunchesListener2 {

	public static String PLUGIN_ID = "org.eclipse.cdt.examples.dsf.pda.ui ";

	//The shared instance.
	private static PDAUIPlugin plugin;

	private static BundleContext fContext;

	private final static String ICONS_PATH = "icons/full/";//$NON-NLS-1$
	private final static String PATH_OBJECT = ICONS_PATH + "obj16/"; //Model object icons //$NON-NLS-1$

	/**
	 * PDA program image
	 */
	public final static String IMG_OBJ_PDA = "IMB_OBJ_PDA";

	/**
	 * Keyword color
	 */
	public final static RGB KEYWORD = new RGB(0, 0, 255);
	public final static RGB LABEL = new RGB(128, 128, 0);

	/**
	 * Managed colors
	 */
	private Map<RGB, Color> fColors = new HashMap<RGB, Color>();

	/**
	 * Active adapter sets.  They are accessed using the DSF session ID
	 * which owns the debug services.
	 */
	private Map<String, SessionAdapterSet> fSessionAdapterSets = Collections
			.synchronizedMap(new HashMap<String, SessionAdapterSet>());

	/**
	 * Map of launches for which adapter sets have already been disposed.
	 * This map (used as a set) is maintained in order to avoid re-creating an
	 * adapter set after the launch was removed from the launch manager, but
	 * while the launch is still being held by other classes which may
	 * request its adapters.  A weak map is used to avoid leaking
	 * memory once the launches are no longer referenced.
	 * <p>
	 * Access to this map is synchronized using the fSessionAdapterSets
	 * instance.
	 * </p>
	 */
	private Map<ILaunch, Object> fDisposedSessionAdapterSets = new WeakHashMap<ILaunch, Object>();

	private void disposeAdapterSet(PDALaunch launch) {
		String sessionId = launch.getSession().getId();
		synchronized (fSessionAdapterSets) {
			if (fSessionAdapterSets.containsKey(sessionId)) {
				fSessionAdapterSets.remove(sessionId).dispose();
				fDisposedSessionAdapterSets.put(launch, null);
			}
		}
	}

	/**
	 * The constructor.
	 */
	public PDAUIPlugin() {
		super();
		plugin = this;
	}

	/**
	 * This method is called upon plug-in activation
	 */
	@Override
	public void start(BundleContext context) throws Exception {
		fContext = context;
		super.start(context);
		DebugPlugin.getDefault().getLaunchManager().addLaunchListener(this);
	}

	/**
	 * This method is called when the plug-in is stopped
	 */
	@Override
	public void stop(BundleContext context) throws Exception {
		DebugPlugin.getDefault().getLaunchManager().removeLaunchListener(this);
		disposeAdapterSets();
		super.stop(context);
		plugin = null;
		fContext = null;
		for (Map.Entry<RGB, Color> entry : fColors.entrySet()) {
			entry.getValue().dispose();
		}
	}

	/**
	 * Returns the shared instance.
	 */
	public static PDAUIPlugin getDefault() {
		return plugin;
	}

	public static BundleContext getBundleContext() {
		return fContext;
	}

	@Override
	protected void initializeImageRegistry(ImageRegistry reg) {
		declareImage(IMG_OBJ_PDA, PATH_OBJECT + "pda.gif");
	}

	/**
	 * Declares a workbench image given the path of the image file (relative to
	 * the workbench plug-in). This is a helper method that creates the image
	 * descriptor and passes it to the main <code>declareImage</code> method.
	 *
	 * @param symbolicName the symbolic name of the image
	 * @param path the path of the image file relative to the base of the workbench
	 * plug-ins install directory
	 * <code>false</code> if this is not a shared image
	 */
	private void declareImage(String key, String path) {
		URL url = BundleUtility.find("org.eclipse.cdt.examples.dsf.pda.ui", path);
		ImageDescriptor desc = ImageDescriptor.createFromURL(url);
		getImageRegistry().put(key, desc);
	}

	/**
	 * Returns the color described by the given RGB.
	 *
	 * @param rgb
	 * @return color
	 */
	public Color getColor(RGB rgb) {
		Color color = fColors.get(rgb);
		if (color == null) {
			color = new Color(Display.getCurrent(), rgb);
			fColors.put(rgb, color);
		}
		return color;
	}

	SessionAdapterSet getAdapterSet(PDALaunch launch) {
		// Find the correct set of adapters based on the launch.  If not found
		// it means that we have a new launch, and we have to create a
		// new set of adapters.
		SessionAdapterSet adapterSet;
		synchronized (fSessionAdapterSets) {
			// The adapter set for the given launch was already disposed.
			// Return a null adapter.
			if (fDisposedSessionAdapterSets.containsKey(launch)) {
				return null;
			}
			String sessionId = launch.getSession().getId();
			adapterSet = fSessionAdapterSets.get(sessionId);
			if (adapterSet == null) {
				adapterSet = new SessionAdapterSet(launch);
				fSessionAdapterSets.put(sessionId, adapterSet);
			}
		}
		return adapterSet;
	}

	SessionAdapterSet getAdapterSet(String sessionId) {
		DsfSession session = DsfSession.getSession(sessionId);
		ILaunch launch = (ILaunch) session.getModelAdapter(ILaunch.class);
		if (launch instanceof PDALaunch) {
			return getAdapterSet((PDALaunch) launch);
		}
		return null;
	}

	/**
	 * Dispose adapter sets for all launches.
	 */
	private void disposeAdapterSets() {
		for (ILaunch launch : DebugPlugin.getDefault().getLaunchManager().getLaunches()) {
			if (launch instanceof PDALaunch) {
				disposeAdapterSet((PDALaunch) launch);
			}
		}
	}

	public void launchesRemoved(ILaunch[] launches) {
		// Dispose the set of adapters for a launch only after the launch is
		// removed from the view.  If the launch is terminated, the adapters
		// are still needed to populate the contents of the view.
		for (ILaunch launch : launches) {
			if (launch instanceof PDALaunch) {
				disposeAdapterSet((PDALaunch) launch);
			}
		}
	}

	public void launchesTerminated(ILaunch[] launches) {
	}

	public void launchesAdded(ILaunch[] launches) {
	}

	public void launchesChanged(ILaunch[] launches) {
	}

}

Back to the top