@@ -95,6 +95,13 @@ public interface Type extends Narrowable<Type>, PlanSerializable {
95
95
@ Nonnull
96
96
None NONE = new None ();
97
97
98
+ @ Nonnull
99
+ Uuid UUID_NULL_INSTANCE = new Uuid (true );
100
+
101
+ @ Nonnull
102
+ Uuid UUID_NON_NULL_INSTANCE = new Uuid (false );
103
+
104
+
98
105
/**
99
106
* A map from Java {@link Class} to corresponding {@link TypeCode}.
100
107
*/
@@ -333,6 +340,15 @@ static None noneType() {
333
340
return Type .NONE ;
334
341
}
335
342
343
+ @ Nonnull
344
+ static Uuid uuidType (boolean withNullability ) {
345
+ if (withNullability ) {
346
+ return UUID_NULL_INSTANCE ;
347
+ } else {
348
+ return UUID_NON_NULL_INSTANCE ;
349
+ }
350
+ }
351
+
336
352
/**
337
353
* For a given {@link TypeCode}, it returns a corresponding <i>nullable</i> {@link Type}.
338
354
* <br>
@@ -388,14 +404,12 @@ private static Type fromProtoType(@Nullable Descriptors.GenericDescriptor descri
388
404
@ Nonnull Descriptors .FieldDescriptor .Type protoType ,
389
405
@ Nonnull FieldDescriptorProto .Label protoLabel ,
390
406
boolean isNullable ) {
391
- final var typeCode = TypeCode .fromProtobufInfo (descriptor , protoType );
407
+ final var typeCode = TypeCode .fromProtobufInfo (protoType );
392
408
if (protoLabel == FieldDescriptorProto .Label .LABEL_REPEATED ) {
393
409
// collection type
394
410
return fromProtoTypeToArray (descriptor , protoType , typeCode , false );
395
411
} else if (typeCode .isPrimitive ()) {
396
412
return primitiveType (typeCode , isNullable );
397
- } else if (typeCode == TypeCode .UUID ) {
398
- return Uuid .getInstance (isNullable );
399
413
} else if (typeCode == TypeCode .ENUM ) {
400
414
final var enumDescriptor = (Descriptors .EnumDescriptor )Objects .requireNonNull (descriptor );
401
415
return Enum .fromProtoValues (isNullable , enumDescriptor .getValues ());
@@ -405,8 +419,10 @@ private static Type fromProtoType(@Nullable Descriptors.GenericDescriptor descri
405
419
if (NullableArrayTypeUtils .describesWrappedArray (messageDescriptor )) {
406
420
// find TypeCode of array elements
407
421
final var elementField = messageDescriptor .findFieldByName (NullableArrayTypeUtils .getRepeatedFieldName ());
408
- final var elementTypeCode = TypeCode .fromProtobufInfo (elementField .getMessageType (), elementField . getType ());
422
+ final var elementTypeCode = TypeCode .fromProtobufInfo (elementField .getType ());
409
423
return fromProtoTypeToArray (descriptor , protoType , elementTypeCode , true );
424
+ } else if (Uuid .MESSAGE_NAME .equals (messageDescriptor .getName ())) {
425
+ return Type .uuidType (isNullable );
410
426
} else {
411
427
return Record .fromFieldDescriptorsMap (isNullable , Record .toFieldDescriptorMap (messageDescriptor .getFields ()));
412
428
}
@@ -627,7 +643,7 @@ static Type fromObject(@Nullable final Object object) {
627
643
return Type .primitiveType (typeCode , false );
628
644
}
629
645
if (typeCode == TypeCode .UUID ) {
630
- return Type .Uuid . getInstance (false );
646
+ return Type .uuidType (false );
631
647
}
632
648
throw new RecordCoreException ("Unable to convert value to Type" )
633
649
.addLogInfo (LogMessageKeys .VALUE , object );
@@ -786,8 +802,7 @@ private static BiMap<Class<?>, TypeCode> computeClassToTypeCodeMap() {
786
802
* @return A corresponding {@link TypeCode} instance.
787
803
*/
788
804
@ Nonnull
789
- public static TypeCode fromProtobufInfo (@ Nullable Descriptors .GenericDescriptor descriptor ,
790
- @ Nonnull final Descriptors .FieldDescriptor .Type protobufType ) {
805
+ public static TypeCode fromProtobufInfo (@ Nonnull final Descriptors .FieldDescriptor .Type protobufType ) {
791
806
switch (protobufType ) {
792
807
case DOUBLE :
793
808
return TypeCode .DOUBLE ;
@@ -804,10 +819,6 @@ public static TypeCode fromProtobufInfo(@Nullable Descriptors.GenericDescriptor
804
819
case ENUM :
805
820
return TypeCode .ENUM ;
806
821
case MESSAGE :
807
- Verify .verify (descriptor != null );
808
- if (Uuid .MESSAGE_NAME .equals (descriptor .getName ())) {
809
- return TypeCode .UUID ;
810
- }
811
822
return TypeCode .RECORD ;
812
823
case BYTES :
813
824
return TypeCode .BYTES ;
@@ -2904,20 +2915,9 @@ public Array fromProto(@Nonnull final PlanSerializationContext serializationCont
2904
2915
2905
2916
class Uuid implements Type {
2906
2917
2907
- private static final Uuid NULL_INSTANCE = new Uuid (true );
2908
- private static final Uuid NON_NULL_INSTANCE = new Uuid (false );
2909
-
2910
2918
public static final String MESSAGE_NAME = TupleFieldsProto .UUID .getDescriptor ().getName ();
2911
2919
2912
- final boolean isNullable ;
2913
-
2914
- public static Uuid getInstance (boolean nullable ) {
2915
- if (nullable ) {
2916
- return NULL_INSTANCE ;
2917
- } else {
2918
- return NON_NULL_INSTANCE ;
2919
- }
2920
- }
2920
+ private final boolean isNullable ;
2921
2921
2922
2922
private Uuid (boolean isNullable ) {
2923
2923
this .isNullable = isNullable ;
@@ -2937,9 +2937,9 @@ public boolean isNullable() {
2937
2937
@ Override
2938
2938
public Type withNullability (final boolean newIsNullable ) {
2939
2939
if (newIsNullable ) {
2940
- return NULL_INSTANCE ;
2940
+ return UUID_NULL_INSTANCE ;
2941
2941
} else {
2942
- return NON_NULL_INSTANCE ;
2942
+ return UUID_NON_NULL_INSTANCE ;
2943
2943
}
2944
2944
}
2945
2945
@@ -2990,7 +2990,7 @@ public boolean isUuid() {
2990
2990
public static Uuid fromProto (@ Nonnull final PlanSerializationContext serializationContext ,
2991
2991
@ Nonnull final PUuidType uuidTypeProto ) {
2992
2992
Verify .verify (uuidTypeProto .hasIsNullable ());
2993
- return Uuid . getInstance (uuidTypeProto .getIsNullable ());
2993
+ return Type . uuidType (uuidTypeProto .getIsNullable ());
2994
2994
}
2995
2995
2996
2996
0 commit comments