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

org.apache.camel.component.jetty8.JettyContentExchange8 Maven / Gradle / Ivy

/**
 * 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.camel.component.jetty8;

import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.Collection;
import java.util.LinkedList;
import java.util.Map;
import java.util.TreeMap;
import java.util.concurrent.CountDownLatch;

import org.apache.camel.AsyncCallback;
import org.apache.camel.CamelExchangeException;
import org.apache.camel.Exchange;
import org.apache.camel.ExchangeTimedOutException;
import org.apache.camel.component.jetty.JettyContentExchange;
import org.apache.camel.component.jetty.JettyHttpBinding;
import org.apache.camel.util.IOHelper;
import org.eclipse.jetty.client.ContentExchange;
import org.eclipse.jetty.client.HttpClient;
import org.eclipse.jetty.client.HttpEventListener;
import org.eclipse.jetty.client.HttpEventListenerWrapper;
import org.eclipse.jetty.client.HttpExchange;
import org.eclipse.jetty.http.HttpFields;
import org.eclipse.jetty.http.HttpHeaders;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Jetty specific exchange which keeps track of the the request and response.
 *
 * @version 
 */
public class JettyContentExchange8 implements JettyContentExchange {

    private static final Logger LOG = LoggerFactory.getLogger(JettyContentExchange8.class);

    private volatile Exchange exchange;
    private volatile AsyncCallback callback;
    private volatile JettyHttpBinding jettyBinding;
    private volatile HttpClient client;
    private final CountDownLatch done = new CountDownLatch(1);
    private final ContentExchange ce;
    
    public JettyContentExchange8() {
        this.ce = new ContentExchange(true);
    }

    public void init(Exchange exchange, JettyHttpBinding jettyBinding, 
                     final HttpClient client, AsyncCallback callback) {
        this.exchange = exchange;
        this.jettyBinding = jettyBinding;
        this.client = client;
        this.callback = callback;
        HttpEventListener old = ce.getEventListener();
        ce.setEventListener(new HttpEventListenerWrapper(old, true) {
            public void onRequestComplete() throws IOException {
                JettyContentExchange8.this.onRequestComplete();
                super.onRequestComplete();
            }

            @Override
            public void onResponseComplete() throws IOException {
                super.onResponseComplete();
                JettyContentExchange8.this.onResponseComplete();
            }

            @Override
            public void onConnectionFailed(Throwable ex) {
                try {
                    super.onConnectionFailed(ex);
                } finally {
                    JettyContentExchange8.this.onConnectionFailed(ex);
                }
            }

            @Override
            public void onException(Throwable ex) {
                try {
                    super.onException(ex);
                } finally {
                    JettyContentExchange8.this.onException(ex);
                }
            }

            @Override
            public void onExpire() {
                try {
                    super.onExpire();
                } finally {
                    JettyContentExchange8.this.onExpire();
                }
            }
            
        });
    }

    protected void onRequestComplete() throws IOException {
        LOG.trace("onRequestComplete");
        
        closeRequestContentSource();
    }

    protected void onResponseComplete() throws IOException {
        LOG.trace("onResponseComplete");
        doTaskCompleted();
    }

    protected void onExpire() {
        LOG.trace("onExpire");

        // need to close the request input stream
        closeRequestContentSource();
        doTaskCompleted();
    }

    protected void onException(Throwable ex) {
        LOG.trace("onException {}", ex);

        // need to close the request input stream
        closeRequestContentSource();
        doTaskCompleted(ex);
    }

    protected void onConnectionFailed(Throwable ex) {
        LOG.trace("onConnectionFailed {}", ex);

        // need to close the request input stream
        closeRequestContentSource();
        doTaskCompleted(ex);
    }

    public byte[] getBody() {
        // must return the content as raw bytes
        return ce.getResponseContentBytes();
    }

