Skip to content

Commit 3969be0

Browse files
committed
Polishing.
Introduce empty constants to reduce allocations. See #3193 Original pull request: #3194
1 parent db38268 commit 3969be0

File tree

4 files changed

+67
-10
lines changed

4 files changed

+67
-10
lines changed

src/main/java/org/springframework/data/domain/DoubleVector.java

+20-3
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,26 @@
2424
* {@link Vector} implementation based on {@code double} array.
2525
*
2626
* @author Mark Paluch
27+
* @author Christoph Strobl
2728
* @since 3.5
2829
*/
2930
class DoubleVector implements Vector {
3031

31-
private final double[] v;
32+
static final DoubleVector EMPTY = new DoubleVector(new double[0]) {
33+
34+
@Override
35+
public float[] toFloatArray() {
36+
return FloatVector.EMPTY.v;
37+
}
38+
39+
@Override
40+
public double[] toDoubleArray() {
41+
return this.v;
42+
}
43+
44+
};
45+
46+
final double[] v;
3247

3348
DoubleVector(double[] v) {
3449
this.v = v;
@@ -40,7 +55,7 @@ class DoubleVector implements Vector {
4055
static Vector copy(double[] v) {
4156

4257
if (v.length == 0) {
43-
return new DoubleVector(new double[0]);
58+
return EMPTY;
4459
}
4560

4661
return new DoubleVector(Arrays.copyOf(v, v.length));
@@ -52,7 +67,7 @@ static Vector copy(double[] v) {
5267
static Vector copy(Collection<? extends Number> v) {
5368

5469
if (v.isEmpty()) {
55-
return new DoubleVector(new double[0]);
70+
return EMPTY;
5671
}
5772

5873
double[] copy = new double[v.size()];
@@ -101,9 +116,11 @@ public boolean equals(Object o) {
101116
if (this == o) {
102117
return true;
103118
}
119+
104120
if (!(o instanceof DoubleVector that)) {
105121
return false;
106122
}
123+
107124
return ObjectUtils.nullSafeEquals(v, that.v);
108125
}
109126

src/main/java/org/springframework/data/domain/FloatVector.java

+20-3
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,26 @@
2424
* {@link Vector} implementation based on {@code float} array.
2525
*
2626
* @author Mark Paluch
27+
* @author Christoph Strobl
2728
* @since 3.5
2829
*/
2930
class FloatVector implements Vector {
3031

31-
private final float[] v;
32+
static final FloatVector EMPTY = new FloatVector(new float[0]) {
33+
34+
@Override
35+
public float[] toFloatArray() {
36+
return this.v;
37+
}
38+
39+
@Override
40+
public double[] toDoubleArray() {
41+
return DoubleVector.EMPTY.v;
42+
}
43+
44+
};
45+
46+
final float[] v;
3247

3348
FloatVector(float[] v) {
3449
this.v = v;
@@ -40,7 +55,7 @@ class FloatVector implements Vector {
4055
static Vector copy(float[] v) {
4156

4257
if (v.length == 0) {
43-
return new FloatVector(new float[0]);
58+
return EMPTY;
4459
}
4560

4661
return new FloatVector(Arrays.copyOf(v, v.length));
@@ -52,7 +67,7 @@ static Vector copy(float[] v) {
5267
static Vector copy(Collection<? extends Number> v) {
5368

5469
if (v.isEmpty()) {
55-
return new FloatVector(new float[0]);
70+
return EMPTY;
5671
}
5772

5873
float[] copy = new float[v.size()];
@@ -101,9 +116,11 @@ public boolean equals(Object o) {
101116
if (this == o) {
102117
return true;
103118
}
119+
104120
if (!(o instanceof FloatVector that)) {
105121
return false;
106122
}
123+
107124
return ObjectUtils.nullSafeEquals(v, that.v);
108125
}
109126

src/main/java/org/springframework/data/domain/NumberVector.java

+20-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,25 @@
2525
* {@link Vector} implementation based on {@link Number} array.
2626
*
2727
* @author Mark Paluch
28+
* @author Christoph Strobl
2829
* @since 3.5
2930
*/
3031
class NumberVector implements Vector {
3132

33+
static final NumberVector EMPTY = new NumberVector(new Number[0]) {
34+
35+
@Override
36+
public float[] toFloatArray() {
37+
return FloatVector.EMPTY.v;
38+
}
39+
40+
@Override
41+
public double[] toDoubleArray() {
42+
return DoubleVector.EMPTY.v;
43+
}
44+
45+
};
46+
3247
private final Number[] v;
3348

3449
NumberVector(Number[] v) {
@@ -43,7 +58,7 @@ class NumberVector implements Vector {
4358
static Vector copy(Number[] v) {
4459

4560
if (v.length == 0) {
46-
return new NumberVector(new Number[0]);
61+
return EMPTY;
4762
}
4863

4964
return new NumberVector(Arrays.copyOf(v, v.length));
@@ -55,7 +70,7 @@ static Vector copy(Number[] v) {
5570
static Vector copy(Collection<? extends Number> v) {
5671

5772
if (v.isEmpty()) {
58-
return new NumberVector(new Number[0]);
73+
return EMPTY;
5974
}
6075

6176
return new NumberVector(v.toArray(Number[]::new));
@@ -74,6 +89,7 @@ public Class<? extends Number> getType() {
7489
return Number.class;
7590
}
7691
}
92+
7793
return candidate;
7894
}
7995

@@ -115,9 +131,11 @@ public boolean equals(Object o) {
115131
if (this == o) {
116132
return true;
117133
}
134+
118135
if (!(o instanceof NumberVector that)) {
119136
return false;
120137
}
138+
121139
return ObjectUtils.nullSafeEquals(v, that.v);
122140
}
123141

src/main/java/org/springframework/data/domain/Vector.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ static Vector of(double... values) {
7575
static Vector of(Collection<? extends Number> values) {
7676

7777
Assert.notNull(values, "Vector values must not be null");
78-
if(values.isEmpty()) {
79-
return NumberVector.copy(new Number[0]);
78+
79+
if (values.isEmpty()) {
80+
return NumberVector.EMPTY;
8081
}
8182

8283
Class<?> cet = CollectionUtils.findCommonElementType(values);
@@ -152,6 +153,8 @@ static Vector unsafe(double[] values) {
152153
* <p>
153154
* Conversion to {@code float} can incorporate loss of precision or result in values with a slight offset due to data
154155
* type conversion if the source is not a {@code float} array.
156+
* <p>
157+
* Note that Vectors using quantization or binary representations may not be convertible to a {@code float} array.
155158
*
156159
* @return a new {@code float} array representing the vector point.
157160
*/
@@ -163,6 +166,8 @@ static Vector unsafe(double[] values) {
163166
* <p>
164167
* Conversion to {@code double} can incorporate loss of precision or result in values with a slight offset due to data
165168
* type conversion if the source is not a {@code double} array.
169+
* <p>
170+
* Note that Vectors using quantization or binary representations may not be convertible to a {@code double} array.
166171
*
167172
* @return a new {@code double} array representing the vector point.
168173
*/

0 commit comments

Comments
 (0)