All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.json.JsonSerializerSession Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
// * with the License.  You may obtain a copy of the License at                                                              *
// *                                                                                                                         *
// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
// *                                                                                                                         *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
// * specific language governing permissions and limitations under the License.                                              *
// ***************************************************************************************************************************
package org.apache.juneau.json;

import java.io.*;
import java.util.*;

import org.apache.juneau.*;
import org.apache.juneau.internal.*;
import org.apache.juneau.serializer.*;
import org.apache.juneau.transform.*;

/**
 * Session object that lives for the duration of a single use of {@link JsonSerializer}.
 *
 * 

* This class is NOT thread safe. * It is typically discarded after one-time use although it can be reused within the same thread. */ public class JsonSerializerSession extends WriterSerializerSession { private final JsonSerializer ctx; /** * Create a new session using properties specified in the context. * * @param ctx * The context creating this session object. * The context contains all the configuration settings for this object. * @param args * Runtime arguments. * These specify session-level information such as locale and URI context. * It also include session-level properties that override the properties defined on the bean and * serializer contexts. */ protected JsonSerializerSession(JsonSerializer ctx, SerializerSessionArgs args) { super(ctx, args); this.ctx = ctx; } @Override /* Session */ public ObjectMap asMap() { return super.asMap() .append("JsonSerializerSession", new ObjectMap() ); } @Override /* SerializerSesssion */ protected void doSerialize(SerializerPipe out, Object o) throws Exception { serializeAnything(getJsonWriter(out), o, getExpectedRootType(o), "root", null); } /** * Method that can be called from subclasses to serialize an object to JSON. * *

* Used by {@link JsonSchemaSerializerSession} for serializing examples to JSON. * * @param o The object to serialize. * @return The serialized object. * @throws Exception */ protected String serializeJson(Object o) throws Exception { StringWriter sw = new StringWriter(); serializeAnything(getJsonWriter(createPipe(sw)), o, getExpectedRootType(o), "root", null); return sw.toString(); } /** * Workhorse method. * Determines the type of object, and then calls the appropriate type-specific serialization method. * * @param out The output writer. * @param o The object to serialize. * @param eType The expected type. * @param attrName The attribute name. * @param pMeta The bean property currently being parsed. * @return The same writer passed in. * @throws Exception */ @SuppressWarnings({ "rawtypes", "unchecked" }) protected JsonWriter serializeAnything(JsonWriter out, Object o, ClassMeta eType, String attrName, BeanPropertyMeta pMeta) throws Exception { if (o == null) { out.append("null"); return out; } if (eType == null) eType = object(); ClassMeta aType; // The actual type ClassMeta sType; // The serialized type aType = push(attrName, o, eType); boolean isRecursion = aType == null; // Handle recursion if (aType == null) { o = null; aType = object(); } sType = aType; String typeName = getBeanTypeName(eType, aType, pMeta); // Swap if necessary PojoSwap swap = aType.getPojoSwap(this); if (swap != null) { o = swap.swap(this, o); sType = swap.getSwapClassMeta(this); // If the getSwapClass() method returns Object, we need to figure out // the actual type now. if (sType.isObject()) sType = getClassMetaForObject(o); } String wrapperAttr = sType.getExtendedMeta(JsonClassMeta.class).getWrapperAttr(); if (wrapperAttr != null) { out.append('{').cr(indent).attr(wrapperAttr).append(':').s(indent); indent++; } // '\0' characters are considered null. if (o == null || (sType.isChar() && ((Character)o).charValue() == 0)) { out.append("null"); } else if (sType.isNumber() || sType.isBoolean()) { out.append(o); } else if (sType.isBean()) { serializeBeanMap(out, toBeanMap(o), typeName); } else if (sType.isUri() || (pMeta != null && pMeta.isUri())) { out.uriValue(o); } else if (sType.isMap()) { if (o instanceof BeanMap) serializeBeanMap(out, (BeanMap)o, typeName); else serializeMap(out, (Map)o, eType); } else if (sType.isCollection()) { serializeCollection(out, (Collection) o, eType); } else if (sType.isArray()) { serializeCollection(out, toList(sType.getInnerClass(), o), eType); } else if (sType.isReader() || sType.isInputStream()) { IOUtils.pipe(o, out); } else { out.stringValue(toString(o)); } if (wrapperAttr != null) { indent--; out.cre(indent-1).append('}'); } if (! isRecursion) pop(); return out; } @SuppressWarnings({ "rawtypes", "unchecked" }) private SerializerWriter serializeMap(JsonWriter out, Map m, ClassMeta type) throws Exception { ClassMeta keyType = type.getKeyType(), valueType = type.getValueType(); m = sort(m); int i = indent; out.append('{'); Iterator mapEntries = m.entrySet().iterator(); while (mapEntries.hasNext()) { Map.Entry e = (Map.Entry) mapEntries.next(); Object value = e.getValue(); Object key = generalize(e.getKey(), keyType); out.cr(i).attr(toString(key)).append(':').s(i); serializeAnything(out, value, valueType, (key == null ? null : toString(key)), null); if (mapEntries.hasNext()) out.append(',').smi(i); } out.cre(i-1).append('}'); return out; } private SerializerWriter serializeBeanMap(JsonWriter out, BeanMap m, String typeName) throws Exception { int i = indent; out.append('{'); boolean addComma = false; for (BeanPropertyValue p : m.getValues(isTrimNullProperties(), typeName != null ? createBeanTypeNameProperty(m, typeName) : null)) { BeanPropertyMeta pMeta = p.getMeta(); if (pMeta.canRead()) { ClassMeta cMeta = p.getClassMeta(); String key = p.getName(); Object value = p.getValue(); Throwable t = p.getThrown(); if (t != null) onBeanGetterException(pMeta, t); if (canIgnoreValue(cMeta, key, value)) continue; if (addComma) out.append(',').smi(i); out.cr(i).attr(key).append(':').s(i); serializeAnything(out, value, cMeta, key, pMeta); addComma = true; } } out.cre(i-1).append('}'); return out; } @SuppressWarnings({"rawtypes", "unchecked"}) private SerializerWriter serializeCollection(JsonWriter out, Collection c, ClassMeta type) throws Exception { ClassMeta elementType = type.getElementType(); c = sort(c); out.append('['); for (Iterator i = c.iterator(); i.hasNext();) { Object value = i.next(); out.cr(indent); serializeAnything(out, value, elementType, "", null); if (i.hasNext()) out.append(',').smi(indent); } out.cre(indent-1).append(']'); return out; } /** * Converts the specified output target object to an {@link JsonWriter}. * * @param out The output target object. * @return The output target object wrapped in an {@link JsonWriter}. * @throws Exception */ protected final JsonWriter getJsonWriter(SerializerPipe out) throws Exception { Object output = out.getRawOutput(); if (output instanceof JsonWriter) return (JsonWriter)output; JsonWriter w = new JsonWriter(out.getWriter(), isUseWhitespace(), getMaxIndent(), isEscapeSolidus(), getQuoteChar(), isSimpleMode(), isTrimStrings(), getUriResolver()); out.setWriter(w); return w; } //----------------------------------------------------------------------------------------------------------------- // Properties //----------------------------------------------------------------------------------------------------------------- /** * Configuration property: Simple JSON mode. * * @see JsonSerializer#JSON_simpleMode * @return * true if JSON attribute names will only be quoted when necessary. *
Otherwise, they are always quoted. */ protected final boolean isSimpleMode() { return ctx.isSimpleMode(); } /** * Configuration property: Prefix solidus '/' characters with escapes. * * @see JsonSerializer#JSON_escapeSolidus * @return * true if solidus (e.g. slash) characters should be escaped. */ protected final boolean isEscapeSolidus() { return ctx.isEscapeSolidus(); } /** * Configuration property: Add "_type" properties when needed. * * @see JsonSerializer#JSON_addBeanTypes * @return * true if "_type" properties will be added to beans if their type cannot be inferred * through reflection. */ @Override protected final boolean isAddBeanTypes() { return ctx.isAddBeanTypes(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy