/src/org/kapott/hbci/comm/LoggingSocket.java

http://github.com/willuhn/hbci4java · Java · 380 lines · 293 code · 66 blank · 21 comment · 0 complexity · e532998e40f23c146c1a5136e68fa243 MD5 · raw file

  1. /* $Id: LoggingSocket.java,v 1.1 2011/05/04 22:37:51 willuhn Exp $
  2. This file is part of HBCI4Java
  3. Copyright (C) 2001-2008 Stefan Palme
  4. HBCI4Java is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. HBCI4Java is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. */
  16. package org.kapott.hbci.comm;
  17. import java.io.IOException;
  18. import java.io.InputStream;
  19. import java.io.OutputStream;
  20. import java.net.InetAddress;
  21. import java.net.Socket;
  22. import java.net.SocketAddress;
  23. import java.net.SocketException;
  24. import java.nio.channels.SocketChannel;
  25. import javax.net.ssl.HandshakeCompletedListener;
  26. import javax.net.ssl.SSLSession;
  27. import javax.net.ssl.SSLSocket;
  28. /* original idea for how to integrate "logging sockets"
  29. * by Thomas Kruse <tkruse@sforce.org> */
  30. public class LoggingSocket
  31. extends SSLSocket
  32. {
  33. private SSLSocket targetSocket;
  34. private OutputStream logger;
  35. public LoggingSocket(Socket targetSocket, OutputStream logger)
  36. {
  37. this.targetSocket = (SSLSocket)targetSocket;
  38. this.logger = logger;
  39. }
  40. public InputStream getInputStream()
  41. throws IOException
  42. {
  43. LoggingInputStream logInputStream = new LoggingInputStream(targetSocket.getInputStream(), logger);
  44. return logInputStream;
  45. }
  46. public OutputStream getOutputStream()
  47. throws IOException
  48. {
  49. LoggingOutputStream outputStream = new LoggingOutputStream(targetSocket.getOutputStream(), logger);
  50. return outputStream;
  51. }
  52. public void addHandshakeCompletedListener(HandshakeCompletedListener arg0)
  53. {
  54. targetSocket.addHandshakeCompletedListener(arg0);
  55. }
  56. public void bind(SocketAddress bindpoint)
  57. throws IOException
  58. {
  59. targetSocket.bind(bindpoint);
  60. }
  61. public void close()
  62. throws IOException
  63. {
  64. targetSocket.close();
  65. }
  66. public void connect(SocketAddress endpoint, int timeout)
  67. throws IOException
  68. {
  69. targetSocket.connect(endpoint, timeout);
  70. }
  71. public void connect(SocketAddress endpoint)
  72. throws IOException
  73. {
  74. targetSocket.connect(endpoint);
  75. }
  76. public boolean equals(Object obj)
  77. {
  78. return targetSocket.equals(obj);
  79. }
  80. public SocketChannel getChannel()
  81. {
  82. return targetSocket.getChannel();
  83. }
  84. public String[] getEnabledCipherSuites()
  85. {
  86. return targetSocket.getEnabledCipherSuites();
  87. }
  88. public String[] getEnabledProtocols()
  89. {
  90. return targetSocket.getEnabledProtocols();
  91. }
  92. public boolean getEnableSessionCreation()
  93. {
  94. return targetSocket.getEnableSessionCreation();
  95. }
  96. public InetAddress getInetAddress()
  97. {
  98. return targetSocket.getInetAddress();
  99. }
  100. public boolean getKeepAlive()
  101. throws SocketException
  102. {
  103. return targetSocket.getKeepAlive();
  104. }
  105. public InetAddress getLocalAddress()
  106. {
  107. return targetSocket.getLocalAddress();
  108. }
  109. public int getLocalPort()
  110. {
  111. return targetSocket.getLocalPort();
  112. }
  113. public SocketAddress getLocalSocketAddress()
  114. {
  115. return targetSocket.getLocalSocketAddress();
  116. }
  117. public boolean getNeedClientAuth()
  118. {
  119. return targetSocket.getNeedClientAuth();
  120. }
  121. public boolean getOOBInline()
  122. throws SocketException
  123. {
  124. return targetSocket.getOOBInline();
  125. }
  126. public int getPort()
  127. {
  128. return targetSocket.getPort();
  129. }
  130. public int getReceiveBufferSize()
  131. throws SocketException
  132. {
  133. return targetSocket.getReceiveBufferSize();
  134. }
  135. public SocketAddress getRemoteSocketAddress()
  136. {
  137. return targetSocket.getRemoteSocketAddress();
  138. }
  139. public boolean getReuseAddress()
  140. throws SocketException
  141. {
  142. return targetSocket.getReuseAddress();
  143. }
  144. public int getSendBufferSize()
  145. throws SocketException
  146. {
  147. return targetSocket.getSendBufferSize();
  148. }
  149. public SSLSession getSession()
  150. {
  151. return targetSocket.getSession();
  152. }
  153. public int getSoLinger()
  154. throws SocketException
  155. {
  156. return targetSocket.getSoLinger();
  157. }
  158. public int getSoTimeout()
  159. throws SocketException
  160. {
  161. return targetSocket.getSoTimeout();
  162. }
  163. public String[] getSupportedCipherSuites()
  164. {
  165. return targetSocket.getSupportedCipherSuites();
  166. }
  167. public String[] getSupportedProtocols()
  168. {
  169. return targetSocket.getSupportedProtocols();
  170. }
  171. public boolean getTcpNoDelay()
  172. throws SocketException
  173. {
  174. return targetSocket.getTcpNoDelay();
  175. }
  176. public int getTrafficClass()
  177. throws SocketException
  178. {
  179. return targetSocket.getTrafficClass();
  180. }
  181. public boolean getUseClientMode()
  182. {
  183. return targetSocket.getUseClientMode();
  184. }
  185. public boolean getWantClientAuth()
  186. {
  187. return targetSocket.getWantClientAuth();
  188. }
  189. public int hashCode()
  190. {
  191. return targetSocket.hashCode();
  192. }
  193. public boolean isBound()
  194. {
  195. return targetSocket.isBound();
  196. }
  197. public boolean isClosed()
  198. {
  199. return targetSocket.isClosed();
  200. }
  201. public boolean isConnected()
  202. {
  203. return targetSocket.isConnected();
  204. }
  205. public boolean isInputShutdown()
  206. {
  207. return targetSocket.isInputShutdown();
  208. }
  209. public boolean isOutputShutdown()
  210. {
  211. return targetSocket.isOutputShutdown();
  212. }
  213. public void removeHandshakeCompletedListener(HandshakeCompletedListener arg0)
  214. {
  215. targetSocket.removeHandshakeCompletedListener(arg0);
  216. }
  217. public void sendUrgentData(int data)
  218. throws IOException
  219. {
  220. targetSocket.sendUrgentData(data);
  221. }
  222. public void setEnabledCipherSuites(String[] arg0)
  223. {
  224. targetSocket.setEnabledCipherSuites(arg0);
  225. }
  226. public void setEnabledProtocols(String[] arg0)
  227. {
  228. targetSocket.setEnabledProtocols(arg0);
  229. }
  230. public void setEnableSessionCreation(boolean arg0)
  231. {
  232. targetSocket.setEnableSessionCreation(arg0);
  233. }
  234. public void setKeepAlive(boolean on)
  235. throws SocketException
  236. {
  237. targetSocket.setKeepAlive(on);
  238. }
  239. public void setNeedClientAuth(boolean arg0)
  240. {
  241. targetSocket.setNeedClientAuth(arg0);
  242. }
  243. public void setOOBInline(boolean on)
  244. throws SocketException
  245. {
  246. targetSocket.setOOBInline(on);
  247. }
  248. public void setReceiveBufferSize(int size)
  249. throws SocketException
  250. {
  251. targetSocket.setReceiveBufferSize(size);
  252. }
  253. public void setReuseAddress(boolean on)
  254. throws SocketException
  255. {
  256. targetSocket.setReuseAddress(on);
  257. }
  258. public void setSendBufferSize(int size)
  259. throws SocketException
  260. {
  261. targetSocket.setSendBufferSize(size);
  262. }
  263. public void setSoLinger(boolean on, int linger)
  264. throws SocketException
  265. {
  266. targetSocket.setSoLinger(on, linger);
  267. }
  268. public void setSoTimeout(int timeout)
  269. throws SocketException
  270. {
  271. targetSocket.setSoTimeout(timeout);
  272. }
  273. public void setTcpNoDelay(boolean on)
  274. throws SocketException
  275. {
  276. targetSocket.setTcpNoDelay(on);
  277. }
  278. public void setTrafficClass(int tc)
  279. throws SocketException
  280. {
  281. targetSocket.setTrafficClass(tc);
  282. }
  283. public void setUseClientMode(boolean arg0)
  284. {
  285. targetSocket.setUseClientMode(arg0);
  286. }
  287. public void setWantClientAuth(boolean arg0)
  288. {
  289. targetSocket.setWantClientAuth(arg0);
  290. }
  291. public void shutdownInput()
  292. throws IOException
  293. {
  294. targetSocket.shutdownInput();
  295. }
  296. public void shutdownOutput()
  297. throws IOException
  298. {
  299. targetSocket.shutdownOutput();
  300. }
  301. public void startHandshake()
  302. throws IOException
  303. {
  304. targetSocket.startHandshake();
  305. }
  306. public String toString()
  307. {
  308. return targetSocket.toString();
  309. }
  310. }