-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: point id * ci: try release master only * chore: bump version
- Loading branch information
Showing
6 changed files
with
112 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
package io.qdrant.spark; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import org.apache.spark.sql.catalyst.InternalRow; | ||
import org.apache.spark.sql.catalyst.util.ArrayData; | ||
import org.apache.spark.sql.types.DataType; | ||
import org.apache.spark.sql.types.StructField; | ||
import org.apache.spark.sql.types.StructType; | ||
import org.apache.spark.sql.types.ArrayType; | ||
|
||
class ObjectFactory { | ||
public static Object object(InternalRow record, StructField field, int fieldIndex) { | ||
DataType dataType = field.dataType(); | ||
|
||
switch (dataType.typeName()) { | ||
case "integer": | ||
return record.getInt(fieldIndex); | ||
case "float": | ||
return record.getFloat(fieldIndex); | ||
case "double": | ||
return record.getDouble(fieldIndex); | ||
case "long": | ||
return record.getLong(fieldIndex); | ||
case "boolean": | ||
return record.getBoolean(fieldIndex); | ||
case "string": | ||
return record.getString(fieldIndex); | ||
case "array": | ||
ArrayType arrayType = (ArrayType) dataType; | ||
ArrayData arrayData = record.getArray(fieldIndex); | ||
return object(arrayData, arrayType.elementType()); | ||
case "struct": | ||
StructType structType = (StructType) dataType; | ||
InternalRow structData = record.getStruct(fieldIndex, structType.fields().length); | ||
return object(structData, structType); | ||
default: | ||
return null; | ||
} | ||
} | ||
|
||
public static Object object(ArrayData arrayData, DataType elementType) { | ||
|
||
switch (elementType.typeName()) { | ||
case "string": { | ||
int length = arrayData.numElements(); | ||
String[] result = new String[length]; | ||
for (int i = 0; i < length; i++) { | ||
result[i] = arrayData.getUTF8String(i).toString(); | ||
} | ||
return result; | ||
} | ||
|
||
case "struct": { | ||
StructType structType = (StructType) elementType; | ||
int length = arrayData.numElements(); | ||
Object[] result = new Object[length]; | ||
for (int i = 0; i < length; i++) { | ||
InternalRow structData = arrayData.getStruct(i, structType.fields().length); | ||
result[i] = object(structData, structType); | ||
} | ||
return result; | ||
} | ||
default: | ||
return arrayData.toObjectArray(elementType); | ||
} | ||
} | ||
|
||
public static Object object(InternalRow structData, StructType structType) { | ||
Map<String, Object> result = new HashMap<>(); | ||
for (int i = 0; i < structType.fields().length; i++) { | ||
StructField structField = structType.fields()[i]; | ||
result.put(structField.name(), object(structData, structField, i)); | ||
} | ||
return result; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters