/external/httpclientandroidlib/httpclientandroidlib/src/ch/boye/httpclientandroidlib/impl/conn/CPoolProxy.java

http://github.com/mozilla-services/android-sync · Java · 245 lines · 176 code · 40 blank · 29 comment · 25 complexity · 64050e4586be912a45000d2f98e6031e MD5 · raw file

  1. /*
  2. * ====================================================================
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. * ====================================================================
  20. *
  21. * This software consists of voluntary contributions made by many
  22. * individuals on behalf of the Apache Software Foundation. For more
  23. * information on the Apache Software Foundation, please see
  24. * <http://www.apache.org/>.
  25. *
  26. */
  27. package ch.boye.httpclientandroidlib.impl.conn;
  28. import java.io.IOException;
  29. import java.net.InetAddress;
  30. import java.net.Socket;
  31. import javax.net.ssl.SSLSession;
  32. import ch.boye.httpclientandroidlib.HttpClientConnection;
  33. import ch.boye.httpclientandroidlib.HttpConnectionMetrics;
  34. import ch.boye.httpclientandroidlib.HttpEntityEnclosingRequest;
  35. import ch.boye.httpclientandroidlib.HttpException;
  36. import ch.boye.httpclientandroidlib.HttpRequest;
  37. import ch.boye.httpclientandroidlib.HttpResponse;
  38. import ch.boye.httpclientandroidlib.annotation.NotThreadSafe;
  39. import ch.boye.httpclientandroidlib.conn.ManagedHttpClientConnection;
  40. import ch.boye.httpclientandroidlib.protocol.HttpContext;
  41. /**
  42. * @since 4.3
  43. */
  44. @NotThreadSafe
  45. class CPoolProxy implements ManagedHttpClientConnection, HttpContext {
  46. private volatile CPoolEntry poolEntry;
  47. CPoolProxy(final CPoolEntry entry) {
  48. super();
  49. this.poolEntry = entry;
  50. }
  51. CPoolEntry getPoolEntry() {
  52. return this.poolEntry;
  53. }
  54. CPoolEntry detach() {
  55. final CPoolEntry local = this.poolEntry;
  56. this.poolEntry = null;
  57. return local;
  58. }
  59. ManagedHttpClientConnection getConnection() {
  60. final CPoolEntry local = this.poolEntry;
  61. if (local == null) {
  62. return null;
  63. }
  64. return local.getConnection();
  65. }
  66. ManagedHttpClientConnection getValidConnection() {
  67. final ManagedHttpClientConnection conn = getConnection();
  68. if (conn == null) {
  69. throw new ConnectionShutdownException();
  70. }
  71. return conn;
  72. }
  73. public void close() throws IOException {
  74. final CPoolEntry local = this.poolEntry;
  75. if (local != null) {
  76. local.closeConnection();
  77. }
  78. }
  79. public void shutdown() throws IOException {
  80. final CPoolEntry local = this.poolEntry;
  81. if (local != null) {
  82. local.shutdownConnection();
  83. }
  84. }
  85. public boolean isOpen() {
  86. final CPoolEntry local = this.poolEntry;
  87. if (local != null) {
  88. return !local.isClosed();
  89. } else {
  90. return false;
  91. }
  92. }
  93. public boolean isStale() {
  94. final HttpClientConnection conn = getConnection();
  95. if (conn != null) {
  96. return conn.isStale();
  97. } else {
  98. return true;
  99. }
  100. }
  101. public void setSocketTimeout(final int timeout) {
  102. getValidConnection().setSocketTimeout(timeout);
  103. }
  104. public int getSocketTimeout() {
  105. return getValidConnection().getSocketTimeout();
  106. }
  107. public String getId() {
  108. return getValidConnection().getId();
  109. }
  110. public void bind(final Socket socket) throws IOException {
  111. getValidConnection().bind(socket);
  112. }
  113. public Socket getSocket() {
  114. return getValidConnection().getSocket();
  115. }
  116. public SSLSession getSSLSession() {
  117. return getValidConnection().getSSLSession();
  118. }
  119. public boolean isResponseAvailable(final int timeout) throws IOException {
  120. return getValidConnection().isResponseAvailable(timeout);
  121. }
  122. public void sendRequestHeader(final HttpRequest request) throws HttpException, IOException {
  123. getValidConnection().sendRequestHeader(request);
  124. }
  125. public void sendRequestEntity(final HttpEntityEnclosingRequest request) throws HttpException, IOException {
  126. getValidConnection().sendRequestEntity(request);
  127. }
  128. public HttpResponse receiveResponseHeader() throws HttpException, IOException {
  129. return getValidConnection().receiveResponseHeader();
  130. }
  131. public void receiveResponseEntity(final HttpResponse response) throws HttpException, IOException {
  132. getValidConnection().receiveResponseEntity(response);
  133. }
  134. public void flush() throws IOException {
  135. getValidConnection().flush();
  136. }
  137. public HttpConnectionMetrics getMetrics() {
  138. return getValidConnection().getMetrics();
  139. }
  140. public InetAddress getLocalAddress() {
  141. return getValidConnection().getLocalAddress();
  142. }
  143. public int getLocalPort() {
  144. return getValidConnection().getLocalPort();
  145. }
  146. public InetAddress getRemoteAddress() {
  147. return getValidConnection().getRemoteAddress();
  148. }
  149. public int getRemotePort() {
  150. return getValidConnection().getRemotePort();
  151. }
  152. public Object getAttribute(final String id) {
  153. final ManagedHttpClientConnection conn = getValidConnection();
  154. if (conn instanceof HttpContext) {
  155. return ((HttpContext) conn).getAttribute(id);
  156. } else {
  157. return null;
  158. }
  159. }
  160. public void setAttribute(final String id, final Object obj) {
  161. final ManagedHttpClientConnection conn = getValidConnection();
  162. if (conn instanceof HttpContext) {
  163. ((HttpContext) conn).setAttribute(id, obj);
  164. }
  165. }
  166. public Object removeAttribute(final String id) {
  167. final ManagedHttpClientConnection conn = getValidConnection();
  168. if (conn instanceof HttpContext) {
  169. return ((HttpContext) conn).removeAttribute(id);
  170. } else {
  171. return null;
  172. }
  173. }
  174. @Override
  175. public String toString() {
  176. final StringBuilder sb = new StringBuilder("CPoolProxy{");
  177. final ManagedHttpClientConnection conn = getConnection();
  178. if (conn != null) {
  179. sb.append(conn);
  180. } else {
  181. sb.append("detached");
  182. }
  183. sb.append('}');
  184. return sb.toString();
  185. }
  186. public static HttpClientConnection newProxy(final CPoolEntry poolEntry) {
  187. return new CPoolProxy(poolEntry);
  188. }
  189. private static CPoolProxy getProxy(final HttpClientConnection conn) {
  190. if (!CPoolProxy.class.isInstance(conn)) {
  191. throw new IllegalStateException("Unexpected connection proxy class: " + conn.getClass());
  192. }
  193. return CPoolProxy.class.cast(conn);
  194. }
  195. public static CPoolEntry getPoolEntry(final HttpClientConnection proxy) {
  196. final CPoolEntry entry = getProxy(proxy).getPoolEntry();
  197. if (entry == null) {
  198. throw new ConnectionShutdownException();
  199. }
  200. return entry;
  201. }
  202. public static CPoolEntry detach(final HttpClientConnection conn) {
  203. return getProxy(conn).detach();
  204. }
  205. }