Search in sources :

Example 96 with KriptonRuntimeException

use of com.abubusoft.kripton.exception.KriptonRuntimeException in project kripton by xcesco.

the class BeanTable method parseValueEnumTypeSet.

/**
 * for attribute valueEnumTypeSet parsing
 */
public static HashSet<EnumType> parseValueEnumTypeSet(byte[] input) {
    if (input == null) {
        return null;
    }
    KriptonJsonContext context = KriptonBinder.jsonBind();
    try (JacksonWrapperParser wrapper = context.createParser(input)) {
        JsonParser jacksonParser = wrapper.jacksonParser;
        // START_OBJECT
        jacksonParser.nextToken();
        // value of "element"
        jacksonParser.nextValue();
        HashSet<EnumType> result = null;
        if (jacksonParser.currentToken() == JsonToken.START_ARRAY) {
            HashSet<EnumType> collection = new HashSet<>();
            EnumType item = null;
            while (jacksonParser.nextToken() != JsonToken.END_ARRAY) {
                if (jacksonParser.currentToken() == JsonToken.VALUE_NULL) {
                    item = null;
                } else {
                    {
                        String tempEnum = jacksonParser.getText();
                        item = StringUtils.hasText(tempEnum) ? EnumType.valueOf(tempEnum) : null;
                    }
                }
                collection.add(item);
            }
            result = collection;
        }
        return result;
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) KriptonJsonContext(com.abubusoft.kripton.KriptonJsonContext) JacksonWrapperParser(com.abubusoft.kripton.persistence.JacksonWrapperParser) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) JsonParser(com.fasterxml.jackson.core.JsonParser) HashSet(java.util.HashSet) LinkedHashSet(java.util.LinkedHashSet)

Example 97 with KriptonRuntimeException

use of com.abubusoft.kripton.exception.KriptonRuntimeException in project kripton by xcesco.

the class BeanDao2Impl method serializer1.

/**
 * for param serializer1 serialization
 */
private byte[] serializer1(HashSet<BigDecimal> value) {
    if (value == null) {
        return null;
    }
    KriptonJsonContext context = KriptonBinder.jsonBind();
    try (KriptonByteArrayOutputStream stream = new KriptonByteArrayOutputStream();
        JacksonWrapperSerializer wrapper = context.createSerializer(stream)) {
        JsonGenerator jacksonSerializer = wrapper.jacksonGenerator;
        int fieldCount = 0;
        jacksonSerializer.writeStartObject();
        if (value != null) {
            // write wrapper tag
            jacksonSerializer.writeFieldName("element");
            jacksonSerializer.writeStartArray();
            for (BigDecimal item : value) {
                if (item == null) {
                    jacksonSerializer.writeNull();
                } else {
                    jacksonSerializer.writeString(BigDecimalUtils.write(item));
                }
            }
            jacksonSerializer.writeEndArray();
        }
        jacksonSerializer.writeEndObject();
        jacksonSerializer.flush();
        return stream.toByteArray();
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : JsonGenerator(com.fasterxml.jackson.core.JsonGenerator) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) KriptonByteArrayOutputStream(com.abubusoft.kripton.common.KriptonByteArrayOutputStream) KriptonJsonContext(com.abubusoft.kripton.KriptonJsonContext) JacksonWrapperSerializer(com.abubusoft.kripton.persistence.JacksonWrapperSerializer) BigDecimal(java.math.BigDecimal) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException)

Example 98 with KriptonRuntimeException

use of com.abubusoft.kripton.exception.KriptonRuntimeException in project kripton by xcesco.

the class Bean2Table method parseValueShortSet.

/**
 * for attribute valueShortSet parsing
 */
public static HashSet<Short> parseValueShortSet(byte[] input) {
    if (input == null) {
        return null;
    }
    KriptonJsonContext context = KriptonBinder.jsonBind();
    try (JacksonWrapperParser wrapper = context.createParser(input)) {
        JsonParser jacksonParser = wrapper.jacksonParser;
        // START_OBJECT
        jacksonParser.nextToken();
        // value of "element"
        jacksonParser.nextValue();
        HashSet<Short> result = null;
        if (jacksonParser.currentToken() == JsonToken.START_ARRAY) {
            HashSet<Short> collection = new HashSet<>();
            Short item = null;
            while (jacksonParser.nextToken() != JsonToken.END_ARRAY) {
                if (jacksonParser.currentToken() == JsonToken.VALUE_NULL) {
                    item = null;
                } else {
                    item = jacksonParser.getShortValue();
                }
                collection.add(item);
            }
            result = collection;
        }
        return result;
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) KriptonJsonContext(com.abubusoft.kripton.KriptonJsonContext) JacksonWrapperParser(com.abubusoft.kripton.persistence.JacksonWrapperParser) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) JsonParser(com.fasterxml.jackson.core.JsonParser) HashSet(java.util.HashSet) LinkedHashSet(java.util.LinkedHashSet)

