blob: a540d6dc1f11897170187b029745a0d9bd5fa620 [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.johnzon.jaxrs;
import org.apache.johnzon.mapper.Mapper;
import org.apache.johnzon.mapper.MapperBuilder;
import javax.json.JsonStructure;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.StreamingOutput;
import javax.ws.rs.ext.MessageBodyWriter;
import javax.ws.rs.ext.Provider;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Writer;
import java.lang.annotation.Annotation;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Collection;
import static javax.ws.rs.core.MediaType.WILDCARD;
@Provider
@Produces(WILDCARD)
public class JohnzonMessageBodyWriter<T> implements MessageBodyWriter<T> {
private final Mapper mapper;
public JohnzonMessageBodyWriter() {
this(new MapperBuilder().setDoCloseOnStreams(false).build());
}
public JohnzonMessageBodyWriter(final Mapper mapper) {
this.mapper = mapper;
}
@Override
public long getSize(final T t, final Class<?> rawType, final Type genericType,
final Annotation[] annotations, final MediaType mediaType) {
return -1;
}
@Override
public boolean isWriteable(final Class<?> rawType, final Type genericType,
final Annotation[] annotations, final MediaType mediaType) {
return Jsons.isJson(mediaType)
&& InputStream.class != rawType
&& OutputStream.class != rawType
&& Writer.class != rawType
&& StreamingOutput.class != rawType
&& String.class != rawType
&& Response.class != rawType
&& !JsonStructure.class.isAssignableFrom(rawType);
}
@Override
public void writeTo(final T t, final Class<?> rawType, final Type genericType,
final Annotation[] annotations, final MediaType mediaType,
final MultivaluedMap<String, Object> httpHeaders,
final OutputStream entityStream) throws IOException {
if (rawType.isArray()) {
mapper.writeArray(t, entityStream);
} else if (Collection.class.isAssignableFrom(rawType) && ParameterizedType.class.isInstance(genericType)) {
mapper.writeArray(Collection.class.cast(t), entityStream);
} else {
mapper.writeObject(t, entityStream);
}
}
}