summaryrefslogtreecommitdiff
path: root/src/main/java/sevenUnits/utils/NameSymbol.java
blob: 089978bb7a02976fc2123682fa5addb736315efb (plain)
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/**
 * Copyright (C) 2019, 2022, 2024, 2025 Adrien Hopkins
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
package sevenUnits.utils;

import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;

/**
 * A class that can be used to specify names and a symbol for a unit.
 *
 * @author Adrien Hopkins
 * @since 2019-10-21
 * @since v0.3.0
 */
public final class NameSymbol {
	/** The {@code NameSymbol} with all fields empty. */
	public static final NameSymbol EMPTY = new NameSymbol(Optional.empty(),
			Optional.empty(), new HashSet<>());

	/**
	 * Creates a {@code NameSymbol}, ensuring that if primaryName is null and
	 * otherNames is not empty, one name is moved from otherNames to primaryName
	 *
	 * Ensure that otherNames is not a copy of the inputted argument.
	 */
	private static NameSymbol create(final String name, final String symbol,
			final Set<String> otherNames) {
		final Optional<String> primaryName;

		if (name == null && !otherNames.isEmpty()) {
			// get primary name and remove it from savedNames
			final var it = otherNames.iterator();
			assert it.hasNext();
			primaryName = Optional.of(it.next());
			otherNames.remove(primaryName.get());
		} else {
			primaryName = Optional.ofNullable(name);
		}

		return new NameSymbol(primaryName, Optional.ofNullable(symbol),
				otherNames);
	}

	/**
	 * Gets a {@code NameSymbol} with a primary name, a symbol and no other
	 * names.
	 *
	 * @param name   name to use
	 * @param symbol symbol to use
	 * @return NameSymbol instance
	 * @since 2019-10-21
	 * @since v0.3.0
	 * @throws NullPointerException if name or symbol is null
	 */
	public static NameSymbol of(final String name, final String symbol) {
		return new NameSymbol(Optional.of(name), Optional.of(symbol),
				new HashSet<>());
	}

	/**
	 * Gets a {@code NameSymbol} with a primary name, a symbol and additional
	 * names.
	 *
	 * @param name       name to use
	 * @param symbol     symbol to use
	 * @param otherNames other names to use
	 * @return NameSymbol instance
	 * @since 2019-10-21
	 * @since v0.3.0
	 * @throws NullPointerException if any argument is null
	 */
	public static NameSymbol of(final String name, final String symbol,
			final Set<String> otherNames) {
		return new NameSymbol(Optional.of(name), Optional.of(symbol),
				new HashSet<>(Objects.requireNonNull(otherNames,
						"otherNames must not be null.")));
	}

	/**
	 * h * Gets a {@code NameSymbol} with a primary name, a symbol and additional
	 * names.
	 *
	 * @param name       name to use
	 * @param symbol     symbol to use
	 * @param otherNames other names to use
	 * @return NameSymbol instance
	 * @since 2019-10-21
	 * @since v0.3.0
	 * @throws NullPointerException if any argument is null
	 */
	public static final NameSymbol of(final String name, final String symbol,
			final String... otherNames) {
		return new NameSymbol(Optional.of(name), Optional.of(symbol),
				new HashSet<>(Arrays.asList(Objects.requireNonNull(otherNames,
						"otherNames must not be null."))));
	}

	/**
	 * Gets a {@code NameSymbol} with a primary name, no symbol, and no other
	 * names.
	 *
	 * @param name name to use
	 * @return NameSymbol instance
	 * @since 2019-10-21
	 * @since v0.3.0
	 * @throws NullPointerException if name is null
	 */
	public static NameSymbol ofName(final String name) {
		return new NameSymbol(Optional.of(name), Optional.empty(),
				new HashSet<>());
	}

	/**
	 * Gets a {@code NameSymbol} with a primary name, a symbol and additional
	 * names.
	 * <p>
	 * If any argument is null, this static factory replaces it with an empty
	 * Optional or empty Set.
	 * <p>
	 * If {@code name} is null and {@code otherNames} is not empty, a primary
	 * name will be picked from {@code otherNames}. This name will not appear in
	 * getOtherNames().
	 *
	 * @param name       name to use
	 * @param symbol     symbol to use
	 * @param otherNames other names to use
	 * @return NameSymbol instance
	 * @since 2019-11-26
	 * @since v0.3.0
	 */
	public static NameSymbol ofNullable(final String name, final String symbol,
			final Set<String> otherNames) {
		return NameSymbol.create(name, symbol,
				otherNames == null ? new HashSet<>() : new HashSet<>(otherNames));
	}