Example 99 with KriptonRuntimeException

use of com.abubusoft.kripton.exception.KriptonRuntimeException in project kripton by xcesco.

the class Bean2Table method serializeValueFloatSet.

/**
 * for attribute valueFloatSet serialization
 */
public static byte[] serializeValueFloatSet(HashSet<Float> value) {
    if (value == null) {
        return null;
    }
    KriptonJsonContext context = KriptonBinder.jsonBind();
    try (KriptonByteArrayOutputStream stream = new KriptonByteArrayOutputStream();
        JacksonWrapperSerializer wrapper = context.createSerializer(stream)) {
        JsonGenerator jacksonSerializer = wrapper.jacksonGenerator;
        jacksonSerializer.writeStartObject();
        int fieldCount = 0;
        if (value != null) {
            fieldCount++;
            // write wrapper tag
            jacksonSerializer.writeFieldName("element");
            jacksonSerializer.writeStartArray();
            for (Float item : value) {
                if (item == null) {
                    jacksonSerializer.writeNull();
                } else {
                    jacksonSerializer.writeNumber(item);
                }
            }
            jacksonSerializer.writeEndArray();
        }
        jacksonSerializer.writeEndObject();
        jacksonSerializer.flush();
        return stream.toByteArray();
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : JsonGenerator(com.fasterxml.jackson.core.JsonGenerator) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) KriptonByteArrayOutputStream(com.abubusoft.kripton.common.KriptonByteArrayOutputStream) KriptonJsonContext(com.abubusoft.kripton.KriptonJsonContext) JacksonWrapperSerializer(com.abubusoft.kripton.persistence.JacksonWrapperSerializer) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException)

Example 100 with KriptonRuntimeException

use of com.abubusoft.kripton.exception.KriptonRuntimeException in project kripton by xcesco.

the class Bean2Table method parseValueCharacterSet.

/**
 * for attribute valueCharacterSet parsing
 */
public static Set<Character> parseValueCharacterSet(byte[] input) {
    if (input == null) {
        return null;
    }
    KriptonJsonContext context = KriptonBinder.jsonBind();
    try (JacksonWrapperParser wrapper = context.createParser(input)) {
        JsonParser jacksonParser = wrapper.jacksonParser;
        // START_OBJECT
        jacksonParser.nextToken();
        // value of "element"
        jacksonParser.nextValue();
        Set<Character> result = null;
        if (jacksonParser.currentToken() == JsonToken.START_ARRAY) {
            HashSet<Character> collection = new HashSet<>();
            Character item = null;
            while (jacksonParser.nextToken() != JsonToken.END_ARRAY) {
                if (jacksonParser.currentToken() == JsonToken.VALUE_NULL) {
                    item = null;
                } else {
                    item = Character.valueOf((char) jacksonParser.getIntValue());
                }
                collection.add(item);
            }
            result = collection;
        }
        return result;
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) KriptonJsonContext(com.abubusoft.kripton.KriptonJsonContext) JacksonWrapperParser(com.abubusoft.kripton.persistence.JacksonWrapperParser) KriptonRuntimeException(com.abubusoft.kripton.exception.KriptonRuntimeException) JsonParser(com.fasterxml.jackson.core.JsonParser) HashSet(java.util.HashSet) LinkedHashSet(java.util.LinkedHashSet)

Aggregations

KriptonRuntimeException (com.abubusoft.kripton.exception.KriptonRuntimeException)721 KriptonJsonContext (com.abubusoft.kripton.KriptonJsonContext)514 JacksonWrapperParser (com.abubusoft.kripton.persistence.JacksonWrapperParser)258 JacksonWrapperSerializer (com.abubusoft.kripton.persistence.JacksonWrapperSerializer)258 JsonParser (com.fasterxml.jackson.core.JsonParser)258 KriptonByteArrayOutputStream (com.abubusoft.kripton.common.KriptonByteArrayOutputStream)257 JsonGenerator (com.fasterxml.jackson.core.JsonGenerator)257 ArrayList (java.util.ArrayList)143 SQLiteDatabase (android.database.sqlite.SQLiteDatabase)120 KriptonContentValues (com.abubusoft.kripton.android.sqlite.KriptonContentValues)68 HashMap (java.util.HashMap)43 HashSet (java.util.HashSet)40 LinkedHashSet (java.util.LinkedHashSet)38 Cursor (android.database.Cursor)31 LinkedList (java.util.LinkedList)26 Map (java.util.Map)24 LinkedHashMap (java.util.LinkedHashMap)18 BeanInner (sqlite.kripton58.BeanInner)18 BigDecimal (java.math.BigDecimal)12 Time (java.sql.Time)10