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

org.eclipse.jetty.websocket.server.mux.HttpTransportOverMux Maven / Gradle / Ivy

There is a newer version: 1.0.b11
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.websocket.server.mux;

import java.io.IOException;
import java.nio.ByteBuffer;

import org.eclipse.jetty.http.HttpGenerator.ResponseInfo;
import org.eclipse.jetty.io.EofException;
import org.eclipse.jetty.server.HttpTransport;
import org.eclipse.jetty.util.BlockingCallback;
import org.eclipse.jetty.util.Callback;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
import org.eclipse.jetty.websocket.common.extensions.mux.MuxChannel;
import org.eclipse.jetty.websocket.common.extensions.mux.Muxer;

/**
 * Take {@link ResponseInfo} objects and convert to bytes for response.
 */
public class HttpTransportOverMux implements HttpTransport
{
    private static final Logger LOG = Log.getLogger(HttpTransportOverMux.class);
    private final BlockingCallback streamBlocker = new BlockingCallback();

    public HttpTransportOverMux(Muxer muxer, MuxChannel channel)
    {
        // TODO Auto-generated constructor stub
    }

    @Override
    public void completed()
    {
        LOG.debug("completed");
    }

    /**
     * Process ResponseInfo object into AddChannelResponse
     */
    @Override
    public void send(ResponseInfo info, ByteBuffer responseBodyContent, boolean lastContent) throws IOException
    {
        send(info,responseBodyContent,lastContent,streamBlocker);
        try
        {
            streamBlocker.block();
        }
        catch (IOException e)
        {
            throw e;
        }
        catch (Exception e)
        {
            throw new EofException(e);
        }
    }

    @Override
    public void send(ResponseInfo info, ByteBuffer responseBodyContent, boolean lastContent, Callback callback)
    {
        if (lastContent == false)
        {
            // throw error
        }

        if (info.getContentLength() > 0)
        {
            // throw error
        }

        // prepare the AddChannelResponse
        // TODO: look at HttpSender in jetty-client for generator loop logic
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy