org.glowroot.shaded.netty.channel.local.LocalChannel Maven / Gradle / Ivy
/*
* Copyright 2012 The Netty Project
*
* The Netty Project 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.glowroot.shaded.netty.channel.local;
import org.glowroot.shaded.netty.channel.AbstractChannel;
import org.glowroot.shaded.netty.channel.Channel;
import org.glowroot.shaded.netty.channel.ChannelConfig;
import org.glowroot.shaded.netty.channel.ChannelException;
import org.glowroot.shaded.netty.channel.ChannelMetadata;
import org.glowroot.shaded.netty.channel.ChannelOutboundBuffer;
import org.glowroot.shaded.netty.channel.ChannelPipeline;
import org.glowroot.shaded.netty.channel.ChannelPromise;
import org.glowroot.shaded.netty.channel.DefaultChannelConfig;
import org.glowroot.shaded.netty.channel.EventLoop;
import org.glowroot.shaded.netty.channel.SingleThreadEventLoop;
import org.glowroot.shaded.netty.util.ReferenceCountUtil;
import org.glowroot.shaded.netty.util.concurrent.SingleThreadEventExecutor;
import org.glowroot.shaded.netty.util.internal.InternalThreadLocalMap;
import org.glowroot.shaded.netty.util.internal.OneTimeTask;
import org.glowroot.shaded.netty.util.internal.PlatformDependent;
import java.net.SocketAddress;
import java.nio.channels.AlreadyConnectedException;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.ConnectionPendingException;
import java.nio.channels.NotYetConnectedException;
import java.util.Queue;
/**
* A {@link Channel} for the local transport.
*/
public class LocalChannel extends AbstractChannel {
private static final ChannelMetadata METADATA = new ChannelMetadata(false);
private static final int MAX_READER_STACK_DEPTH = 8;
private final ChannelConfig config = new DefaultChannelConfig(this);
// To futher optimize this we could write our own SPSC queue.
private final Queue