Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d69db4b8aef5c2a068164b0dea4b8414c979d140 (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
/*******************************************************************************
 *  Copyright (c) 2000, 2017 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
 *      Felix Riegger (SAP AG) - consolidation of publishers for PDE formats (bug 331974)
 *******************************************************************************/
package org.eclipse.equinox.p2.publisher.eclipse;

import org.eclipse.equinox.p2.metadata.Version;
import org.eclipse.equinox.p2.metadata.VersionRange;

/**
 */
public class FeatureEntry implements IPlatformEntry {
	private final String id;
	private String versionOrRange;
	private String url;
	private String os;
	private String ws;
	private String arch;
	private String nl;
	private String match;
	private final boolean isPlugin;
	private boolean isFragment = false;
	private boolean isRequires = false;
	private Boolean unpack = null;
	private boolean optional = false;
	private boolean isPatch = false;
	/**
	 * Temporary field to add provorg.eclipse.pde.internal.publishing.model.filters to features
	 */
	private String filter;

	public static FeatureEntry createRequires(String id, String version, String match, String filter, boolean isPlugin) {
		FeatureEntry result = new FeatureEntry(id, version, isPlugin);
		result.match = match;
		result.isRequires = true;
		// for requires we don't care what the form is so leave it as false (JAR'd)
		result.unpack = false;
		if (filter != null)
			result.setFilter(filter);
		return result;
	}

	public static FeatureEntry createRequires(String id, VersionRange versionRange, String match, String filter, boolean isPlugin) {
		FeatureEntry result = new FeatureEntry(id, versionRange, isPlugin);
		result.match = match;
		result.isRequires = true;
		// for requires we don't care what the form is so leave it as false (JAR'd)
		result.unpack = false;
		if (filter != null)
			result.setFilter(filter);
		return result;
	}

	public FeatureEntry(String id, String version, boolean isPlugin) {
		this.id = id;
		this.versionOrRange = Version.parseVersion(version).toString();
		this.isPlugin = isPlugin;
	}

	public FeatureEntry(String id, VersionRange versionRange, boolean isPlugin) {
		this.id = id;
		this.versionOrRange = versionRange.toString();
		this.isPlugin = isPlugin;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		final FeatureEntry other = (FeatureEntry) obj;
		if (id == null) {
			if (other.id != null)
				return false;
		} else if (!id.equals(other.id))
			return false;
		if (versionOrRange == null) {
			if (other.versionOrRange != null)
				return false;
		} else if (!versionOrRange.equals(other.versionOrRange))
			return false;

		if (isPlugin() != other.isPlugin())
			return false;
		if (isRequires() != other.isRequires())
			return false;
		return true;
	}

	@Override
	public String getArch() {
		return arch;
	}

	/**
	 * Temporary method to add provisioning filters to features
	 */
	public String getFilter() {
		return filter;
	}

	public String getId() {
		return id;
	}

	public String getMatch() {
		return match;
	}

	@Override
	public String getNL() {
		return nl;
	}

	@Override
	public String getOS() {
		return os;
	}

	public String getURL() {
		return url;
	}

	public String getVersion() {
		return versionOrRange;
	}

	@Override
	public String getWS() {
		return ws;
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((id == null) ? 0 : id.hashCode());
		result = prime * result + ((versionOrRange == null) ? 0 : versionOrRange.hashCode());
		return result;
	}

	public boolean isFragment() {
		return isFragment;
	}

	public boolean isOptional() {
		return optional;
	}

	public boolean isPlugin() {
		return isPlugin;
	}

	public boolean isRequires() {
		return isRequires;
	}

	public boolean isUnpack() {
		return (unpack == null || unpack.booleanValue());
	}

	public void setEnvironment(String os, String ws, String arch, String nl) {
		this.os = os;
		this.ws = ws;
		this.arch = arch;
		this.nl = nl;
	}

	/**
	 * Temporary method to add provisioning filters to features
	 */
	public void setFilter(String filter) {
		this.filter = filter;

	}

	public void setFragment(boolean value) {
		isFragment = value;
	}

	public void setOptional(boolean value) {
		optional = value;
	}

	public void setUnpack(boolean value) {
		unpack = Boolean.valueOf(value);
	}

	public void setURL(String value) {
		url = value;
	}

	public void setVersion(String value) {
		versionOrRange = Version.parseVersion(value).toString();
	}

	@Override
	public String toString() {
		StringBuilder result = new StringBuilder();
		result.append(isRequires ? "Requires: " : ""); //$NON-NLS-1$ //$NON-NLS-2$
		result.append(isPlugin ? "Plugin: " : "Feature: "); //$NON-NLS-1$ //$NON-NLS-2$
		result.append(id != null ? id.toString() : ""); //$NON-NLS-1$
		result.append(versionOrRange != null ? " " + versionOrRange.toString() : ""); //$NON-NLS-1$ //$NON-NLS-2$
		return result.toString();
	}

	public boolean unpackSet() {
		return unpack != null;
	}

	public boolean isPatch() {
		return isPatch;
	}

	public void setPatch(boolean patch) {
		this.isPatch = patch;
	}
}

Back to the top