summaryrefslogtreecommitdiff
path: root/src/main/java/sevenUnitsGUI/StandardDisplayRules.java
blob: 0c0ba8e72c2a99ae9fcc0f66abeb51a9453aea2b (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
/**
 * Copyright (C) 2022 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 sevenUnitsGUI;

import java.math.BigDecimal;
import java.math.MathContext;
import java.math.RoundingMode;
import java.util.function.Function;
import java.util.regex.Pattern;

import sevenUnits.utils.UncertainDouble;

/**
 * A static utility class that can be used to make display rules for the
 * presenter.
 *
 * @since 2022-04-18
 */
public final class StandardDisplayRules {
	/**
	 * A rule that rounds to a fixed number of decimal places.
	 *
	 * @since 2022-04-18
	 */
	public static final class FixedDecimals
			implements Function<UncertainDouble, String> {
		public static final Pattern TO_STRING_PATTERN = Pattern
				.compile("Round to (\\d+) decimal places");
		/**
		 * The number of places to round to.
		 */
		private final int decimalPlaces;
		
		/**
		 * @param decimalPlaces
		 * @since 2022-04-18
		 */
		private FixedDecimals(int decimalPlaces) {
			this.decimalPlaces = decimalPlaces;
		}
		
		@Override
		public String apply(UncertainDouble t) {
			final var toRound = new BigDecimal(t.value());
			return toRound.setScale(this.decimalPlaces, RoundingMode.HALF_EVEN)
					.toPlainString();
		}
		
		/**
		 * @return the number of decimal places this rule rounds to
		 * @since 2022-04-18
		 */
		public int decimalPlaces() {
			return this.decimalPlaces;
		}
		
		@Override
		public boolean equals(Object obj) {
			if (this == obj)
				return true;
			if (!(obj instanceof FixedDecimals))
				return false;
			final FixedDecimals other = (FixedDecimals) obj;
			if (this.decimalPlaces != other.decimalPlaces)
				return false;
			return true;
		}
		
		@Override
		public int hashCode() {
			return 31 + this.decimalPlaces;
		}
		
		@Override
		public String toString() {
			return "Round to " + this.decimalPlaces + " decimal places";
		}
	}
	
	/**
	 * A rule that rounds to a fixed number of significant digits.
	 *
	 * @since 2022-04-18
	 */
	public static final class FixedPrecision
			implements Function<UncertainDouble, String> {
		public static final Pattern TO_STRING_PATTERN = Pattern
				.compile("Round to (\\d+) significant figures");
		
		/**
		 * The number of significant figures to round to.
		 */
		private final MathContext mathContext;
		
		/**
		 * @param significantFigures
		 * @since 2022-04-18
		 */
		private FixedPrecision(int significantFigures) {
			this.mathContext = new MathContext(significantFigures,
					RoundingMode.HALF_EVEN);
		}
		
		@Override
		public String apply(UncertainDouble t) {
			final var toRound = new BigDecimal(t.value());
			return toRound.round(this.mathContext).toString();
		}
		
		@Override
		public boolean equals(Object obj) {
			if (this == obj)
				return true;
			if (!(obj instanceof FixedPrecision))
				return false;
			final FixedPrecision other = (FixedPrecision) obj;
			if (this.mathContext == null) {
				if (other.mathContext != null)
					return false;
			} else if (!this.mathContext.equals(other.mathContext))
				return false;
			return true;
		}
		
		@Override
		public int hashCode() {
			return 127
					+ (this.mathContext == null ? 0 : this.mathContext.hashCode());
		}
		
		/**
		 * @return the number of significant figures this rule rounds to
		 * @since 2022-04-18
		 */
		public int significantFigures() {
			return this.mathContext.getPrecision();
		}
		
		@Override
		public String toString() {
			return "Round to " + this.mathContext.getPrecision()
					+ " significant figures";
		}
	}
	
	/**
	 * A rounding rule that rounds based on UncertainDouble's toString method.
	 * This means the output will have around as many significant figures as the
	 * input.
	 *
	 * @since 2022-04-18
	 */
	public static final class UncertaintyBased
			implements Function<UncertainDouble, String> {
		private UncertaintyBased() {}
		
		@Override
		public String apply(UncertainDouble t) {
			return t.toString(false, RoundingMode.HALF_EVEN);
		}
		
		@Override
		public String toString() {
			return "Uncertainty-Based Rounding";
		}
	}
	
	/**
	 * For now, I want this to be a singleton. I might want to add a parameter
	 * later, so I won't make it an enum.
	 */
	private static final UncertaintyBased UNCERTAINTY_BASED_ROUNDING_RULE = new UncertaintyBased();
	
	/**
	 * @param decimalPlaces decimal places to round to
	 * @return a rounding rule that rounds to fixed number of decimal places
	 * @since 2022-04-18
	 */
	public static final FixedDecimals fixedDecimals(int decimalPlaces) {
		return new FixedDecimals(decimalPlaces);
	}
	
	/**
	 * @param significantFigures significant figures to round to
	 * @return a rounding rule that rounds to a fixed number of significant
	 *         figures
	 * @since 2022-04-18
	 */
	public static final FixedPrecision fixedPrecision(int significantFigures) {
		return new FixedPrecision(significantFigures);
	}
	
	/**
	 * Gets one of the standard rules from its string representation.
	 *
	 * @param ruleToString string representation of the display rule
	 * @return display rule
	 * @throws IllegalArgumentException if the provided string is not that of a
	 *                                  standard rule.
	 * @since 2021-12-24
	 */
	public static final Function<UncertainDouble, String> getStandardRule(
			String ruleToString) {
		if (UNCERTAINTY_BASED_ROUNDING_RULE.toString().equals(ruleToString))
			return UNCERTAINTY_BASED_ROUNDING_RULE;
		
		// test if it is a fixed-places rule
		final var placesMatch = FixedDecimals.TO_STRING_PATTERN
				.matcher(ruleToString);
		if (placesMatch.matches())
			return new FixedDecimals(Integer.valueOf(placesMatch.group(1)));
		
		// test if it is a fixed-sig-fig rule
		final var sigFigMatch = FixedPrecision.TO_STRING_PATTERN
				.matcher(ruleToString);
		if (sigFigMatch.matches())
			return new FixedPrecision(Integer.valueOf(sigFigMatch.group(1)));
		
		throw new IllegalArgumentException(
				"Provided string does not match any given rules.");
	}
	
	/**
	 * @return an UncertainDouble-based rounding rule
	 * @since 2022-04-18
	 */
	public static final UncertaintyBased uncertaintyBased() {
		return UNCERTAINTY_BASED_ROUNDING_RULE;
	}
	
	private StandardDisplayRules() {}
}