All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.jaxrs.client.ResponseReader Maven / Gradle / Ivy

There is a newer version: 2.7.18
Show newest version
/**
 * 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.client;

import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.List;

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.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.Providers;

import org.apache.cxf.jaxrs.ext.MessageContext;
import org.apache.cxf.message.Message;

public class ResponseReader implements MessageBodyReader {

    @Context
    private MessageContext context;
 
    private Class entityCls;
    private Type entityGenericType;
    
    public ResponseReader() {
        
    }
    
    public ResponseReader(Class entityCls) {
        this.entityCls = entityCls;
    }
    
    public boolean isReadable(Class cls, Type genericType, Annotation[] anns, MediaType mt) {
        return cls.isAssignableFrom(Response.class);
    }

    @SuppressWarnings("unchecked")
    public Response readFrom(Class cls, Type genericType, Annotation[] anns, MediaType mt,
        MultivaluedMap headers, InputStream is) 
        throws IOException, WebApplicationException {
        
        int status = Integer.valueOf(getContext().get(Message.RESPONSE_CODE).toString());
        
        ResponseBuilder rb = Response.status(status);
        
        for (String header : headers.keySet()) {
            List values = headers.get(header);
            for (String value : values) {
                rb.header(header, value);
            }
        }
        
        if (entityCls != null) {
            Providers providers = getContext().getProviders();
            MessageBodyReader reader = 
                providers.getMessageBodyReader(entityCls, getEntityGenericType(), anns, mt);
            if (reader == null) {
                throw new ClientWebApplicationException("No reader for Response entity "
                                                        + entityCls.getName());
            }
            
            Object entity = reader.readFrom((Class)entityCls, getEntityGenericType(), 
                                            anns, mt, headers, is);
            rb.entity(entity);
        }
        
        
        return rb.build();
    }

    public void setEntityClass(Class cls) {
        entityCls = cls;
    }
    
    private Type getEntityGenericType() {
        return entityGenericType == null ? entityCls : entityGenericType; 
    }
    
    protected MessageContext getContext() {
        return context;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy