/jetty-8.1.5.v20120716/jetty-io/src/main/java/org/eclipse/jetty/io/bio/SocketEndPoint.java

# · Java · 281 lines · 171 code · 33 blank · 77 comment · 27 complexity · 654167cc6291ffdffcab5894e5f48084 MD5 · raw file

  1. // ========================================================================
  2. // Copyright (c) 2004-2010 Mort Bay Consulting Pty. Ltd.
  3. // ------------------------------------------------------------------------
  4. // All rights reserved. This program and the accompanying materials
  5. // are made available under the terms of the Eclipse Public License v1.0
  6. // and Apache License v2.0 which accompanies this distribution.
  7. // The Eclipse Public License is available at
  8. // http://www.eclipse.org/legal/epl-v10.html
  9. // The Apache License v2.0 is available at
  10. // http://www.opensource.org/licenses/apache2.0.php
  11. // You may elect to redistribute this code under either of these licenses.
  12. // ========================================================================
  13. package org.eclipse.jetty.io.bio;
  14. import java.io.IOException;
  15. import java.net.InetAddress;
  16. import java.net.InetSocketAddress;
  17. import java.net.Socket;
  18. import javax.net.ssl.SSLSocket;
  19. import org.eclipse.jetty.util.StringUtil;
  20. import org.eclipse.jetty.util.log.Log;
  21. import org.eclipse.jetty.util.log.Logger;
  22. public class SocketEndPoint extends StreamEndPoint
  23. {
  24. private static final Logger LOG = Log.getLogger(SocketEndPoint.class);
  25. final Socket _socket;
  26. final InetSocketAddress _local;
  27. final InetSocketAddress _remote;
  28. /* ------------------------------------------------------------ */
  29. /**
  30. *
  31. */
  32. public SocketEndPoint(Socket socket)
  33. throws IOException
  34. {
  35. super(socket.getInputStream(),socket.getOutputStream());
  36. _socket=socket;
  37. _local=(InetSocketAddress)_socket.getLocalSocketAddress();
  38. _remote=(InetSocketAddress)_socket.getRemoteSocketAddress();
  39. super.setMaxIdleTime(_socket.getSoTimeout());
  40. }
  41. /* ------------------------------------------------------------ */
  42. /**
  43. *
  44. */
  45. protected SocketEndPoint(Socket socket, int maxIdleTime)
  46. throws IOException
  47. {
  48. super(socket.getInputStream(),socket.getOutputStream());
  49. _socket=socket;
  50. _local=(InetSocketAddress)_socket.getLocalSocketAddress();
  51. _remote=(InetSocketAddress)_socket.getRemoteSocketAddress();
  52. _socket.setSoTimeout(maxIdleTime>0?maxIdleTime:0);
  53. super.setMaxIdleTime(maxIdleTime);
  54. }
  55. /* ------------------------------------------------------------ */
  56. /* (non-Javadoc)
  57. * @see org.eclipse.io.BufferIO#isClosed()
  58. */
  59. @Override
  60. public boolean isOpen()
  61. {
  62. return super.isOpen() && _socket!=null && !_socket.isClosed();
  63. }
  64. /* ------------------------------------------------------------ */
  65. @Override
  66. public boolean isInputShutdown()
  67. {
  68. if (_socket instanceof SSLSocket)
  69. return super.isInputShutdown();
  70. return _socket.isClosed() || _socket.isInputShutdown();
  71. }
  72. /* ------------------------------------------------------------ */
  73. @Override
  74. public boolean isOutputShutdown()
  75. {
  76. if (_socket instanceof SSLSocket)
  77. return super.isOutputShutdown();
  78. return _socket.isClosed() || _socket.isOutputShutdown();
  79. }
  80. /* ------------------------------------------------------------ */
  81. /*
  82. */
  83. protected final void shutdownSocketOutput() throws IOException
  84. {
  85. if (!_socket.isClosed())
  86. {
  87. if (!_socket.isOutputShutdown())
  88. _socket.shutdownOutput();
  89. if (_socket.isInputShutdown())
  90. _socket.close();
  91. }
  92. }
  93. /* ------------------------------------------------------------ */
  94. /*
  95. * @see org.eclipse.jetty.io.bio.StreamEndPoint#shutdownOutput()
  96. */
  97. @Override
  98. public void shutdownOutput() throws IOException
  99. {
  100. if (_socket instanceof SSLSocket)
  101. super.shutdownOutput();
  102. else
  103. shutdownSocketOutput();
  104. }
  105. /* ------------------------------------------------------------ */
  106. /*
  107. */
  108. public void shutdownSocketInput() throws IOException
  109. {
  110. if (!_socket.isClosed())
  111. {
  112. if (!_socket.isInputShutdown())
  113. _socket.shutdownInput();
  114. if (_socket.isOutputShutdown())
  115. _socket.close();
  116. }
  117. }
  118. /* ------------------------------------------------------------ */
  119. /*
  120. * @see org.eclipse.jetty.io.bio.StreamEndPoint#shutdownOutput()
  121. */
  122. @Override
  123. public void shutdownInput() throws IOException
  124. {
  125. if (_socket instanceof SSLSocket)
  126. super.shutdownInput();
  127. else
  128. shutdownSocketInput();
  129. }
  130. /* ------------------------------------------------------------ */
  131. /* (non-Javadoc)
  132. * @see org.eclipse.io.BufferIO#close()
  133. */
  134. @Override
  135. public void close() throws IOException
  136. {
  137. _socket.close();
  138. _in=null;
  139. _out=null;
  140. }
  141. /* ------------------------------------------------------------ */
  142. /*
  143. * @see org.eclipse.io.EndPoint#getLocalAddr()
  144. */
  145. @Override
  146. public String getLocalAddr()
  147. {
  148. if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress())
  149. return StringUtil.ALL_INTERFACES;
  150. return _local.getAddress().getHostAddress();
  151. }
  152. /* ------------------------------------------------------------ */
  153. /*
  154. * @see org.eclipse.io.EndPoint#getLocalHost()
  155. */
  156. @Override
  157. public String getLocalHost()
  158. {
  159. if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress())
  160. return StringUtil.ALL_INTERFACES;
  161. return _local.getAddress().getCanonicalHostName();
  162. }
  163. /* ------------------------------------------------------------ */
  164. /*
  165. * @see org.eclipse.io.EndPoint#getLocalPort()
  166. */
  167. @Override
  168. public int getLocalPort()
  169. {
  170. if (_local==null)
  171. return -1;
  172. return _local.getPort();
  173. }
  174. /* ------------------------------------------------------------ */
  175. /*
  176. * @see org.eclipse.io.EndPoint#getRemoteAddr()
  177. */
  178. @Override
  179. public String getRemoteAddr()
  180. {
  181. if (_remote==null)
  182. return null;
  183. InetAddress addr = _remote.getAddress();
  184. return ( addr == null ? null : addr.getHostAddress() );
  185. }
  186. /* ------------------------------------------------------------ */
  187. /*
  188. * @see org.eclipse.io.EndPoint#getRemoteHost()
  189. */
  190. @Override
  191. public String getRemoteHost()
  192. {
  193. if (_remote==null)
  194. return null;
  195. return _remote.getAddress().getCanonicalHostName();
  196. }
  197. /* ------------------------------------------------------------ */
  198. /*
  199. * @see org.eclipse.io.EndPoint#getRemotePort()
  200. */
  201. @Override
  202. public int getRemotePort()
  203. {
  204. if (_remote==null)
  205. return -1;
  206. return _remote.getPort();
  207. }
  208. /* ------------------------------------------------------------ */
  209. /*
  210. * @see org.eclipse.io.EndPoint#getConnection()
  211. */
  212. @Override
  213. public Object getTransport()
  214. {
  215. return _socket;
  216. }
  217. /* ------------------------------------------------------------ */
  218. /**
  219. * @see org.eclipse.jetty.io.bio.StreamEndPoint#setMaxIdleTime(int)
  220. */
  221. @Override
  222. public void setMaxIdleTime(int timeMs) throws IOException
  223. {
  224. if (timeMs!=getMaxIdleTime())
  225. _socket.setSoTimeout(timeMs>0?timeMs:0);
  226. super.setMaxIdleTime(timeMs);
  227. }
  228. /* ------------------------------------------------------------ */
  229. @Override
  230. protected void idleExpired() throws IOException
  231. {
  232. try
  233. {
  234. if (!isInputShutdown())
  235. shutdownInput();
  236. }
  237. catch(IOException e)
  238. {
  239. LOG.ignore(e);
  240. _socket.close();
  241. }
  242. }
  243. @Override
  244. public String toString()
  245. {
  246. return _local + " <--> " + _remote;
  247. }
  248. }