Package org.apache.cxf.jaxrs.provider

Source Code of org.apache.cxf.jaxrs.provider.StreamingResponseProvider$StreamingResponseWriter

/**
* 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<T> implements
    MessageBodyWriter<StreamingResponse<T>> {

    @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<T> p, Class<?> cls, Type t, Annotation[] anns,
                        MediaType mt, MultivaluedMap<String, Object> headers, OutputStream os)
        throws IOException, WebApplicationException {
        Class<?> actualCls = InjectionUtils.getActualType(t);
        @SuppressWarnings("unchecked")
        MessageBodyWriter<T> writer =
            (MessageBodyWriter<T>)providers.getMessageBodyWriter(actualCls, actualCls, anns, mt);
        if (writer == null) {
            throw new InternalServerErrorException();
        }
        //TODO: review the possibility of caching the providers
        StreamingResponseWriter thewriter =
            new StreamingResponseWriter(writer, actualCls, anns, mt, headers, os);
        p.writeTo(thewriter);
    }

    @Override
    public long getSize(StreamingResponse<T> arg0, Class<?> arg1, Type arg2, Annotation[] arg3, MediaType arg4) {
        return -1;
    }
   
    private class StreamingResponseWriter implements StreamingResponse.Writer<T> {
        private MessageBodyWriter<T> writer;
        private Class<?> cls;
        private MediaType mt;
        private Annotation[] anns;
        private MultivaluedMap<String, Object> headers;
        private OutputStream os;
               
        public StreamingResponseWriter(MessageBodyWriter<T> writer,
                                       Class<?> cls,
                                       Annotation[] anns,
                                       MediaType mt,
                                       MultivaluedMap<String, Object> headers,
                                       OutputStream os) {
            this.writer = writer;
            this.cls = cls;
            this.anns = anns;
            this.mt = mt;
            this.headers = headers;
            this.os = os;
        }
       
        @Override
        public void write(T data) throws IOException {
            writer.writeTo(data, cls, cls, anns, mt, headers, os);
           
        }

        @Override
        public OutputStream getEntityStream() {
            return os;
        }
       
    }
}
TOP

Related Classes of org.apache.cxf.jaxrs.provider.StreamingResponseProvider$StreamingResponseWriter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.