View Javadoc

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 org.apache.http.impl.conn;
28  
29  import java.io.IOException;
30  import java.util.Date;
31  import java.util.concurrent.TimeUnit;
32  
33  import org.apache.commons.logging.Log;
34  import org.apache.http.conn.OperatedClientConnection;
35  import org.apache.http.conn.routing.HttpRoute;
36  import org.apache.http.conn.routing.RouteTracker;
37  import org.apache.http.pool.PoolEntry;
38  
39  /**
40   * @since 4.2
41   */
42  class HttpPoolEntry extends PoolEntry<HttpRoute, OperatedClientConnection> {
43  
44      private final Log log;
45      private final RouteTracker tracker;
46  
47      public HttpPoolEntry(
48              final Log log,
49              final String id,
50              final HttpRoute route,
51              final OperatedClientConnection conn,
52              final long timeToLive, final TimeUnit tunit) {
53          super(id, route, conn, timeToLive, tunit);
54          this.log = log;
55          this.tracker = new RouteTracker(route);
56      }
57  
58      @Override
59      public boolean isExpired(long now) {
60          boolean expired = super.isExpired(now);
61          if (expired && this.log.isDebugEnabled()) {
62              this.log.debug("Connection " + this + " expired @ " + new Date(getExpiry()));
63          }
64          return expired;
65      }
66  
67      RouteTracker getTracker() {
68          return this.tracker;
69      }
70  
71      HttpRoute getPlannedRoute() {
72          return getRoute();
73      }
74  
75      HttpRoute getEffectiveRoute() {
76          return this.tracker.toRoute();
77      }
78  
79      @Override
80      public boolean isClosed() {
81          OperatedClientConnection conn = getConnection();
82          return !conn.isOpen();
83      }
84  
85      @Override
86      public void close() {
87          OperatedClientConnection conn = getConnection();
88          try {
89              conn.close();
90          } catch (IOException ex) {
91              this.log.debug("I/O error closing connection", ex);
92          }
93      }
94  
95  }