Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* 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.cxf.jaxrs.provider;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import javax.ws.rs.InternalServerErrorException;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.ext.MessageBodyWriter;
import javax.ws.rs.ext.Providers;
import org.apache.cxf.jaxrs.ext.StreamingResponse;
import org.apache.cxf.jaxrs.utils.InjectionUtils;
public class StreamingResponseProvider implements
MessageBodyWriter> {
@Context
private Providers providers;
@Override
public boolean isWriteable(Class> cls, Type type, Annotation[] anns, MediaType mt) {
return StreamingResponse.class.isAssignableFrom(cls);
}
@Override
public void writeTo(StreamingResponse p, Class> cls, Type t, Annotation[] anns,
MediaType mt, MultivaluedMap headers, OutputStream os)
throws IOException, WebApplicationException {
Class> actualCls = InjectionUtils.getActualType(t);
if (cls == actualCls) {
actualCls = Object.class;
}
//TODO: review the possibility of caching the providers
StreamingResponseWriter thewriter = new StreamingResponseWriter(actualCls, anns, mt, headers, os);
p.writeTo(thewriter);
}
@Override
public long getSize(StreamingResponse arg0, Class> arg1, Type arg2, Annotation[] arg3, MediaType arg4) {
return -1;
}
private class StreamingResponseWriter implements StreamingResponse.Writer {
private volatile MessageBodyWriter writer;
private Class> entityCls;
private MediaType mt;
private Annotation[] anns;
private MultivaluedMap headers;
private OutputStream os;
StreamingResponseWriter(Class> entityCls,
Annotation[] anns,
MediaType mt,
MultivaluedMap headers,
OutputStream os) {
this.entityCls = entityCls;
this.anns = anns;
this.mt = mt;
this.headers = headers;
this.os = os;
}
@SuppressWarnings("unchecked")
@Override
public void write(T data) throws IOException {
Class> actualCls = entityCls != Object.class ? entityCls : data.getClass();
if (writer == null) {
writer = (MessageBodyWriter)providers.getMessageBodyWriter(actualCls, actualCls, anns, mt);
if (writer == null) {
throw new InternalServerErrorException();
}
}
writer.writeTo(data, actualCls, actualCls, anns, mt, headers, os);
}
@Override
public OutputStream getEntityStream() {
return os;
}
}
}