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  
28  package org.apache.hc.client5.http.impl.routing;
29  
30  import java.net.InetAddress;
31  
32  import org.apache.hc.client5.http.HttpRoute;
33  import org.apache.hc.client5.http.SchemePortResolver;
34  import org.apache.hc.client5.http.config.RequestConfig;
35  import org.apache.hc.client5.http.impl.DefaultSchemePortResolver;
36  import org.apache.hc.client5.http.protocol.HttpClientContext;
37  import org.apache.hc.client5.http.routing.HttpRoutePlanner;
38  import org.apache.hc.client5.http.routing.RoutingSupport;
39  import org.apache.hc.core5.annotation.Contract;
40  import org.apache.hc.core5.annotation.ThreadingBehavior;
41  import org.apache.hc.core5.http.HttpException;
42  import org.apache.hc.core5.http.HttpHost;
43  import org.apache.hc.core5.http.ProtocolException;
44  import org.apache.hc.core5.http.protocol.HttpContext;
45  
46  /**
47   * Default implementation of an {@link HttpRoutePlanner}. It will not make use of
48   * any Java system properties, nor of system or browser proxy settings.
49   *
50   * @since 4.3
51   */
52  @Contract(threading = ThreadingBehavior.STATELESS)
53  public class DefaultRoutePlanner implements HttpRoutePlanner {
54  
55      private final SchemePortResolver schemePortResolver;
56  
57      public DefaultRoutePlanner(final SchemePortResolver schemePortResolver) {
58          super();
59          this.schemePortResolver = schemePortResolver != null ? schemePortResolver : DefaultSchemePortResolver.INSTANCE;
60      }
61  
62      @Override
63      public final HttpRoute determineRoute(final HttpHost host, final HttpContext context) throws HttpException {
64          if (host == null) {
65              throw new ProtocolException("Target host is not specified");
66          }
67          final HttpClientContext clientContext = HttpClientContext.adapt(context);
68          final RequestConfig config = clientContext.getRequestConfig();
69          HttpHost proxy = config.getProxy();
70          if (proxy == null) {
71              proxy = determineProxy(host, context);
72          }
73          final HttpHost target = RoutingSupport.normalize(host, schemePortResolver);
74          if (target.getPort() < 0) {
75              throw new ProtocolException("Unroutable protocol scheme: " + target);
76          }
77          final boolean secure = target.getSchemeName().equalsIgnoreCase("https");
78          if (proxy == null) {
79              return new HttpRoute(target, determineLocalAddress(target, context), secure);
80          }
81          return new HttpRoute(target, determineLocalAddress(proxy, context), proxy, secure);
82      }
83  
84      /**
85       * This implementation returns null.
86       *
87       * @throws HttpException may be thrown if overridden
88       */
89      protected HttpHost determineProxy(
90              final HttpHost target,
91              final HttpContext context) throws HttpException {
92          return null;
93      }
94  
95      /**
96       * This implementation returns null.
97       *
98       * @throws HttpException may be thrown if overridden
99       */
100     protected InetAddress determineLocalAddress(
101             final HttpHost firstHop,
102             final HttpContext context) throws HttpException {
103         return null;
104     }
105 
106 }