/BIBLIOTECAS/ConectoresBD/mysql-connector-java-3.0.17-ga/com/mysql/jdbc/StandardSocketFactory.java

http://tesis-matlab-estanques.googlecode.com/ · Java · 207 lines · 107 code · 40 blank · 60 comment · 17 complexity · c337fd89d1025ebdee5086a82f131ff9 MD5 · raw file

  1. /*
  2. Copyright (C) 2002-2004 MySQL AB
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of version 2 of the GNU General Public License as
  5. published by the Free Software Foundation.
  6. There are special exceptions to the terms and conditions of the GPL
  7. as it is applied to this software. View the full text of the
  8. exception exception in file EXCEPTIONS-CONNECTOR-J in the directory of this
  9. software distribution.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. package com.mysql.jdbc;
  19. import java.io.IOException;
  20. import java.lang.reflect.Constructor;
  21. import java.lang.reflect.Method;
  22. import java.net.InetAddress;
  23. import java.net.Socket;
  24. import java.net.SocketException;
  25. import java.util.Properties;
  26. /**
  27. * Socket factory for vanilla TCP/IP sockets (the standard)
  28. *
  29. * @author Mark Matthews
  30. */
  31. public class StandardSocketFactory implements SocketFactory {
  32. /** The underlying TCP/IP socket to use */
  33. protected Socket rawSocket = null;
  34. /** The hostname to connect to */
  35. protected String host = null;
  36. /** The port number to connect to */
  37. protected int port = 3306;
  38. /**
  39. * Called by the driver after issuing the MySQL protocol handshake and
  40. * reading the results of the handshake.
  41. *
  42. * @return The socket to use after the handshake
  43. *
  44. * @throws SocketException if a socket error occurs
  45. * @throws IOException if an I/O error occurs
  46. */
  47. public Socket afterHandshake() throws SocketException, IOException {
  48. return rawSocket;
  49. }
  50. /**
  51. * Called by the driver before issuing the MySQL protocol handshake. Should
  52. * return the socket instance that should be used during the handshake.
  53. *
  54. * @return the socket to use before the handshake
  55. *
  56. * @throws SocketException if a socket error occurs
  57. * @throws IOException if an I/O error occurs
  58. */
  59. public Socket beforeHandshake() throws SocketException, IOException {
  60. return rawSocket;
  61. }
  62. /**
  63. * @see com.mysql.jdbc.SocketFactory#createSocket(Properties)
  64. */
  65. public Socket connect(String host, int portNumber, Properties props)
  66. throws SocketException, IOException {
  67. if (props != null) {
  68. this.host = host;
  69. this.port = portNumber;
  70. boolean hasConnectTimeoutMethod = false;
  71. Method connectWithTimeoutMethod = null;
  72. try {
  73. // Have to do this with reflection, otherwise older JVMs croak
  74. Class socketAddressClass = Class.forName(
  75. "java.net.SocketAddress");
  76. connectWithTimeoutMethod = Socket.class.getMethod("connect",
  77. new Class[] { socketAddressClass, Integer.TYPE });
  78. hasConnectTimeoutMethod = true;
  79. } catch (NoClassDefFoundError noClassDefFound) {
  80. hasConnectTimeoutMethod = false;
  81. } catch (NoSuchMethodException noSuchMethodEx) {
  82. hasConnectTimeoutMethod = false;
  83. } catch (Throwable catchAll) {
  84. hasConnectTimeoutMethod = false;
  85. }
  86. int connectTimeout = 0;
  87. String connectTimeoutStr = props.getProperty("connectTimeout");
  88. if (connectTimeoutStr != null) {
  89. try {
  90. connectTimeout = Integer.parseInt(connectTimeoutStr);
  91. } catch (NumberFormatException nfe) {
  92. throw new SocketException("Illegal value '"
  93. + connectTimeoutStr + "' for connectTimeout");
  94. }
  95. }
  96. if (this.host != null) {
  97. if (!hasConnectTimeoutMethod || (connectTimeout == 0)) {
  98. InetAddress[] possibleAddresses = InetAddress.getAllByName(this.host);
  99. Exception caughtWhileConnecting = null;
  100. // Need to loop through all possible addresses, in case
  101. // someone has IPV6 configured (SuSE, for example...)
  102. for (int i = 0; i < possibleAddresses.length; i++) {
  103. try {
  104. rawSocket = new Socket(possibleAddresses[i], port);
  105. break;
  106. } catch (Exception ex) {
  107. caughtWhileConnecting = ex;
  108. }
  109. }
  110. if (rawSocket == null) {
  111. throw new SocketException(caughtWhileConnecting.toString());
  112. }
  113. } else {
  114. // must explicitly state this due to classloader issues
  115. // when running on older JVMs :(
  116. try {
  117. Class inetSocketAddressClass = Class.forName(
  118. "java.net.InetSocketAddress");
  119. Constructor addrConstructor = inetSocketAddressClass
  120. .getConstructor(new Class[] {
  121. String.class, Integer.TYPE
  122. });
  123. InetAddress[] possibleAddresses = InetAddress.getAllByName(this.host);
  124. Exception caughtWhileConnecting = null;
  125. // Need to loop through all possible addresses, in case
  126. // someone has IPV6 configured (SuSE, for example...)
  127. for (int i = 0; i < possibleAddresses.length; i++) {
  128. try {
  129. Object sockAddr = addrConstructor.newInstance(new Object[] {
  130. this.host, new Integer(port)
  131. });
  132. rawSocket = new Socket();
  133. connectWithTimeoutMethod.invoke(rawSocket,
  134. new Object[] { sockAddr, new Integer(connectTimeout) });
  135. break;
  136. } catch (Exception ex) {
  137. rawSocket = null;
  138. caughtWhileConnecting = ex;
  139. }
  140. }
  141. if (rawSocket == null) {
  142. throw new SocketException(caughtWhileConnecting.toString());
  143. }
  144. } catch (Throwable t) {
  145. if (!(t instanceof SocketException)) {
  146. throw new SocketException(t.toString());
  147. }
  148. throw (SocketException)t;
  149. }
  150. }
  151. try {
  152. rawSocket.setTcpNoDelay(true);
  153. } catch (Exception ex) {
  154. /* Ignore */
  155. }
  156. return rawSocket;
  157. }
  158. }
  159. throw new SocketException("Unable to create socket");
  160. }
  161. }