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.hc.core5.http.nio.support;
28  
29  import org.apache.hc.core5.function.Decorator;
30  import org.apache.hc.core5.function.Supplier;
31  import org.apache.hc.core5.http.HttpException;
32  import org.apache.hc.core5.http.HttpRequest;
33  import org.apache.hc.core5.http.HttpRequestMapper;
34  import org.apache.hc.core5.http.HttpStatus;
35  import org.apache.hc.core5.http.MisdirectedRequestException;
36  import org.apache.hc.core5.http.nio.AsyncServerExchangeHandler;
37  import org.apache.hc.core5.http.nio.HandlerFactory;
38  import org.apache.hc.core5.http.protocol.HttpContext;
39  import org.apache.hc.core5.util.Args;
40  
41  /**
42   * Factory for {@link AsyncServerExchangeHandler} instances that make use
43   * of {@link HttpRequestMapper} to dispatch
44   * the request to a particular {@link AsyncServerExchangeHandler} for processing.
45   *
46   * @since 5.0
47   */
48  public final class DefaultAsyncResponseExchangeHandlerFactory implements HandlerFactory<AsyncServerExchangeHandler> {
49  
50      private final HttpRequestMapper<Supplier<AsyncServerExchangeHandler>> mapper;
51      private final Decorator<AsyncServerExchangeHandler> decorator;
52  
53      public DefaultAsyncResponseExchangeHandlerFactory(
54              final HttpRequestMapper<Supplier<AsyncServerExchangeHandler>> mapper,
55              final Decorator<AsyncServerExchangeHandler> decorator) {
56          this.mapper = Args.notNull(mapper, "Request handler mapper");
57          this.decorator = decorator;
58      }
59  
60      public DefaultAsyncResponseExchangeHandlerFactory(final HttpRequestMapper<Supplier<AsyncServerExchangeHandler>> mapper) {
61          this(mapper, null);
62      }
63  
64      private AsyncServerExchangeHandler createHandler(final HttpRequest request,
65                      final HttpContext context) throws HttpException {
66          try {
67              final Supplier<AsyncServerExchangeHandler> supplier = mapper.resolve(request, context);
68              return supplier != null
69                              ? supplier.get()
70                              : new ImmediateResponseExchangeHandler(HttpStatus.SC_NOT_FOUND, "Resource not found");
71          } catch (final MisdirectedRequestException ex) {
72              return new ImmediateResponseExchangeHandler(HttpStatus.SC_MISDIRECTED_REQUEST,
73                              "Not authoritative");
74          }
75      }
76  
77      @Override
78      public AsyncServerExchangeHandler create(final HttpRequest request, final HttpContext context) throws HttpException {
79          final AsyncServerExchangeHandler handler = createHandler(request, context);
80          if (handler != null) {
81              return decorator != null ? decorator.decorate(handler) : handler;
82          }
83          return null;
84      }
85  
86  }