package com.jrjackson; import java.io.IOException; import java.util.*; import com.fasterxml.jackson.core.*; import com.fasterxml.jackson.databind.DeserializationContext; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.util.ObjectBuffer; import com.fasterxml.jackson.databind.deser.std.StdDeserializer; import org.jruby.Ruby; import org.jruby.RubyObject; import org.jruby.RubyArray; import org.jruby.RubyHash; import org.jruby.javasupport.util.RuntimeHelpers; public class RubyObjectDeserializer extends StdDeserializer { private static final long serialVersionUID = 1L; private final static RubyObject[] NO_OBJECTS = new RubyObject[0]; protected final static Ruby __ruby__ = Ruby.getGlobalRuntime(); private static final HashMap converters = new HashMap(3); private RubyKeyConverter converter; public RubyObjectDeserializer() { super(RubyObject.class); } public RubyObjectDeserializer setStringStrategy() { converter = new RubyStringConverter(); return this; } public RubyObjectDeserializer setSymbolStrategy() { converter = new RubySymbolConverter(); return this; } /** * @since 2.2 */ /** /********************************************************** /* Deserializer API /********************************************************** */ @Override public RubyObject deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException { switch (jp.getCurrentToken()) { case START_OBJECT: return mapObject(jp, ctxt); case START_ARRAY: return mapArray(jp, ctxt); case FIELD_NAME: return converter.convert(jp); case VALUE_EMBEDDED_OBJECT: return RubyUtils.rubyObject(__ruby__, jp.getEmbeddedObject()); case VALUE_STRING: return RubyUtils.rubyString(__ruby__, jp.getText().getBytes()); case VALUE_NUMBER_INT: /* [JACKSON-100]: caller may want to get all integral values * returned as BigInteger, for consistency */ if (ctxt.isEnabled(DeserializationFeature.USE_BIG_INTEGER_FOR_INTS)) { return RubyUtils.rubyBignum(__ruby__, jp.getBigIntegerValue()); } return RubyUtils.rubyFixnum(__ruby__, jp.getLongValue()); case VALUE_NUMBER_FLOAT: if (ctxt.isEnabled(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS)) { return RubyUtils.rubyBigDecimal(__ruby__, jp.getDecimalValue()); } return RubyUtils.rubyFloat(__ruby__, jp.getDoubleValue()); // return RubyUtils.rubyFloat(__ruby__, jp.getText()); case VALUE_TRUE: return __ruby__.newBoolean(Boolean.TRUE); case VALUE_FALSE: return __ruby__.newBoolean(Boolean.FALSE); case VALUE_NULL: // should not get this but... return null; case END_ARRAY: // invalid case END_OBJECT: // invalid default: throw ctxt.mappingException(Object.class); } } /** /********************************************************** /* Internal methods /********************************************************** */ /** * Method called to map a JSON Array into a Java value. */ protected RubyObject mapArray(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException { // if (ctxt.isEnabled(DeserializationFeature.USE_JAVA_ARRAY_FOR_JSON_ARRAY)) { // return mapArrayToArray(jp, ctxt); // } // Minor optimization to handle small lists (default size for ArrayList is 10) if (jp.nextToken() == JsonToken.END_ARRAY) { return RubyArray.newArray(__ruby__); } ObjectBuffer buffer = ctxt.leaseObjectBuffer(); Object[] values = buffer.resetAndStart(); int ptr = 0; long totalSize = 0; do { Object value = deserialize(jp, ctxt); ++totalSize; if (ptr >= values.length) { values = buffer.appendCompletedChunk(values); ptr = 0; } values[ptr++] = value; } while (jp.nextToken() != JsonToken.END_ARRAY); // let's create almost full array, with 1/8 slack RubyArray result = RubyArray.newArray(__ruby__, (totalSize + (totalSize >> 3) + 1)); buffer.completeAndClearBuffer(values, ptr, result); return result; } /** * Method called to map a JSON Object into a Java value. */ protected RubyObject mapObject(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException { JsonToken t = jp.getCurrentToken(); if (t == JsonToken.START_OBJECT) { t = jp.nextToken(); } // 1.6: minor optimization; let's handle 1 and 2 entry cases separately if (t != JsonToken.FIELD_NAME) { // and empty one too // empty map might work; but caller may want to modify... so better just give small modifiable return RubyHash.newHash(__ruby__); } RubyObject field1 = converter.convert(jp); jp.nextToken(); RubyObject value1 = deserialize(jp, ctxt); if (jp.nextToken() != JsonToken.FIELD_NAME) { // single entry; but we want modifiable return RuntimeHelpers.constructHash(__ruby__, field1, value1); } RubyObject field2 = converter.convert(jp); jp.nextToken(); RubyObject value2 = deserialize(jp, ctxt); if (jp.nextToken() != JsonToken.FIELD_NAME) { return RuntimeHelpers.constructHash(__ruby__, field1, value1, field2, value2); } // And then the general case; default map size is 16 RubyHash result = RuntimeHelpers.constructHash(__ruby__, field1, value1, field2, value2); do { RubyObject fieldName = converter.convert(jp); jp.nextToken(); result.fastASetCheckString(__ruby__, fieldName, deserialize(jp, ctxt)); } while (jp.nextToken() != JsonToken.END_OBJECT); return result; } }