package io.ebeaninternal.json; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.core.JsonParser; import com.fasterxml.jackson.core.JsonToken; import io.ebean.service.SpiJsonService; import java.io.IOException; import java.io.Reader; import java.io.Writer; import java.util.Collection; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; /** * Utility that converts between JSON content and simple java Maps/Lists. */ public class DJsonService implements SpiJsonService { /** * Write the nested Map/List as json. */ @Override public String write(Object object) throws IOException { return EJsonWriter.write(object); } /** * Write the nested Map/List as json to the writer. */ @Override public void write(Object object, Writer writer) throws IOException { EJsonWriter.write(object, writer); } /** * Write the nested Map/List as json to the jsonGenerator. */ @Override public void write(Object object, JsonGenerator jsonGenerator) throws IOException { EJsonWriter.write(object, jsonGenerator); } /** * Write the collection as json array to the jsonGenerator. */ @Override public void writeCollection(Collection collection, JsonGenerator jsonGenerator) throws IOException { EJsonWriter.writeCollection(collection, jsonGenerator); } /** * Parse the json and return as a Map additionally specifying if the returned map should * be modify aware meaning that it can detect when it has been modified. */ @Override public Map parseObject(String json, boolean modifyAware) throws IOException { return EJsonReader.parseObject(json, modifyAware); } /** * Parse the json and return as a Map. */ @Override public Map parseObject(String json) throws IOException { return EJsonReader.parseObject(json); } /** * Parse the json and return as a Map taking a reader. */ @Override public Map parseObject(Reader reader, boolean modifyAware) throws IOException { return EJsonReader.parseObject(reader, modifyAware); } /** * Parse the json and return as a Map taking a reader. */ @Override public Map parseObject(Reader reader) throws IOException { return EJsonReader.parseObject(reader); } /** * Parse the json and return as a Map taking a JsonParser. */ @Override public Map parseObject(JsonParser parser) throws IOException { return EJsonReader.parseObject(parser); } /** * Parse the json and return as a Map taking a JsonParser and a starting token. *

* Used when the first token is checked to see if the value is null prior to calling this. *

*/ @Override public Map parseObject(JsonParser parser, JsonToken token) throws IOException { return EJsonReader.parseObject(parser, token); } /** * Parse the json and return as a modify aware List. */ @Override public List parseList(String json, boolean modifyAware) throws IOException { return EJsonReader.parseList(json, modifyAware); } /** * Parse the json and return as a List. */ @Override public List parseList(String json) throws IOException { return EJsonReader.parseList(json); } /** * Parse the json and return as a List taking a Reader. */ @Override public List parseList(Reader reader) throws IOException { return EJsonReader.parseList(reader); } /** * Parse the json and return as a List taking a JsonParser. */ @Override public List parseList(JsonParser parser) throws IOException { return EJsonReader.parseList(parser, false); } /** * Parse the json returning as a List taking into account the current token. */ @Override @SuppressWarnings("unchecked") public List parseList(JsonParser parser, JsonToken currentToken) throws IOException { return (List) EJsonReader.parse(parser, currentToken, false); } /** * Parse the json and return as a List or Map. */ @Override public Object parse(String json) throws IOException { return EJsonReader.parse(json); } /** * Parse the json and return as a List or Map. */ @Override public Object parse(Reader reader) throws IOException { return EJsonReader.parse(reader); } /** * Parse the json and return as a List or Map. */ @Override public Object parse(JsonParser parser) throws IOException { return EJsonReader.parse(parser); } /** * Parse the json returning a Set that might be modify aware. */ @Override public Set parseSet(String json, boolean modifyAware) throws IOException { List list = parseList(json, modifyAware); if (list == null) { return null; } if (modifyAware) { return ((ModifyAwareList) list).asSet(); } else { return new LinkedHashSet<>(list); } } /** * Parse the json returning as a Set taking into account the current token. */ @Override public Set parseSet(JsonParser parser, JsonToken currentToken) throws IOException { return new LinkedHashSet<>(parseList(parser, currentToken)); } }