public final class

RouteTracker

extends Object
implements Cloneable RouteInfo
java.lang.Object
   ↳ org.apache.http.conn.routing.RouteTracker

Class Overview

Helps tracking the steps in establishing a route.

Summary

Public Constructors
RouteTracker(HttpHost target, InetAddress local)
Creates a new route tracker.
RouteTracker(HttpRoute route)
Creates a new tracker for the given route.
Public Methods
Object clone()
final void connectProxy(HttpHost proxy, boolean secure)
Tracks connecting to the first proxy.
final void connectTarget(boolean secure)
Tracks connecting to the target.
final boolean equals(Object o)
Compares this tracked route to another.
final int getHopCount()
Obtains the number of hops in this route.
final HttpHost getHopTarget(int hop)
Obtains the target of a hop in this route.
final RouteInfo.LayerType getLayerType()
Obtains the layering type of this route.
final InetAddress getLocalAddress()
Obtains the local address to connect from.
final HttpHost getProxyHost()
Obtains the first proxy host.
final HttpHost getTargetHost()
Obtains the target host.
final RouteInfo.TunnelType getTunnelType()
Obtains the tunnel type of this route.
final int hashCode()
Generates a hash code for this tracked route.
final boolean isConnected()
final boolean isLayered()
Checks whether this route includes a layered protocol.
final boolean isSecure()
Checks whether this route is secure.
final boolean isTunnelled()
Checks whether this route is tunnelled through a proxy.
final void layerProtocol(boolean secure)
Tracks layering a protocol.
final HttpRoute toRoute()
Obtains the tracked route.
final String toString()
Obtains a description of the tracked route.
final void tunnelProxy(HttpHost proxy, boolean secure)
Tracks tunnelling to a proxy in a proxy chain.
final void tunnelTarget(boolean secure)
Tracks tunnelling to the target.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.apache.http.conn.routing.RouteInfo

Public Constructors

public RouteTracker (HttpHost target, InetAddress local)

Also: HttpClient

Creates a new route tracker. The target and origin need to be specified at creation time.

Parameters
target the host to which to route
local the local address to route from, or null for the default

public RouteTracker (HttpRoute route)

Also: HttpClient

Creates a new tracker for the given route. Only target and origin are taken from the route, everything else remains to be tracked.

Parameters
route the route to track

Public Methods

public Object clone ()

Also: HttpClient

public final void connectProxy (HttpHost proxy, boolean secure)

Also: HttpClient

Tracks connecting to the first proxy.

Parameters
proxy the proxy connected to
secure true if the route is secure, false otherwise

public final void connectTarget (boolean secure)

Also: HttpClient

Tracks connecting to the target.

Parameters
secure true if the route is secure, false otherwise

public final boolean equals (Object o)

Also: HttpClient

Compares this tracked route to another.

Parameters
o the object to compare with
Returns
  • true if the argument is the same tracked route, false

public final int getHopCount ()

Also: HttpClient

Obtains the number of hops in this route. A direct route has one hop. A route through a proxy has two hops. A route through a chain of n proxies has n+1 hops.

Returns
  • the number of hops in this route

public final HttpHost getHopTarget (int hop)

Also: HttpClient

Obtains the target of a hop in this route. The target of the last hop is the target host, the target of previous hops is the respective proxy in the chain. For a route through exactly one proxy, target of hop 0 is the proxy and target of hop 1 is the target host.

Parameters
hop index of the hop for which to get the target, 0 for first
Returns
  • the target of the given hop

public final RouteInfo.LayerType getLayerType ()

Also: HttpClient

Obtains the layering type of this route. In the presence of proxies, only layering over an end-to-end tunnel is considered.

Returns
  • the layering type

public final InetAddress getLocalAddress ()

Also: HttpClient

Obtains the local address to connect from.

Returns
  • the local address, or null

public final HttpHost getProxyHost ()

Also: HttpClient

Obtains the first proxy host.

Returns
  • the first proxy in the proxy chain, or null if this route is direct

public final HttpHost getTargetHost ()

Also: HttpClient

Obtains the target host.

Returns
  • the target host

public final RouteInfo.TunnelType getTunnelType ()

Also: HttpClient

Obtains the tunnel type of this route. If there is a proxy chain, only end-to-end tunnels are considered.

Returns
  • the tunnelling type

public final int hashCode ()

Also: HttpClient

Generates a hash code for this tracked route. Route trackers are modifiable and should therefore not be used as lookup keys. Use toRoute to obtain an unmodifiable representation of the tracked route.

Returns
  • the hash code

public final boolean isConnected ()

Also: HttpClient

public final boolean isLayered ()

Also: HttpClient

Checks whether this route includes a layered protocol. In the presence of proxies, only layering over an end-to-end tunnel is considered.

Returns
  • true if layered, false otherwise

public final boolean isSecure ()

Also: HttpClient

Checks whether this route is secure.

Returns
  • true if secure, false otherwise

public final boolean isTunnelled ()

Also: HttpClient

Checks whether this route is tunnelled through a proxy. If there is a proxy chain, only end-to-end tunnels are considered.

Returns
  • true if tunnelled end-to-end through at least one proxy, false otherwise

public final void layerProtocol (boolean secure)

Also: HttpClient

Tracks layering a protocol.

Parameters
secure true if the route is secure, false otherwise

public final HttpRoute toRoute ()

Also: HttpClient

Obtains the tracked route. If a route has been tracked, it is connected. If not connected, nothing has been tracked so far.

Returns
  • the tracked route, or null if nothing has been tracked so far

public final String toString ()

Also: HttpClient

Obtains a description of the tracked route.

Returns
  • a human-readable representation of the tracked route

public final void tunnelProxy (HttpHost proxy, boolean secure)

Also: HttpClient

Tracks tunnelling to a proxy in a proxy chain. This will extend the tracked proxy chain, but it does not mark the route as tunnelled. Only end-to-end tunnels are considered there.

Parameters
proxy the proxy tunnelled to
secure true if the route is secure, false otherwise

public final void tunnelTarget (boolean secure)

Also: HttpClient

Tracks tunnelling to the target.

Parameters
secure true if the route is secure, false otherwise