/core/src/main/java/hudson/util/NoClientBindProtocolSocketFactory.java

http://github.com/kohsuke/hudson · Java · 126 lines · 51 code · 9 blank · 66 comment · 7 complexity · 7d116d5ccc70e89bc88e94290f5f9cd5 MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2009-2010, Sun Microsystems, Inc., CloudBees, Inc.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package hudson.util;
  25. import java.io.IOException;
  26. import java.net.InetAddress;
  27. import java.net.InetSocketAddress;
  28. import java.net.Socket;
  29. import java.net.UnknownHostException;
  30. import org.apache.commons.httpclient.ConnectTimeoutException;
  31. import org.apache.commons.httpclient.params.HttpConnectionParams;
  32. import org.apache.commons.httpclient.protocol.ProtocolSocketFactory;
  33. /**
  34. * A SecureProtocolSocketFactory that creates sockets without binding to a specific interface.
  35. * Based on org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory
  36. *
  37. */
  38. public class NoClientBindProtocolSocketFactory implements ProtocolSocketFactory {
  39. public NoClientBindProtocolSocketFactory() {
  40. }
  41. public Socket createSocket(String host,
  42. int port,
  43. InetAddress localAddress,
  44. int localPort) throws IOException, UnknownHostException {
  45. // ignore the local address/port for binding
  46. return createSocket(host, port);
  47. }
  48. /**
  49. * Attempts to get a new socket connection to the given host within the given time limit.
  50. * <p>
  51. * This method employs several techniques to circumvent the limitations of older JREs that
  52. * do not support connect timeout. When running in JRE 1.4 or above reflection is used to
  53. * call Socket#connect(SocketAddress endpoint, int timeout) method. When executing in older
  54. * JREs a controller thread is executed. The controller thread attempts to create a new socket
  55. * within the given limit of time. If socket constructor does not return until the timeout
  56. * expires, the controller terminates and throws an {@link ConnectTimeoutException}
  57. * </p>
  58. *
  59. * @param host the host name/IP
  60. * @param port the port on the host
  61. * @param localAddress the local host name/IP to bind the socket to, ignored
  62. * @param localPort the port on the local machine, ignored
  63. * @param params {@link HttpConnectionParams Http connection parameters}
  64. *
  65. * @return Socket a new socket
  66. *
  67. * @throws IOException if an I/O error occurs while creating the socket
  68. * @throws UnknownHostException if the IP address of the host cannot be
  69. * determined
  70. * @throws ConnectTimeoutException if socket cannot be connected within the
  71. * given time limit
  72. *
  73. * @since 3.0
  74. */
  75. public Socket createSocket(String host, int port, InetAddress localAddress,
  76. int localPort, HttpConnectionParams params) throws IOException,
  77. UnknownHostException, ConnectTimeoutException {
  78. if (params == null) {
  79. throw new IllegalArgumentException("Parameters may not be null");
  80. }
  81. int timeout = params.getConnectionTimeout();
  82. if (timeout == 0) {
  83. // ignore the local address/port for binding
  84. return createSocket(host, port);
  85. } else {
  86. Socket s=new Socket();
  87. s.connect(new InetSocketAddress(host,port),timeout);
  88. return s;
  89. }
  90. }
  91. /**
  92. * @see ProtocolSocketFactory#createSocket(java.lang.String,int)
  93. */
  94. public Socket createSocket(String host, int port) throws IOException,
  95. UnknownHostException,IOException {
  96. Socket socket = null;
  97. try {
  98. socket = new Socket(host, port);
  99. }
  100. catch (IOException e) {
  101. throw e;
  102. }
  103. return socket;
  104. }
  105. /**
  106. * All instances are the same.
  107. */
  108. public boolean equals(Object obj) {
  109. return ((obj != null) && obj.getClass().equals(NoClientBindProtocolSocketFactory.class));
  110. }
  111. /**
  112. * All instances have the same hash code.
  113. */
  114. public int hashCode() {
  115. return NoClientBindProtocolSocketFactory.class.hashCode();
  116. }
  117. }