/Taiyaki-client/src/com/jpeterson/x10server/X10ServerSocketObjectPool.java

http://taiyaki.googlecode.com/ · Java · 196 lines · 101 code · 17 blank · 78 comment · 16 complexity · 73989e6878d4b3fbfc82721b76ea85a8 MD5 · raw file

  1. /*
  2. * Copyright (C) 1999 Jesse E. Peterson
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  17. *
  18. */
  19. package com.jpeterson.x10server;
  20. import java.io.BufferedInputStream;
  21. import java.io.IOException;
  22. import java.io.InputStream;
  23. import java.io.OutputStream;
  24. import java.net.InetAddress;
  25. import java.net.Socket;
  26. import java.net.UnknownHostException;
  27. import org.apache.commons.logging.Log;
  28. import org.apache.commons.logging.LogFactory;
  29. import com.jpeterson.pool.SocketObjectPool;
  30. import com.jpeterson.x10client.X10ServerClient;
  31. /**
  32. * A pool of <CODE>Socket</CODE>'s for <CODE>X10Server</CODE>'s
  33. *
  34. * @author Jesse Peterson (jesse@jpeterson.com)
  35. * @author Sylvain Maucourt (smaucourt@gmail.com)
  36. */
  37. public class X10ServerSocketObjectPool extends SocketObjectPool {
  38. private Log logger = LogFactory.getLog(X10ServerSocketObjectPool.class);
  39. /**
  40. * Create an object pool of <CODE>Socket</CODE>'s for the specified hostname
  41. * and port. Expiration is set to the default value.
  42. *
  43. * @param hostname
  44. * Host name or IP address for sockets in the pool.
  45. * @param port
  46. * Port for sockets in the pool.
  47. */
  48. public X10ServerSocketObjectPool(String hostname, int port)
  49. throws UnknownHostException {
  50. this(InetAddress.getByName(hostname), port, DEFAULT_EXPIRATION);
  51. }
  52. /**
  53. * Create an object pool of <CODE>Socket</CODE>'s for the specified hostname
  54. * and port with the specified expiration.
  55. *
  56. * @param hostname
  57. * Host name or IP address for sockets in the pool.
  58. * @param port
  59. * Port for sockets in the pool.
  60. * @param expiration
  61. * Expiration in milliseconds for sockets in the pool.
  62. */
  63. public X10ServerSocketObjectPool(String hostname, int port, long expiration)
  64. throws UnknownHostException {
  65. this(InetAddress.getByName(hostname), port, expiration);
  66. }
  67. /**
  68. * Create an object pool of <CODE>Socket</CODE>'s for the specified address
  69. * and port. Expiration is set to the default value.
  70. *
  71. * @param address
  72. * Address for sockets in the pool.
  73. * @param port
  74. * Port for sockets in the pool.
  75. */
  76. public X10ServerSocketObjectPool(InetAddress address, int port) {
  77. this(address, port, DEFAULT_EXPIRATION);
  78. }
  79. /**
  80. * Create an object pool of <CODE>Socket</CODE>'s for the specified address
  81. * and port with the specified expiration.
  82. *
  83. * @param address
  84. * Address for sockets in the pool.
  85. * @param port
  86. * Port for sockets in the pool.
  87. * @param expiration
  88. * Expiration in milliseconds for sockets in the pool.
  89. */
  90. public X10ServerSocketObjectPool(InetAddress address, int port,
  91. long expiration) {
  92. super(address, port, expiration);
  93. }
  94. /**
  95. * Create a new instance of a <CODE>Socket</CODE>.
  96. *
  97. * @return A new instance of a <CODE>Socket</CODE> or <CODE>null</CODE> if
  98. * unable to create one.
  99. */
  100. protected Object create() {
  101. BufferedInputStream x10rsp;
  102. Socket socket = (Socket) super.create();
  103. byte[] bytes = new byte[80];
  104. int count;
  105. StringBuffer buf = new StringBuffer();
  106. if (logger.isDebugEnabled()) {
  107. logger.debug("Creating new X10Server connection.");
  108. }
  109. try {
  110. if (socket != null) {
  111. // ensure connection is good. Wait for prompt
  112. x10rsp = new BufferedInputStream(socket.getInputStream());
  113. do {
  114. count = x10rsp.read(bytes);
  115. if (count < 0) {
  116. // end of connection
  117. socket = null;
  118. }
  119. if (count > 0) {
  120. buf.append(new String(bytes, 0, count));
  121. }
  122. } while ((buf.toString()).indexOf(X10ServerClient.PROMPT) == -1);
  123. }
  124. } catch (IOException e) {
  125. try {
  126. if (socket != null) {
  127. socket.close();
  128. }
  129. } catch (IOException ex) {
  130. } finally {
  131. socket = null;
  132. }
  133. }
  134. return (socket);
  135. }
  136. /**
  137. * Make sure that the X10Server is still there.
  138. *
  139. * @return Always returns <CODE>true</CODE>.
  140. */
  141. protected boolean validate(Object o) {
  142. Socket socket;
  143. StringBuffer buf;
  144. int count;
  145. if (o instanceof Socket) {
  146. String command = "\n";
  147. byte[] bytes = command.getBytes();
  148. socket = (Socket) o;
  149. try {
  150. buf = new StringBuffer();
  151. OutputStream out = socket.getOutputStream();
  152. out.write(bytes);
  153. out.flush();
  154. InputStream in = socket.getInputStream();
  155. bytes = new byte[20];
  156. do {
  157. if (in.available() == 0) {
  158. try {
  159. Thread.sleep(100);
  160. } catch (InterruptedException e) {
  161. }
  162. }
  163. count = in.read(bytes);
  164. if (count < 0) {
  165. // end of stream
  166. return (false);
  167. }
  168. if (count > 0) {
  169. buf.append(new String(bytes, 0, count));
  170. }
  171. } while ((buf.toString()).indexOf("\n>") == -1);
  172. return (true);
  173. } catch (IOException e) {
  174. return (false);
  175. }
  176. }
  177. return (false);
  178. }
  179. }