Skip to main content
summaryrefslogtreecommitdiffstats
blob: 823412aaa118d00ecb954f4150b6049a322ab758 (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
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ui.sync.actions;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.Separator;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.team.internal.ui.TeamUIPlugin;
import org.eclipse.team.internal.ui.sync.views.SynchronizeView;

/**
 * This class manages the actions contributed by the subscriber.
 */
public class SyncViewerSubscriberActions extends SyncViewerActionGroup {

	// cache of the subscriber actins
	private HashMap definitions; // Subscriber class name -> SubscriberAction[]
	private ContributedSubscriberAction[] actions;
	
	/**
	 * @param syncView
	 */
	protected SyncViewerSubscriberActions(SynchronizeView syncView) {
		super(syncView);
		loadDefinitions();
	}

	private void loadDefinitions() {
		IExtensionPoint point = Platform.getPluginRegistry().getExtensionPoint(TeamUIPlugin.ID, TeamUIPlugin.PT_SUBSCRIBER_MENUS);
		IExtension[] types = point.getExtensions();
		definitions = new HashMap(types.length);
		for (int i = 0; i < types.length; i++)
			loadDefinitions(types[i]);
	}

	private void loadDefinitions(IExtension type) {
		IConfigurationElement[] elements = type.getConfigurationElements();
		for (int i = 0; i < elements.length; i++) {
			IConfigurationElement element = elements[i];
			String subscriberName = getSubscriberClassName(element);
			if (subscriberName != null) {
				definitions.put(getSubscriberClassName(element), createActions(element));
			}
		}
	}

	/**
	 * @param element
	 * @return
	 */
	private ContributedSubscriberAction[] createActions(IConfigurationElement element) {
		IConfigurationElement[] children = element.getChildren();
		List result = new ArrayList();
		for (int i = 0; i < children.length; i++) {
			IConfigurationElement actionDefinition = children[i];
			ContributedSubscriberAction action = new ContributedSubscriberAction(getSyncView(), actionDefinition);
			result.add(action);
		}
		return (ContributedSubscriberAction[]) result.toArray(new ContributedSubscriberAction[result.size()]);
	}

	/**
	 * @param extension
	 * @return
	 */
	private String getSubscriberClassName(IConfigurationElement element) {
		return (String)element.getAttribute("subscriberClass"); //$NON-NLS-1$
	}
	
	/* (non-Javadoc)
	 * @see org.eclipse.ui.actions.ActionGroup#fillContextMenu(org.eclipse.jface.action.IMenuManager)
	 */
	public void fillContextMenu(IMenuManager menu) {
		super.fillContextMenu(menu);
		if (actions == null || actions.length == 0) return;
		menu.add(new Separator());
		ISelection selection = getSyncView().getSelection();
		for (int i = 0; i < actions.length; i++) {
			ContributedSubscriberAction action = actions[i];
			action.setActivePart(getSyncView().getSite().getPage().getActivePart());
			action.setContext(getSubscriberContext());
			action.selectionChanged(selection);
			menu.add(action);
		}
	}

	/* (non-Javadoc)
	 * @see org.eclipse.team.internal.ui.sync.actions.SyncViewerActionGroup#initializeActions()
	 */
	protected void initializeActions() {
		super.initializeActions();
		if(getSubscriberContext() != null) {
			String className = getSubscriberContext().getSubscriber().getClass().getName();
			actions = (ContributedSubscriberAction[])definitions.get(className);
		}
	}

}

Back to the top