    public String getUrl() {
        String params = ce.getRequestFields().getStringField(HttpHeaders.CONTENT_ENCODING);
        return ce.getScheme() + "://" 
            + ce.getAddress().toString() 
            + ce.getRequestURI() + (params != null ? "?" + params : "");
    }
    
    protected void closeRequestContentSource() {
        // close the input stream when its not needed anymore
        InputStream is = ce.getRequestContentSource();
        if (is != null) {
            IOHelper.close(is, "RequestContentSource", LOG);
        }
    }

    protected void doTaskCompleted() {
        // make sure to lower the latch
        done.countDown();

        if (callback == null) {
            // this is only for the async callback
            return;
        }

        int exchangeState = ce.getStatus();

        if (LOG.isDebugEnabled()) {
            LOG.debug("TaskComplete with state {} for url: {}", exchangeState, getUrl());
        }

        try {
            if (exchangeState == HttpExchange.STATUS_COMPLETED) {
                // process the response as the state is ok
                try {
                    jettyBinding.populateResponse(exchange, this);
                } catch (Exception e) {
                    exchange.setException(e);
                }
            } else if (exchangeState == HttpExchange.STATUS_EXPIRED) {
                // we did timeout
                exchange.setException(new ExchangeTimedOutException(exchange, client.getTimeout()));
            } else {
                // some kind of other error
                if (exchange.getException() != null) {
                    exchange.setException(new CamelExchangeException("JettyClient failed with state " + exchangeState, exchange, exchange.getException()));
                }
            }
        } finally {
            // now invoke callback to indicate we are done async
            callback.done(false);
        }
    }

    protected void doTaskCompleted(Throwable ex) {
        try {
            // some kind of other error
            exchange.setException(new CamelExchangeException("JettyClient failed cause by: " + ex.getMessage(), exchange, ex));
        } finally {
            // make sure to lower the latch
            done.countDown();
        }

        if (callback != null) {
            // now invoke callback to indicate we are done async
            callback.done(false);
        }
    }

    public void setRequestContentType(String contentType) {
        ce.setRequestContentType(contentType);
    }

    public int getResponseStatus() {
        return ce.getResponseStatus();
    }

    public void setMethod(String method) {
        ce.setMethod(method);
    }
    
    public void setURL(String url) {
        ce.setURL(url);
    }

    public void setRequestContent(byte[] byteArray) {
        ce.setRequestContent(new org.eclipse.jetty.io.ByteArrayBuffer(byteArray));        
    }
    public void setRequestContent(String data, String charset) throws UnsupportedEncodingException {
        if (charset == null) {
            ce.setRequestContent(new org.eclipse.jetty.io.ByteArrayBuffer(data));
        } else {
            ce.setRequestContent(new org.eclipse.jetty.io.ByteArrayBuffer(data, charset));
        }
    }
    public void setRequestContent(InputStream ins) {
        ce.setRequestContentSource(ins);        
    }

    public void addRequestHeader(String key, String s) {
        ce.addRequestHeader(key, s);
    }

    public void send(HttpClient client) throws IOException {
        client.send(ce);
    }

    public byte[] getResponseContentBytes() {
        return ce.getResponseContentBytes();
    }
    
    public Map> getResponseHeaders() {
        final HttpFields f = ce.getResponseFields();
        Map> ret = new TreeMap>(String.CASE_INSENSITIVE_ORDER);
        for (String n : f.getFieldNamesCollection()) {
            ret.put(n,  f.getValuesCollection(n));
        }
        return ret;
    }

    @Override
    public void setTimeout(long timeout) {
        client.setTimeout(timeout);
        ce.setTimeout(timeout);
    }

    @Override
    public void setSupportRedirect(boolean supportRedirect) {
        LinkedList listeners = client.getRegisteredListeners();
        if (listeners == null || !listeners.contains(CamelRedirectListener.class.getName())) {
            client.registerListener(CamelRedirectListener.class.getName());
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy