⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 socketchannelimpl.java

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 JAVA
字号:
/* SocketChannelImpl.java --    Copyright (C) 2002 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package gnu.java.nio;import java.io.IOException;import java.net.InetAddress;import java.net.InetSocketAddress;import java.net.Socket;import java.net.SocketAddress;import java.nio.ByteBuffer;import java.nio.channels.AlreadyConnectedException;import java.nio.channels.SocketChannel;import java.nio.channels.spi.SelectorProvider;import gnu.classpath.Configuration;public class SocketChannelImpl extends SocketChannel{  Socket sock_object;  int fd;  int local_port;  boolean blocking = true;  boolean connected = false;  InetSocketAddress sa;  static native int SocketCreate();  static native int SocketConnect(int fd, InetAddress addr, int port);  static native int SocketBind(int fd, InetAddress addr, int port);  static native int SocketListen(int fd, int backlog);  static native int SocketAvailable(int fd);  static native int SocketClose(int fd);  static native int SocketRead(int fd, byte b[], int off, int len);  static native int SocketWrite(int fd, byte b[], int off, int len);  public SocketChannelImpl(SelectorProvider provider)		        {    super(provider);    fd = SocketCreate();	    if (fd == -1)	    {        System.err.println("failed to create socket:"+fd);	    }  }  public void finalizer()  {    if (connected)	    {        try          {            close();          }        catch (Exception e)          {          }	    }  }  protected void implCloseSelectableChannel()  {    connected = false;    SocketClose(fd);    fd = SocketCreate();  }  protected void implConfigureBlocking(boolean  block)  {    if (blocking == block)	    return;  }     public boolean connect(SocketAddress remote)    throws IOException  {    if (connected)	    {        throw new AlreadyConnectedException();	    }    // ok, lets connect !	    sa = (InetSocketAddress) remote;	    InetAddress addr = sa.getAddress();    int port = sa.getPort();    int err = SocketConnect(fd, addr, port);	    if (err < 0) 	    {        throw new IOException("Connection refused:"+err + ", connect="+err);	    }    local_port = err;    connected = true;    return blocking;  }      public boolean finishConnect()  {    return false;  }  public boolean isConnected()  {    return connected;  }      public boolean isConnectionPending()  {    if (blocking)	    return true;    return false;  }      public Socket socket()  {    if (sock_object != null)	    {        //sock_object.ch = this;	    }    return sock_object;  }  public int read(ByteBuffer dst)  {    int bytes = 0;    int len = 1024;    byte[]b = new byte[len];	    bytes = SocketRead(fd, b, 0, len);    dst.put(b, 0, bytes);    if (bytes == 0)	    {        // we've hit eof ?        return -1;	    }    return bytes;  }      public long read(ByteBuffer[] dsts, int offset, int length)  {    long bytes = 0;    for (int i=offset; i<length; i++)	    {        bytes += read(dsts[i]);	    }    return bytes;  }       public int write(ByteBuffer src)  {    int bytes = 0;    int len = src.position();    if (src instanceof ByteBufferImpl)	    {        ByteBufferImpl bi = (ByteBufferImpl) src;        byte[]b = bi.array();        bytes = SocketWrite(fd, b, 0, len);	    }    else	    {        byte[]b = new byte[len];        src.get(b, 0, len);        bytes = SocketWrite(fd, b, 0, len);	    }			  return bytes;  }  public long write (ByteBuffer[] srcs, int offset, int length)  {    long bytes = 0;    for (int i=offset; i<length; i++)	    {        bytes += write(srcs[i]);	    }    return bytes;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -