/core/ri/src/main/java/org/jredis/ri/alphazero/connection/DefaultConnectionSpec.java

http://github.com/alphazero/jredis · Java · 233 lines · 107 code · 17 blank · 109 comment · 0 complexity · da5fa2b1f482883df6f4cac7e7c63165 MD5 · raw file

  1. package org.jredis.ri.alphazero.connection;
  2. import static org.jredis.connector.Connection.Flag.CONNECT_IMMEDIATELY;
  3. import static org.jredis.connector.Connection.Flag.PIPELINE;
  4. import static org.jredis.connector.Connection.Flag.RELIABLE;
  5. import static org.jredis.connector.Connection.Flag.SHARED;
  6. import static org.jredis.connector.Connection.Socket.Property.SO_PREF_BANDWIDTH;
  7. import static org.jredis.connector.Connection.Socket.Property.SO_PREF_CONN_TIME;
  8. import static org.jredis.connector.Connection.Socket.Property.SO_PREF_LATENCY;
  9. import static org.jredis.connector.Connection.Socket.Property.SO_RCVBUF;
  10. import static org.jredis.connector.Connection.Socket.Property.SO_SNDBUF;
  11. import static org.jredis.connector.Connection.Socket.Property.SO_TIMEOUT;
  12. import java.net.InetAddress;
  13. import java.net.UnknownHostException;
  14. import org.jredis.ClientRuntimeException;
  15. import org.jredis.connector.Connection;
  16. import org.jredis.connector.ConnectionSpec;
  17. import org.jredis.connector.Connection.Flag;
  18. import org.jredis.connector.Connection.Modality;
  19. import org.jredis.ri.alphazero.protocol.DefaultProtocolFactory;
  20. import org.jredis.ri.alphazero.support.Assert;
  21. /**
  22. * Default connection spec provides the following default values for a connection. See
  23. * {@link ConnectionSpec} for details of these properties and flags.
  24. * <p>
  25. * The default {@link Modality} for the {@link Connection} is {@link Modality#Synchronous}.
  26. * <p>
  27. * This {@link ConnectionSpec} is configured to prefer bandwidth and relatively large (48K)
  28. * buffers (which is probably less than your OS's default buffer sizes anyway, but you never know).
  29. * <p>
  30. * Connection Retry limit is {@link DefaultConnectionSpec#DEFAULT_RECONNECT_CNT}.
  31. * <p>
  32. * Connection is spec'd for Keep Alive.
  33. * <p>
  34. * Socket timeout is {@link DefaultConnectionSpec#DEFAULT_READ_TIMEOUT_MSEC}
  35. * <p>
  36. * No codecs and/or compression classes are defined.
  37. *
  38. * @author Joubin Houshyar (alphazero@sensesay.net)
  39. * @version alpha.0, Apr 20, 2009
  40. * @since alpha.0
  41. *
  42. */
  43. final public class DefaultConnectionSpec extends ConnectionSpec.RefImpl {
  44. // ------------------------------------------------------------------------
  45. // Consts
  46. // ------------------------------------------------------------------------
  47. static final int DEFAULT_REDIS_PORT = 6379;
  48. static final String DEFAULT_REDIS_HOST_NAME = "localhost";
  49. static final int DEFAULT_REDIS_DB = 0;
  50. static final byte[] DEFAULT_REDIS_PASSWORD = null;
  51. /** def value: <code>48KB</code> */
  52. private static final int DEFAULT_RCV_BUFF_SIZE = 1024 * 48;
  53. /** def value: <code>48KB</code> */
  54. private static final int DEFAULT_SND_BUFF_SIZE = 1024 * 48;
  55. /** def value: <code>5000 msecs</code> */
  56. static final int DEFAULT_READ_TIMEOUT_MSEC = 5000;
  57. /** def value: <code>1</code> sec. (min timeout in redis conf */
  58. static final int DEFAULT_HEARTBEAT_SEC = 1;
  59. /** def value: <code>0</code> e.g. higher priority pref is bandwidth */
  60. private static final int DEFAULT_SO_PREF_BANDWIDTH = 0;
  61. /** def value: <code>1</code> e.g. second priority pref is latency */
  62. private static final int DEFAULT_SO_PREF_LATENCY = 1;
  63. /** def value: <code>3</code> e.g. third priority pref is connection time */
  64. private static final int DEFAULT_SO_PREF_CONN_TIME = 2;
  65. /** def value: <code>true</code> */
  66. private static final boolean DEFAULT_CF_SHARED = true;
  67. /** def value: <code>false</code> */
  68. private static final boolean DEFAULT_CF_RELIABLE = false;
  69. /** def value: <code>false</code> */
  70. private static final boolean DEFAULT_CF_PIPELINE = false;
  71. /** def value: <code>true</code> */
  72. private static final boolean DEFAULT_CF_CONNECT_IMMEDIATELY = true;
  73. /** def value: <code>true</code> */
  74. private static final boolean DEFAULT_CF_STATEFUL = false;
  75. /** def value: <code>Modality.Synchronous</code> */
  76. private static final Modality DEFAULT_CP_CONN_MODALITY = Modality.Synchronous;
  77. /** def value: <code>3</code> */
  78. private static final int DEFAULT_CP_MAX_CONNECT_ATTEMPT = 3;
  79. // ------------------------------------------------------------------------
  80. // Constructors
  81. // ------------------------------------------------------------------------
  82. /**
  83. * Instantiates a default connection spec for the given host and port.
  84. * @param address
  85. * @param port
  86. * @throws ClientRuntimeException for invalid port, or null address values
  87. */
  88. public DefaultConnectionSpec () throws ClientRuntimeException {
  89. // Log.debug("Yo!");
  90. setDefaultValues();
  91. }
  92. /**
  93. * Instantiates a default connection spec for the given host and port.
  94. * @param address
  95. * @param port
  96. * @throws ClientRuntimeException for invalid port, or null address values
  97. */
  98. @Deprecated
  99. public DefaultConnectionSpec (InetAddress address, int port) throws ClientRuntimeException {
  100. this (address, port, 0, null);
  101. }
  102. /**
  103. * Instantiates a default connection spec for the given host and port.
  104. * @param address
  105. * @param port
  106. * @param database
  107. * @param credentials
  108. * @throws ClientRuntimeException for invalid port, or null address values
  109. */
  110. @Deprecated
  111. public DefaultConnectionSpec (InetAddress address, int port, int database, byte[] credentials) throws ClientRuntimeException {
  112. this();
  113. setPort(Assert.inRange (port, 1, 65534, "port init parameter for DefaultConnectionSpec", ClientRuntimeException.class));
  114. setAddress(Assert.notNull(address, "address init parameter for DefaultConnectionSpec", ClientRuntimeException.class));
  115. setDatabase(database);
  116. setCredentials(credentials);
  117. }
  118. /**
  119. * Set the default values for the {@link ConnectionSpec}
  120. * other properties.
  121. * @see ConnectionSpec
  122. * @see Connection.Property
  123. * @see Connection.Property
  124. * @see Connection.Flag
  125. * @see Connection.Socket.Flag
  126. * @see Connection.Socket.Property
  127. * @see DefaultConnectionFactory
  128. * @see DefaultProtocolFactory
  129. */
  130. private void setDefaultValues () {
  131. // // reconnect try count
  132. // setReconnectCnt(DEFAULT_CP_MAX_CONNECT_ATTEMPT);
  133. // tcp socket flags
  134. setSocketFlag(Connection.Socket.Flag.SO_KEEP_ALIVE, true);
  135. // tcp socket flags
  136. setSocketProperty(SO_TIMEOUT, DEFAULT_READ_TIMEOUT_MSEC);
  137. setSocketProperty(SO_RCVBUF, DEFAULT_RCV_BUFF_SIZE);
  138. setSocketProperty(SO_SNDBUF, DEFAULT_SND_BUFF_SIZE);
  139. setSocketProperty(SO_PREF_BANDWIDTH, DEFAULT_SO_PREF_BANDWIDTH);
  140. setSocketProperty(SO_PREF_CONN_TIME, DEFAULT_SO_PREF_CONN_TIME);
  141. setSocketProperty(SO_PREF_LATENCY, DEFAULT_SO_PREF_LATENCY);
  142. setConnectionFlag(RELIABLE, DEFAULT_CF_RELIABLE);
  143. setConnectionFlag(SHARED, DEFAULT_CF_SHARED);
  144. setConnectionFlag(PIPELINE, DEFAULT_CF_PIPELINE);
  145. setConnectionFlag(CONNECT_IMMEDIATELY, DEFAULT_CF_CONNECT_IMMEDIATELY);
  146. setConnectionFlag(Flag.STATEFUL, DEFAULT_CF_STATEFUL);
  147. setConnectionProperty(Connection.Property.MODALITY, DEFAULT_CP_CONN_MODALITY);
  148. setConnectionProperty(Connection.Property.MAX_CONNECT_ATTEMPT, DEFAULT_CP_MAX_CONNECT_ATTEMPT);
  149. setConnectionProperty(Connection.Property.PROTOCOL_FACTORY, new DefaultProtocolFactory());
  150. setConnectionProperty(Connection.Property.CONNECTION_FACTORY, new DefaultConnectionFactory());
  151. setHeartbeat(DEFAULT_HEARTBEAT_SEC);
  152. }
  153. // ------------------------------------------------------------------------
  154. // Static methods
  155. // ------------------------------------------------------------------------
  156. /**
  157. * @return
  158. * @throws ClientRuntimeException
  159. */
  160. public static final ConnectionSpec newSpec ()
  161. throws ClientRuntimeException
  162. {
  163. return newSpec (DEFAULT_REDIS_HOST_NAME, DEFAULT_REDIS_PORT, DEFAULT_REDIS_DB, DEFAULT_REDIS_PASSWORD);
  164. }
  165. /**
  166. * Returns an instance of the {@link ConnectionSpec} used by this {@link Connection}
  167. * as default spec, for the provided params.
  168. * @param host
  169. * @param port
  170. * @param database
  171. * @param credentials
  172. * @param redisversion
  173. * @return
  174. * @throws ClientRuntimeException
  175. */
  176. public static final ConnectionSpec newSpec (
  177. String host,
  178. int port,
  179. int database,
  180. byte[] credentials
  181. )
  182. throws ClientRuntimeException
  183. {
  184. InetAddress address;
  185. try {
  186. address = InetAddress.getByName(host);
  187. }
  188. catch (UnknownHostException e) {
  189. throw new ClientRuntimeException("unknown host: " + host, e);
  190. }
  191. return newSpec(address, port, database, credentials);
  192. }
  193. /**
  194. * Returns an instance of the {@link ConnectionSpec} used by this {@link Connection}
  195. * as default spec, for the provided params.
  196. * @param address
  197. * @param port
  198. * @param database
  199. * @param credentials
  200. * @param redisversion
  201. * @return
  202. * @throws ClientRuntimeException
  203. */
  204. public static final ConnectionSpec newSpec (
  205. InetAddress address,
  206. int port,
  207. int database,
  208. byte[] credentials
  209. )
  210. throws ClientRuntimeException
  211. {
  212. // return new DefaultConnectionSpec(address, port, database, credentials);
  213. ConnectionSpec spec = new DefaultConnectionSpec();
  214. return spec.setAddress(address).setPort(port).setDatabase(database).setCredentials(credentials);
  215. }
  216. }