blob: f50c92635f29422fe4960b72517b3312d59c9196 [file] [log] [blame]
/*
* 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.zest.library.restlet.serialization;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.zest.api.common.Optional;
import org.apache.zest.api.injection.scope.Service;
import org.apache.zest.api.injection.scope.Structure;
import org.apache.zest.api.injection.scope.Uses;
import org.apache.zest.api.structure.ModuleDescriptor;
import org.apache.zest.api.value.ValueSerialization;
import org.apache.zest.api.value.ValueSerializer;
import org.apache.zest.spi.ZestSPI;
import org.restlet.data.MediaType;
import org.restlet.representation.OutputRepresentation;
import org.restlet.representation.Representation;
/**
* Representation based of Zest ValueComposites. It can serialize and deserialize
* automatically in JSON only.<br>
* <br>
*/
public class JsonRepresentation<T> extends OutputRepresentation
{
private static final ValueSerializer.Options OPTIONS_NO_TYPE = new ValueSerializer.Options().withoutTypeInfo().withMapEntriesAsObjects();
@Structure
private ZestSPI spi;
@Service
private ValueSerialization serializer;
@Structure
private ModuleDescriptor module;
/**
* The (parsed) object to format.
*/
@Optional
@Uses
private volatile T object;
/**
* The object class to instantiate.
*/
@Optional
@Uses
private volatile Class<T> objectClass;
/**
* The representation to parse.
*/
@Optional
@Uses
private volatile Representation representation;
public JsonRepresentation()
{
super( MediaType.APPLICATION_JSON );
}
/**
* Returns the wrapped object, deserializing the representation with Zest
* if necessary.
*
* @return The wrapped object.
*
* @throws IOException
*/
public T getObject()
throws IOException
{
T result = null;
if( this.object != null )
{
result = this.object;
}
else if( this.representation != null )
{
result = serializer.deserialize( module, objectClass, this.representation.getStream() );
}
return result;
}
/**
* Returns the object class to instantiate.
*
* @return The object class to instantiate.
*/
public Class<T> getObjectClass()
{
return objectClass;
}
@Override
public void write( OutputStream outputStream )
throws IOException
{
if( representation != null )
{
representation.write( outputStream );
}
else if( object != null )
{
serializer.serialize( OPTIONS_NO_TYPE, object, outputStream );
outputStream.write( '\n' );
}
}
}