Search in sources :

Example 11 with BeanInner

use of sqlite.kripton58.BeanInner in project kripton by xcesco.

the class BeanBeanBindMap method parseOnJacksonAsString.

/**
 * parse with jackson
 */
@Override
public BeanBean parseOnJacksonAsString(JsonParser jacksonParser) throws Exception {
    BeanBean instance = new BeanBean();
    String fieldName;
    if (jacksonParser.getCurrentToken() == null) {
        jacksonParser.nextToken();
    }
    if (jacksonParser.getCurrentToken() != JsonToken.START_OBJECT) {
        jacksonParser.skipChildren();
        return instance;
    }
    while (jacksonParser.nextToken() != JsonToken.END_OBJECT) {
        fieldName = jacksonParser.getCurrentName();
        jacksonParser.nextToken();
        // Parse fields:
        switch(fieldName) {
            case "id":
                // field id (mapped with "id")
                instance.id = PrimitiveUtils.readLong(jacksonParser.getText(), 0L);
                break;
            case "value":
                // field value (mapped with "value")
                if (jacksonParser.currentToken() == JsonToken.START_ARRAY) {
                    ArrayList<BeanInner> collection = new ArrayList<>();
                    BeanInner item = null;
                    String tempValue = null;
                    while (jacksonParser.nextToken() != JsonToken.END_ARRAY) {
                        tempValue = jacksonParser.getValueAsString();
                        if (jacksonParser.currentToken() == JsonToken.VALUE_STRING && "null".equals(tempValue)) {
                            item = null;
                        } else {
                            item = beanInnerBindMap.parseOnJacksonAsString(jacksonParser);
                        }
                        collection.add(item);
                    }
                    instance.value = collection;
                } else if (jacksonParser.currentToken() == JsonToken.VALUE_STRING && !StringUtils.hasText(jacksonParser.getValueAsString())) {
                    ArrayList<BeanInner> collection = new ArrayList<>();
                    instance.value = collection;
                }
                break;
            case "value2":
                // field value2 (mapped with "value2")
                if (jacksonParser.currentToken() == JsonToken.START_ARRAY) {
                    LinkedList<BeanInner> collection = new LinkedList<>();
                    BeanInner item = null;
                    String tempValue = null;
                    while (jacksonParser.nextToken() != JsonToken.END_ARRAY) {
                        tempValue = jacksonParser.getValueAsString();
                        if (jacksonParser.currentToken() == JsonToken.VALUE_STRING && "null".equals(tempValue)) {
                            item = null;
                        } else {
                            item = beanInnerBindMap.parseOnJacksonAsString(jacksonParser);
                        }
                        collection.add(item);
                    }
                    instance.value2 = collection;
                } else if (jacksonParser.currentToken() == JsonToken.VALUE_STRING && !StringUtils.hasText(jacksonParser.getValueAsString())) {
                    LinkedList<BeanInner> collection = new LinkedList<>();
                    instance.value2 = collection;
                }
                break;
            default:
                jacksonParser.skipChildren();
                break;
        }
    }
    return instance;
}
Also used : BeanInner(sqlite.kripton58.BeanInner) ArrayList(java.util.ArrayList) LinkedList(java.util.LinkedList)

Example 12 with BeanInner

use of sqlite.kripton58.BeanInner in project kripton by xcesco.

the class BeanBeanTable method serializeValue.

/**
 * for attribute value serialization
 */
public static byte[] serializeValue(List<BeanInner> 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++;
            int n = value.size();
            BeanInner item;
            // write wrapper tag
            jacksonSerializer.writeFieldName("element");
            jacksonSerializer.writeStartArray();
            for (int i = 0; i < n; i++) {
                item = value.get(i);
                if (item == null) {
                    jacksonSerializer.writeNull();
                } else {
                    beanInnerBindMap.serializeOnJackson(item, jacksonSerializer);
                }
            }
            jacksonSerializer.writeEndArray();
        }
        jacksonSerializer.writeEndObject();
        jacksonSerializer.flush();
        return stream.toByteArray();
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : BeanInner(sqlite.kripton58.BeanInner) 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 13 with BeanInner

use of sqlite.kripton58.BeanInner in project kripton by xcesco.

the class BeanBeanTable method parseValue.

/**
 * for attribute value parsing
 */
public static List<BeanInner> parseValue(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();
        List<BeanInner> result = null;
        if (jacksonParser.currentToken() == JsonToken.START_ARRAY) {
            ArrayList<BeanInner> collection = new ArrayList<>();
            BeanInner item = null;
            while (jacksonParser.nextToken() != JsonToken.END_ARRAY) {
                if (jacksonParser.currentToken() == JsonToken.VALUE_NULL) {
                    item = null;
                } else {
                    item = beanInnerBindMap.parseOnJackson(jacksonParser);
                }
                collection.add(item);
            }
            result = collection;
        }
        return result;
    } catch (Exception e) {
        throw (new KriptonRuntimeException(e.getMessage()));
    }
}
Also used : BeanInner(sqlite.kripton58.BeanInner) ArrayList(java.util.ArrayList) 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)

Example 14 with BeanInner

use of sqlite.kripton58.BeanInner in project kripton by xcesco.

the class BeanBeanBindMap method serializeOnXml.

/**
 * method for xml serialization
 */
@Override
public void serializeOnXml(BeanBean object, XMLSerializer xmlSerializer, int currentEventType) throws Exception {
    if (currentEventType == 0) {
        xmlSerializer.writeStartElement("beanBean");
    }
    // Persisted fields:
    // field id (mapped with "id")
    xmlSerializer.writeStartElement("id");
    xmlSerializer.writeLong(object.id);
    xmlSerializer.writeEndElement();
    // field value (mapped with "value")
    if (object.value != null) {
        int n = object.value.length;
        BeanInner item;
        for (int i = 0; i < n; i++) {
            item = object.value[i];
            if (item == null) {
                xmlSerializer.writeEmptyElement("value");
            } else {
                xmlSerializer.writeStartElement("value");
                beanInnerBindMap.serializeOnXml(item, xmlSerializer, 2);
                xmlSerializer.writeEndElement();
            }
        }
        // to distinguish between first empty element and empty collection, we write an attribute emptyCollection
        if (n == 0) {
            xmlSerializer.writeStartElement("value");
            xmlSerializer.writeAttribute("emptyCollection", "true");
            xmlSerializer.writeEndElement();
        }
    }
    // field value2 (mapped with "value2")
    if (object.value2 != null) {
        int n = object.value2.length;
        BeanInner item;
        for (int i = 0; i < n; i++) {
            item = object.value2[i];
            if (item == null) {
                xmlSerializer.writeEmptyElement("value2");
            } else {
                xmlSerializer.writeStartElement("value2");
                beanInnerBindMap.serializeOnXml(item, xmlSerializer, 2);
                xmlSerializer.writeEndElement();
            }
        }
        // to distinguish between first empty element and empty collection, we write an attribute emptyCollection
        if (n == 0) {
            xmlSerializer.writeStartElement("value2");
            xmlSerializer.writeAttribute("emptyCollection", "true");
            xmlSerializer.writeEndElement();
        }
    }
    if (currentEventType == 0) {
        xmlSerializer.writeEndElement();
    }
}
Also used : BeanInner(sqlite.kripton58.BeanInner)

Example 15 with BeanInner

use of sqlite.kripton58.BeanInner in project kripton by xcesco.

the class BeanBeanBindMap method serializeOnJackson.

@Override
public int serializeOnJackson(BeanBean object, JsonGenerator jacksonSerializer) throws Exception {
    jacksonSerializer.writeStartObject();
    int fieldCount = 0;
    // Serialized Field:
    // field id (mapped with "id")
    fieldCount++;
    jacksonSerializer.writeNumberField("id", object.id);
    // field value (mapped with "value")
    if (object.value != null) {
        fieldCount++;
        int n = object.value.length;
        BeanInner item;
        // write wrapper tag
        jacksonSerializer.writeFieldName("value");
        jacksonSerializer.writeStartArray();
        for (int i = 0; i < n; i++) {
            item = object.value[i];
            if (item == null) {
                jacksonSerializer.writeNull();
            } else {
                beanInnerBindMap.serializeOnJackson(item, jacksonSerializer);
            }
        }
        jacksonSerializer.writeEndArray();
    }
    // field value2 (mapped with "value2")
    if (object.value2 != null) {
        fieldCount++;
        int n = object.value2.length;
        BeanInner item;
        // write wrapper tag
        jacksonSerializer.writeFieldName("value2");
        jacksonSerializer.writeStartArray();
        for (int i = 0; i < n; i++) {
            item = object.value2[i];
            if (item == null) {
                jacksonSerializer.writeNull();
            } else {
                beanInnerBindMap.serializeOnJackson(item, jacksonSerializer);
            }
        }
        jacksonSerializer.writeEndArray();
    }
    jacksonSerializer.writeEndObject();
    return fieldCount;
}
Also used : BeanInner(sqlite.kripton58.BeanInner)

Aggregations

BeanInner (sqlite.kripton58.BeanInner)33 KriptonJsonContext (com.abubusoft.kripton.KriptonJsonContext)18 KriptonRuntimeException (com.abubusoft.kripton.exception.KriptonRuntimeException)18 ArrayList (java.util.ArrayList)14 KriptonByteArrayOutputStream (com.abubusoft.kripton.common.KriptonByteArrayOutputStream)9 JacksonWrapperParser (com.abubusoft.kripton.persistence.JacksonWrapperParser)9 JacksonWrapperSerializer (com.abubusoft.kripton.persistence.JacksonWrapperSerializer)9 JsonGenerator (com.fasterxml.jackson.core.JsonGenerator)9 JsonParser (com.fasterxml.jackson.core.JsonParser)9 LinkedList (java.util.LinkedList)3