	/**
	 * h * Gets a {@code NameSymbol} with a primary name, a symbol and additional
	 * names.
	 * <p>
	 * If any argument is null, this static factory replaces it with an empty
	 * Optional or empty Set.
	 * <p>
	 * If {@code name} is null and {@code otherNames} is not empty, a primary
	 * name will be picked from {@code otherNames}. This name will not appear in
	 * getOtherNames().
	 *
	 * @param name       name to use
	 * @param symbol     symbol to use
	 * @param otherNames other names to use
	 * @return NameSymbol instance
	 * @since 2019-11-26
	 * @since v0.3.0
	 */
	public static final NameSymbol ofNullable(final String name,
			final String symbol, final String... otherNames) {
		return create(name, symbol, otherNames == null ? new HashSet<>()
				: new HashSet<>(Arrays.asList(otherNames)));
	}

	/**
	 * Gets a {@code NameSymbol} with a symbol and no names.
	 *
	 * @param symbol symbol to use
	 * @return NameSymbol instance
	 * @since 2019-10-21
	 * @since v0.3.0
	 * @throws NullPointerException if symbol is null
	 */
	public static NameSymbol ofSymbol(final String symbol) {
		return new NameSymbol(Optional.empty(), Optional.of(symbol),
				new HashSet<>());
	}

	private final Optional<String> primaryName;
	private final Optional<String> symbol;

	private final Set<String> otherNames;

	/**
	 * Creates the {@code NameSymbol}.
	 *
	 * @param primaryName primary name of unit
	 * @param symbol      symbol used to represent unit
	 * @param otherNames  other names and/or spellings, should be a mutable copy
	 *                    of the argument
	 * @since 2019-10-21
	 * @since v0.3.0
	 */
	NameSymbol(final Optional<String> primaryName, final Optional<String> symbol,
			final Set<String> otherNames) {
		this.primaryName = primaryName;
		this.symbol = symbol;
		if (otherNames != null) {
			otherNames.remove(null);
			this.otherNames = Collections.unmodifiableSet(otherNames);
		} else {
			this.otherNames = Set.of();
		}

		if (this.primaryName == null || this.primaryName.isEmpty()) {
			assert this.otherNames.isEmpty();
		}
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (!(obj instanceof NameSymbol))
			return false;
		final var other = (NameSymbol) obj;
		if (this.otherNames == null) {
			if (other.otherNames != null)
				return false;
		} else if (!this.otherNames.equals(other.otherNames))
			return false;
		if (this.primaryName == null) {
			if (other.primaryName != null)
				return false;
		} else if (!this.primaryName.equals(other.primaryName))
			return false;
		if (this.symbol == null) {
			if (other.symbol != null)
				return false;
		} else if (!this.symbol.equals(other.symbol))
			return false;
		return true;
	}

	/**
	 * @return otherNames
	 * @since 2019-10-21
	 * @since v0.3.0
	 */
	public Set<String> getOtherNames() {
		return this.otherNames;
	}

	/**
	 * @return primaryName
	 * @since 2019-10-21
	 * @since v0.3.0
	 */
	public Optional<String> getPrimaryName() {
		return this.primaryName;
	}

	/**
	 * @return symbol
	 * @since 2019-10-21
	 * @since v0.3.0
	 */
	public Optional<String> getSymbol() {
		return this.symbol;
	}

	@Override
	public int hashCode() {
		final var prime = 31;
		var result = 1;
		result = prime * result
				+ (this.otherNames == null ? 0 : this.otherNames.hashCode());
		result = prime * result
				+ (this.primaryName == null ? 0 : this.primaryName.hashCode());
		result = prime * result
				+ (this.symbol == null ? 0 : this.symbol.hashCode());
		return result;
	}

	/** @return true iff this {@code NameSymbol} contains no names or symbols. */
	public boolean isEmpty() {
		// if primaryName is empty, otherNames must also be empty
		return this.primaryName.isEmpty() && this.symbol.isEmpty();
	}

	@Override
	public String toString() {
		if (this.isEmpty())
			return "NameSymbol.EMPTY";
		if (this.primaryName.isPresent() && this.symbol.isPresent())
			return this.primaryName.orElseThrow() + " ("
					+ this.symbol.orElseThrow() + ")";
		return this.primaryName.orElseGet(this.symbol::orElseThrow);
	}

	/**
	 * Creates and returns a copy of this {@code NameSymbol} with the provided
	 * extra name. If this {@code NameSymbol} has a primary name, the provided
	 * name will become an other name, otherwise it will become the primary name.
	 *
	 * @param name additional name to add
	 * @return copy of this NameSymbol with the additional name
	 *
	 * @since 2022-04-19
	 * @since v0.4.0
	 */
	public NameSymbol withExtraName(String name) {
		if (this.primaryName.isPresent()) {
			final var otherNames = new HashSet<>(this.otherNames);
			otherNames.add(name);
			return NameSymbol.ofNullable(this.primaryName.orElse(null),
					this.symbol.orElse(null), otherNames);
		}
		return NameSymbol.ofNullable(name, this.symbol.orElse(null));
	}
}