ValueBuilder.java

  1. package com.surrealdb;

  2. import java.lang.reflect.Field;
  3. import java.lang.reflect.Modifier;
  4. import java.math.BigDecimal;
  5. import java.math.BigInteger;
  6. import java.time.Duration;
  7. import java.time.ZonedDateTime;
  8. import java.util.ArrayList;
  9. import java.util.Collection;
  10. import java.util.List;
  11. import java.util.Optional;
  12. import java.util.stream.Collectors;


  13. class ValueBuilder {

  14.     private static <T> ValueMut convertObject(final T object) throws IllegalAccessException {
  15.         if (object == null) {
  16.             return null;
  17.         }
  18.         if (object instanceof ValueMut) {
  19.             return (ValueMut) object;
  20.         }
  21.         if (object instanceof String) {
  22.             return ValueMut.createString((String) object);
  23.         }
  24.         if (object instanceof Double) {
  25.             return ValueMut.createDouble((Double) object);
  26.         }
  27.         if (object instanceof Float) {
  28.             return ValueMut.createDouble((Float) object);
  29.         }
  30.         if (object instanceof Long) {
  31.             return ValueMut.createLong((Long) object);
  32.         }
  33.         if (object instanceof Integer) {
  34.             return ValueMut.createLong((Integer) object);
  35.         }
  36.         if (object instanceof Short) {
  37.             return ValueMut.createLong((Short) object);
  38.         }
  39.         if (object instanceof Boolean) {
  40.             return ValueMut.createBoolean((Boolean) object);
  41.         }
  42.         if (object instanceof BigDecimal) {
  43.             return ValueMut.createBigDecimal((BigDecimal) object);
  44.         }
  45.         if (object instanceof Duration) {
  46.             return ValueMut.createDuration((Duration) object);
  47.         }
  48.         if (object instanceof ZonedDateTime) {
  49.             return ValueMut.createDatetime((ZonedDateTime) object);
  50.         }
  51.         if (object instanceof BigInteger) {
  52.             throw new SurrealException("Type not supported: " + object.getClass().getCanonicalName());
  53.         }
  54.         if (object instanceof Collection) {
  55.             final Collection<?> collection = (Collection<?>) object;
  56.             // Create a ValueMut for each element of the collection
  57.             final List<ValueMut> values = collection.stream().map(ValueBuilder::convert).collect(Collectors.toList());
  58.             return ValueMut.createArray(values);
  59.         }
  60.         if (object instanceof Optional) {
  61.             final Optional<?> optional = (Optional<?>) object;
  62.             return optional.map(ValueBuilder::convert).orElse(null);
  63.         }
  64.         if (object instanceof Id) {
  65.             return ValueMut.createId((Id) object);
  66.         }
  67.         if (object instanceof RecordId) {
  68.             return ValueMut.createThing((RecordId) object);
  69.         }
  70.         final Field[] fields = object.getClass().getDeclaredFields();
  71.         if (fields.length > 0) {
  72.             final List<EntryMut> entries = new ArrayList<>(fields.length);
  73.             for (final Field field : fields) {
  74.                 if (Modifier.isStatic(field.getModifiers())) {
  75.                     continue;
  76.                 }
  77.                 final String name = field.getName();
  78.                 final ValueMut value = convert(field.get(object));
  79.                 if (value != null) {
  80.                     entries.add(EntryMut.newEntry(name, value));
  81.                 }
  82.             }
  83.             return ValueMut.createObject(entries);
  84.         }
  85.         throw new SurrealException("No field found: " + object.getClass().getCanonicalName());
  86.     }

  87.     static <T> ValueMut convert(final T object) {
  88.         try {
  89.             return convertObject(object);
  90.         } catch (IllegalAccessException e) {
  91.             throw new SurrealException("Unable to convert object", e);
  92.         }
  93.     }

  94. }