//======================================================================== //$Id: ChannelEndPoint.java,v 1.1 2005/10/05 14:09:38 janb Exp $ //Copyright 2004-2005 Mort Bay Consulting Pty. Ltd. //------------------------------------------------------------------------ //Licensed 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.mortbay.io.nio; import java.io.IOException; import java.net.InetSocketAddress; import java.net.Socket; import java.nio.ByteBuffer; import java.nio.channels.ByteChannel; import java.nio.channels.GatheringByteChannel; import java.nio.channels.SelectableChannel; import java.nio.channels.SocketChannel; import org.mortbay.io.Buffer; import org.mortbay.io.EndPoint; import org.mortbay.io.Portable; import org.mortbay.log.Log; /** * @author gregw * * To change the template for this generated type comment go to * Window - Preferences - Java - Code Generation - Code and Comments */ public class ChannelEndPoint implements EndPoint { protected final ByteChannel _channel; protected final ByteBuffer[] _gather2=new ByteBuffer[2]; protected final Socket _socket; protected final InetSocketAddress _local; protected final InetSocketAddress _remote; /** * */ public ChannelEndPoint(ByteChannel channel) { super(); this._channel = channel; if (channel instanceof SocketChannel) { _socket=((SocketChannel)channel).socket(); _local=(InetSocketAddress)_socket.getLocalSocketAddress(); _remote=(InetSocketAddress)_socket.getRemoteSocketAddress(); } else { _socket=null; _local=null; _remote=null; } } public boolean isBlocking() { if (_channel instanceof SelectableChannel) return ((SelectableChannel)_channel).isBlocking(); return true; } public boolean blockReadable(long millisecs) throws IOException { return true; } public boolean blockWritable(long millisecs) throws IOException { return true; } /* * @see org.mortbay.io.EndPoint#isOpen() */ public boolean isOpen() { return _channel.isOpen(); } /* (non-Javadoc) * @see org.eclipse.io.EndPoint#close() */ public void shutdownOutput() throws IOException { if (_channel.isOpen() && _channel instanceof SocketChannel) { Socket socket= ((SocketChannel)_channel).socket(); if (!socket.isClosed()&&!socket.isOutputShutdown()) socket.shutdownOutput(); } } /* (non-Javadoc) * @see org.eclipse.io.EndPoint#close() */ public void close() throws IOException { if (_socket!=null && !_socket.isOutputShutdown()) _socket.shutdownOutput(); _channel.close(); } /* (non-Javadoc) * @see org.mortbay.io.EndPoint#fill(org.mortbay.io.Buffer) */ public int fill(Buffer buffer) throws IOException { Buffer buf = buffer.buffer(); int len=0; if (buf instanceof NIOBuffer) { NIOBuffer nbuf = (NIOBuffer)buf; ByteBuffer bbuf=nbuf.getByteBuffer(); synchronized(nbuf) { try { bbuf.position(buffer.putIndex()); len=_channel.read(bbuf); if (len<0) _channel.close(); } finally { buffer.setPutIndex(bbuf.position()); bbuf.position(0); } } } else { throw new IOException("Not Implemented"); } return len; } /* (non-Javadoc) * @see org.mortbay.io.EndPoint#flush(org.mortbay.io.Buffer) */ public int flush(Buffer buffer) throws IOException { Buffer buf = buffer.buffer(); int len=0; if (buf instanceof NIOBuffer) { NIOBuffer nbuf = (NIOBuffer)buf; ByteBuffer bbuf=nbuf.getByteBuffer(); // TODO synchronize synchronized(bbuf) { try { bbuf.position(buffer.getIndex()); bbuf.limit(buffer.putIndex()); len=_channel.write(bbuf); } finally { if (len>0) buffer.skip(len); bbuf.position(0); bbuf.limit(bbuf.capacity()); } } } else if (buffer.array()!=null) { ByteBuffer b = ByteBuffer.wrap(buffer.array(), buffer.getIndex(), buffer.length()); len=_channel.write(b); if (len>0) buffer.skip(len); } else { throw new IOException("Not Implemented"); } return len; } /* (non-Javadoc) * @see org.mortbay.io.EndPoint#flush(org.mortbay.io.Buffer, org.mortbay.io.Buffer, org.mortbay.io.Buffer) */ public int flush(Buffer header, Buffer buffer, Buffer trailer) throws IOException { int length=0; Buffer buf0 = header==null?null:header.buffer(); Buffer buf1 = buffer==null?null:buffer.buffer(); if (_channel instanceof GatheringByteChannel && header!=null && header.length()!=0 && header instanceof NIOBuffer && buffer!=null && buffer.length()!=0 && buffer instanceof NIOBuffer) { NIOBuffer nbuf0 = (NIOBuffer)buf0; ByteBuffer bbuf0=nbuf0.getByteBuffer(); NIOBuffer nbuf1 = (NIOBuffer)buf1; ByteBuffer bbuf1=nbuf1.getByteBuffer(); synchronized(this) { // We must sync because buffers may be shared (eg nbuf1 is likely to be cached content). synchronized(bbuf0) { synchronized(bbuf1) { try { // Adjust position indexs of buf0 and buf1 bbuf0.position(header.getIndex()); bbuf0.limit(header.putIndex()); bbuf1.position(buffer.getIndex()); bbuf1.limit(buffer.putIndex()); _gather2[0]=bbuf0; _gather2[1]=bbuf1; // do the gathering write. length=(int)((GatheringByteChannel)_channel).write(_gather2); int hl=header.length(); if (length>hl) { header.clear(); buffer.skip(length-hl); } else if (length>0) { header.skip(length); } } finally { bbuf0.position(0); bbuf1.position(0); bbuf0.limit(bbuf0.capacity()); bbuf1.limit(bbuf1.capacity()); } } } } } else { if (header!=null) { if (buffer!=null && buffer.length()>0 && header.space()>buffer.length()) { header.put(buffer); buffer.clear(); } if (trailer!=null && trailer.length()>0 && header.space()>trailer.length()) { header.put(trailer); trailer.clear(); } } // flush header if (header!=null && header.length()>0) length=flush(header); // flush buffer if ((header==null || header.length()==0) && buffer!=null && buffer.length()>0) length+=flush(buffer); // flush trailer if ((header==null || header.length()==0) && (buffer==null || buffer.length()==0) && trailer!=null && trailer.length()>0) length+=flush(trailer); } return length; } /** * @return Returns the channel. */ public ByteChannel getChannel() { return _channel; } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getLocalAddr() */ public String getLocalAddr() { if (_socket==null) return null; if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress()) return Portable.ALL_INTERFACES; return _local.getAddress().getHostAddress(); } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getLocalHost() */ public String getLocalHost() { if (_socket==null) return null; if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress()) return Portable.ALL_INTERFACES; return _local.getAddress().getCanonicalHostName(); } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getLocalPort() */ public int getLocalPort() { if (_socket==null) return 0; if (_local==null) return -1; return _local.getPort(); } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getRemoteAddr() */ public String getRemoteAddr() { if (_socket==null) return null; if (_remote==null) return null; return _remote.getAddress().getHostAddress(); } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getRemoteHost() */ public String getRemoteHost() { if (_socket==null) return null; if (_remote==null) return null; return _remote.getAddress().getCanonicalHostName(); } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getRemotePort() */ public int getRemotePort() { if (_socket==null) return 0; if (_remote==null) return -1; return _remote==null?-1:_remote.getPort(); } /* ------------------------------------------------------------ */ /* * @see org.mortbay.io.EndPoint#getConnection() */ public Object getTransport() { return _channel; } /* ------------------------------------------------------------ */ public void flush() throws IOException { } /* ------------------------------------------------------------ */ public boolean isBufferingInput() { return false; } /* ------------------------------------------------------------ */ public boolean isBufferingOutput() { return false; } /* ------------------------------------------------------------ */ public boolean isBufferred() { return false; } }