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

📄 sockettransport.java

📁 gcc的组建
💻 JAVA
字号:
/* SocketTransport.java -- a socket transport   Copyright (C) 2005 Free Software FoundationThis 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., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 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 linkedterms 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.classpath.jdwp.transport;import gnu.classpath.jdwp.transport.ITransport;import gnu.classpath.jdwp.transport.TransportException;import java.io.InputStream;import java.io.IOException;import java.io.OutputStream;import java.net.ServerSocket;import java.net.Socket;import java.util.HashMap;import javax.net.ServerSocketFactory;import javax.net.SocketFactory;/** * A socket-based transport. This transport uses * configury string that looks like "name=dt_socket, * address=localhost:1234,server=y". * * @author Keith Seitz (keiths@redhat.com) */class SocketTransport  implements ITransport{  /**   * Name of this transport   */  public static final String NAME = "dt_socket";  // Configure properties  private static final String _PROPERTY_ADDRESS = "address";  private static final String _PROPERTY_SERVER = "server";  // Port number  private int _port;  // Host name  private String _host;     // Are we acting as a server?  private boolean _server = false;  // Socket  private Socket _socket;  /**   * Setup the connection configuration from the given properties   *   * @param  properties  the properties of the JDWP session   * @throws TransportException for any configury errors   */  public void configure (HashMap properties)    throws TransportException  {    // Get address [form: "hostname:port"]    String p = (String) properties.get (_PROPERTY_ADDRESS);    if (p != null)      {	String[] s = p.split (":");	if (s.length == 2)	  {	    _host = s[0];	    _port = Integer.parseInt (s[1]);	  }      }    // Get server [form: "y" or "n"]    p = (String) properties.get (_PROPERTY_SERVER);    if (p != null)      {	if (p.toLowerCase().equals ("y"))	  _server = true;      }  }  /**   * Initialize this socket connection. This includes   * connecting to the host (or listening for it).   *   * @throws TransportException if a transport-related error occurs   */  public void initialize ()    throws TransportException  {    try      {	if (_server)	  {	    // Get a server socket	    ServerSocketFactory ssf = ServerSocketFactory.getDefault ();	    ServerSocket ss = ssf.createServerSocket (_port, 1);	    _socket = ss.accept ();	  }	else	  {	    // Get a client socket (the factory will connect it)	    SocketFactory sf = SocketFactory.getDefault ();	    _socket = sf.createSocket (_host, _port);	  }      }    catch (IOException ioe)      {	// This will grab UnknownHostException, too.	throw new TransportException (ioe);      }  }  /**   * Shutdown the socket. This could cause SocketExceptions   * for anyone blocked on socket i/o   */  public void shutdown ()  {    try      {	_socket.close ();      }    catch (Throwable t)      {	// We don't really care about errors at this point      }  }  /**   * Returns an <code>InputStream</code> for the transport   *   * @throws IOException if an I/O error occurs creating the stream   *                     or the socket is not connected   */  public InputStream getInputStream ()    throws IOException  {    return _socket.getInputStream ();  }  /**   * Returns an <code>OutputStream</code> for the transport   *   * @throws IOException if an I/O error occurs creating the stream   *                     or the socket is not connected   */  public OutputStream getOutputStream ()    throws IOException  {    return _socket.getOutputStream ();  }}

⌨️ 快捷键说明

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