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

org.eclipse.jetty.server.MemoryTransport Maven / Gradle / Ivy

The newest version!
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.server;

import java.net.SocketAddress;
import java.util.Map;
import java.util.Objects;

import org.eclipse.jetty.io.ClientConnector;
import org.eclipse.jetty.io.Connection;
import org.eclipse.jetty.io.EndPoint;
import org.eclipse.jetty.io.Transport;
import org.eclipse.jetty.util.Promise;

/**
 * 

A {@link Transport} suitable to be used when using a {@link MemoryConnector}.

*/ public class MemoryTransport implements Transport { private final MemoryConnector connector; public MemoryTransport(MemoryConnector connector) { this.connector = connector; } @Override public void connect(SocketAddress socketAddress, Map context) { @SuppressWarnings("unchecked") Promise promise = (Promise)context.get(ClientConnector.CONNECTION_PROMISE_CONTEXT_KEY); try { EndPoint endPoint = connector.connect().getLocalEndPoint(); ClientConnector clientConnector = (ClientConnector)context.get(ClientConnector.CLIENT_CONNECTOR_CONTEXT_KEY); endPoint.setIdleTimeout(clientConnector.getIdleTimeout().toMillis()); // This instance may be nested inside other Transport instances. // Retrieve the outermost instance to call newConnection(). Transport transport = (Transport)context.get(Transport.class.getName()); Connection connection = transport.newConnection(endPoint, context); endPoint.setConnection(connection); endPoint.onOpen(); connection.onOpen(); // TODO: move this to Connection.onOpen(), see // ClientSelectorManager.connectionOpened() promise.succeeded(connection); } catch (Throwable x) { promise.failed(x); } } @Override public SocketAddress getSocketAddress() { return connector.getLocalSocketAddress(); } @Override public int hashCode() { return Objects.hash(connector); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj instanceof MemoryTransport that) return Objects.equals(connector, that.connector); return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy