com.github.nmorel.gwtjackson.client.ser.IterableJsonSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-jackson Show documentation
Show all versions of gwt-jackson Show documentation
gwt-jackson is a GWT JSON serializer/deserializer mechanism based on Jackson annotations
/*
* Copyright 2013 Nicolas Morel
*
* Licensed 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 com.github.nmorel.gwtjackson.client.ser;
import java.util.Iterator;
import com.github.nmorel.gwtjackson.client.JsonSerializationContext;
import com.github.nmorel.gwtjackson.client.JsonSerializer;
import com.github.nmorel.gwtjackson.client.JsonSerializerParameters;
import com.github.nmorel.gwtjackson.client.stream.JsonWriter;
/**
* Default {@link JsonSerializer} implementation for {@link Iterable}.
*
* @param Type of the elements inside the {@link Iterable}
* @author Nicolas Morel
* @version $Id: $
*/
public class IterableJsonSerializer, T> extends JsonSerializer {
/**
* newInstance
*
* @param serializer {@link JsonSerializer} used to serialize the objects inside the {@link Iterable}.
* @param the type
* @return a new instance of {@link IterableJsonSerializer}
*/
public static > IterableJsonSerializer newInstance( JsonSerializer> serializer ) {
return new IterableJsonSerializer( serializer );
}
protected final JsonSerializer serializer;
/**
* Constructor for IterableJsonSerializer.
*
* @param serializer {@link JsonSerializer} used to serialize the objects inside the {@link Iterable}.
*/
protected IterableJsonSerializer( JsonSerializer serializer ) {
if ( null == serializer ) {
throw new IllegalArgumentException( "serializer cannot be null" );
}
this.serializer = serializer;
}
/** {@inheritDoc} */
@Override
protected boolean isEmpty( I value ) {
return null == value || !value.iterator().hasNext();
}
/** {@inheritDoc} */
@Override
public void doSerialize( JsonWriter writer, I values, JsonSerializationContext ctx, JsonSerializerParameters params ) {
Iterator iterator = values.iterator();
if ( !iterator.hasNext() ) {
if ( ctx.isWriteEmptyJsonArrays() ) {
writer.beginArray();
writer.endArray();
} else {
writer.cancelName();
}
return;
}
if ( ctx.isWriteSingleElemArraysUnwrapped() ) {
T first = iterator.next();
if ( iterator.hasNext() ) {
// there is more than one element, we write the array normally
writer.beginArray();
serializer.serialize( writer, first, ctx, params );
while ( iterator.hasNext() ) {
serializer.serialize( writer, iterator.next(), ctx, params );
}
writer.endArray();
} else {
// there is only one element, we write it directly
serializer.serialize( writer, first, ctx, params );
}
} else {
writer.beginArray();
while ( iterator.hasNext() ) {
serializer.serialize( writer, iterator.next(), ctx, params );
}
writer.endArray();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy