org.apache.juneau.uon.UonSerializerSession Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * 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.uon;
import static org.apache.juneau.uon.UonSerializer.*;
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 UonSerializer}.
*
*
* 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 UonSerializerSession extends WriterSerializerSession {
private final boolean
encodeChars,
addBeanTypeProperties,
plainTextParams;
/**
* @param ctx
* The context creating this session object.
* The context contains all the configuration settings for this object.
* @param encode Override the {@link UonSerializer#UON_encodeChars} setting.
* @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.
*/
public UonSerializerSession(UonSerializerContext ctx, Boolean encode, SerializerSessionArgs args) {
super(ctx, args);
ObjectMap p = getProperties();
encodeChars = encode == null ? p.getBoolean(UON_encodeChars, ctx.encodeChars) : encode;
addBeanTypeProperties = p.getBoolean(UON_addBeanTypeProperties, ctx.addBeanTypeProperties);
plainTextParams = p.getWithDefault(UON_paramFormat, ctx.paramFormat, ParamFormat.class) == ParamFormat.PLAINTEXT;
}
@Override /* Session */
public ObjectMap asMap() {
return super.asMap()
.append("UonSerializerSession", new ObjectMap()
.append("addBeanTypeProperties", addBeanTypeProperties)
.append("encodeChars", encodeChars)
.append("plainTextParams", plainTextParams)
);
}
/**
* Returns the {@link UonSerializer#UON_addBeanTypeProperties} setting value for this session.
*
* @return The {@link UonSerializer#UON_addBeanTypeProperties} setting value for this session.
*/
@Override /* SerializerSession */
public final boolean isAddBeanTypeProperties() {
return addBeanTypeProperties;
}
/**
* Converts the specified output target object to an {@link UonWriter}.
*
* @param out The output target object.
* @return The output target object wrapped in an {@link UonWriter}.
* @throws Exception
*/
protected final UonWriter getUonWriter(SerializerPipe out) throws Exception {
Object output = out.getRawOutput();
if (output instanceof UonWriter)
return (UonWriter)output;
UonWriter w = new UonWriter(this, out.getWriter(), isUseWhitespace(), getMaxIndent(), encodeChars, isTrimStrings(), plainTextParams, getUriResolver());
out.setWriter(w);
return w;
}
@Override /* Serializer */
protected void doSerialize(SerializerPipe out, Object o) throws Exception {
serializeAnything(getUonWriter(out), o, getExpectedRootType(o), "root", null);
}
/**
* Workhorse method. Determines the type of object, and then calls the appropriate type-specific serialization
* method.
*
* @param out The writer to serialize to.
* @param o The object being serialized.
* @param eType The expected type of the object if this is a bean property.
* @param attrName
* The bean property name if this is a bean property.
* null if this isn't a bean property being serialized.
* @param pMeta The bean property metadata.
* @return The same writer passed in.
* @throws Exception
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
protected SerializerWriter serializeAnything(UonWriter out, Object o, ClassMeta> eType, String attrName, BeanPropertyMeta pMeta) throws Exception {
if (o == null) {
out.appendObject(null, false);
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);
}
// '\0' characters are considered null.
if (o == null || (sType.isChar() && ((Character)o).charValue() == 0))
out.appendObject(null, false);
else if (sType.isBoolean())
out.appendBoolean(o);
else if (sType.isNumber())
out.appendNumber(o);
else if (sType.isBean())
serializeBeanMap(out, toBeanMap(o), typeName);
else if (sType.isUri() || (pMeta != null && pMeta.isUri()))
out.appendUri(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.appendObject(o, false);
}
if (! isRecursion)
pop();
return out;
}
@SuppressWarnings({ "rawtypes", "unchecked" })
private SerializerWriter serializeMap(UonWriter out, Map m, ClassMeta> type) throws Exception {
m = sort(m);
ClassMeta> keyType = type.getKeyType(), valueType = type.getValueType();
if (! plainTextParams)
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(indent).appendObject(key, false).append('=');
serializeAnything(out, value, valueType, (key == null ? null : toString(key)), null);
if (mapEntries.hasNext())
out.append(',');
}
if (m.size() > 0)
out.cre(indent-1);
if (! plainTextParams)
out.append(')');
return out;
}
private SerializerWriter serializeBeanMap(UonWriter out, BeanMap> m, String typeName) throws Exception {
if (! plainTextParams)
out.append('(');
boolean addComma = false;
for (BeanPropertyValue p : m.getValues(isTrimNulls(), typeName != null ? createBeanTypeNameProperty(m, typeName) : null)) {
BeanPropertyMeta pMeta = p.getMeta();
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(',');
out.cr(indent).appendObject(key, false).append('=');
serializeAnything(out, value, cMeta, key, pMeta);
addComma = true;
}
if (m.size() > 0)
out.cre(indent-1);
if (! plainTextParams)
out.append(')');
return out;
}
@SuppressWarnings({ "rawtypes", "unchecked" })
private SerializerWriter serializeCollection(UonWriter out, Collection c, ClassMeta> type) throws Exception {
ClassMeta> elementType = type.getElementType();
c = sort(c);
if (! plainTextParams)
out.append('@').append('(');
for (Iterator i = c.iterator(); i.hasNext();) {
out.cr(indent);
serializeAnything(out, i.next(), elementType, "", null);
if (i.hasNext())
out.append(',');
}
if (c.size() > 0)
out.cre(indent-1);
if (! plainTextParams)
out.append(')');
return out;
}
}