Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b6669549bfed3e25d28abec19b21d49c83b5a99f (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
/*******************************************************************************
 * Copyright (c) 2011 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.tm.te.ui.decorators.images;

import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.tm.te.core.model.interfaces.IConnectable;
import org.eclipse.tm.te.runtime.model.interfaces.IModelNode;
import org.eclipse.tm.te.ui.interfaces.ImageConsts;
import org.eclipse.tm.te.ui.jface.images.AbstractImageDescriptor;


/**
 * Connectable node image descriptor implementation.
 */
public class ConnectableImageDescriptor extends AbstractImageDescriptor {
	// the base image to decorate with overlays
	private Image baseImage;
	// the image size
	private Point imageSize;

	// Flags representing the object states to decorate
	private int connectState;
	private int connectSubState;
	private boolean pending;

	/**
	 * Constructor.
	 *
	 * @param registry The image registry. Must not be <code>null</code>.
	 * @param baseImage The base image. Must not be <code>null</code>.
	 * @param node The connectable node. Must not be <code>null</code>.
	 */
	public ConnectableImageDescriptor(final ImageRegistry registry, final Image baseImage, final IConnectable node) {
		super(registry);

		Assert.isNotNull(baseImage);
		this.baseImage = baseImage;
		imageSize = new Point(baseImage.getImageData().width, baseImage.getImageData().height);

		// invoke initialize
		invokeInitialize(node);

		// build up the key for the image registry
		defineKey(baseImage.hashCode());
	}

	/**
	 * Invoke the initialize method.
	 * <p>
	 * Called from the constructor to initialize the image descriptor. Sub classes
	 * can overwrite this method to implement necessary thread-safety.
	 *
	 * @param node The connectable node. Must not be <code>null</code>.
	 */
	protected void invokeInitialize(IConnectable node) {
		Assert.isNotNull(node);
		initialize(node);
	}

	/**
	 * Initialize the image descriptor from the connectable node.
	 *
	 * @param node The target node. Must not be <code>null</code>.
	 */
	protected void initialize(IConnectable node) {
		Assert.isNotNull(node);

		connectState = node.getConnectState();
		connectSubState = node.getConnectSubState();
		pending = node instanceof IModelNode ? ((IModelNode)node).isPending() : false;
	}

	protected void defineKey(int hashCode) {
		String key = "CNID:" +  //$NON-NLS-1$
			hashCode + ":" + //$NON-NLS-1$
			connectState + ":" + //$NON-NLS-1$
			connectSubState + ":" + //$NON-NLS-1$
			pending;

		setDecriptorKey(key);
	}

	/* (non-Javadoc)
	 * @see org.eclipse.jface.resource.CompositeImageDescriptor#drawCompositeImage(int, int)
	 */
	@Override
	protected void drawCompositeImage(int width, int height) {
		drawCentered(baseImage, width, height);

		if (pending || (connectState == IConnectable.STATE_UNREACHABLE && (connectSubState == IConnectable.SUB_STATE_REBOOT_MANUAL))) {
			drawTopLeft(ImageConsts.BUSY_OVR);
		}

		if (connectState == IConnectable.STATE_CONNECTING || connectState == IConnectable.STATE_DISCONNECTING) {
			drawBottomRight(ImageConsts.GOLD_OVR);
		} else if (connectState == IConnectable.STATE_UNREACHABLE) {
			drawBottomRight(ImageConsts.RED_OVR);
		} else if (connectState == IConnectable.STATE_CONNECTED) {
			drawBottomRight(ImageConsts.GREEN_OVR);
		} else if (connectState == IConnectable.STATE_UNCONNECTED) {
			drawBottomRight(ImageConsts.GREY_OVR);
		}
	}

	/* (non-Javadoc)
	 * @see org.eclipse.jface.resource.CompositeImageDescriptor#getSize()
	 */
	@Override
	protected Point getSize() {
		return imageSize;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.tm.te.ui.jface.images.AbstractImageDescriptor#getBaseImage()
	 */
	@Override
	protected Image getBaseImage() {
		return baseImage;
	}
}

Back to the top