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 java.io.IOException;
30  import java.nio.ByteBuffer;
31  import java.nio.charset.UnsupportedCharsetException;
32  import java.util.List;
33  import java.util.concurrent.atomic.AtomicReference;
34  
35  import org.apache.hc.core5.concurrent.CallbackContribution;
36  import org.apache.hc.core5.concurrent.FutureCallback;
37  import org.apache.hc.core5.function.Supplier;
38  import org.apache.hc.core5.http.ContentType;
39  import org.apache.hc.core5.http.EntityDetails;
40  import org.apache.hc.core5.http.Header;
41  import org.apache.hc.core5.http.HttpException;
42  import org.apache.hc.core5.http.HttpRequest;
43  import org.apache.hc.core5.http.nio.AsyncEntityConsumer;
44  import org.apache.hc.core5.http.nio.AsyncRequestConsumer;
45  import org.apache.hc.core5.http.nio.CapacityChannel;
46  import org.apache.hc.core5.http.protocol.HttpContext;
47  import org.apache.hc.core5.util.Args;
48  
49  /**
50   * Abstract asynchronous request consumer that makes use of {@link AsyncEntityConsumer}
51   * to process request message content.
52   *
53   * @param <T> request processing result representation.
54   * @param <E> request entity representation.
55   *
56   * @since 5.0
57   */
58  public abstract class AbstractAsyncRequesterConsumer<T, E> implements AsyncRequestConsumer<T> {
59  
60      private final Supplier<AsyncEntityConsumer<E>> dataConsumerSupplier;
61      private final AtomicReference<AsyncEntityConsumer<E>> dataConsumerRef;
62  
63      public AbstractAsyncRequesterConsumer(final Supplier<AsyncEntityConsumer<E>> dataConsumerSupplier) {
64          this.dataConsumerSupplier = Args.notNull(dataConsumerSupplier, "Data consumer supplier");
65          this.dataConsumerRef = new AtomicReference<>();
66      }
67  
68      public AbstractAsyncRequesterConsumer(final AsyncEntityConsumer<E> dataConsumer) {
69          this(() -> dataConsumer);
70      }
71  
72      /**
73       * Triggered to generate object that represents a result of request message processing.
74       * @param request the request message.
75       * @param entity the request entity.
76       * @param contentType the request content type.
77       * @return the result of request processing.
78       */
79      protected abstract T buildResult(HttpRequest request, E entity, ContentType contentType);
80  
81      @Override
82      public final void consumeRequest(
83              final HttpRequest request,
84              final EntityDetails entityDetails,
85              final HttpContext httpContext, final FutureCallback<T> resultCallback) throws HttpException, IOException {
86          if (entityDetails != null) {
87              final AsyncEntityConsumer<E> dataConsumer = dataConsumerSupplier.get();
88              if (dataConsumer == null) {
89                  throw new HttpException("Supplied data consumer is null");
90              }
91              dataConsumerRef.set(dataConsumer);
92              dataConsumer.streamStart(entityDetails, new CallbackContribution<E>(resultCallback) {
93  
94                  @Override
95                  public void completed(final E entity) {
96                      final ContentType contentType;
97                      try {
98                          contentType = ContentType.parse(entityDetails.getContentType());
99                          final T result = buildResult(request, entity, contentType);
100                         resultCallback.completed(result);
101                     } catch (final UnsupportedCharsetException ex) {
102                         resultCallback.failed(ex);
103                     }
104                 }
105 
106             });
107         } else {
108             resultCallback.completed(buildResult(request, null, null));
109         }
110 
111     }
112 
113     @Override
114     public final void updateCapacity(final CapacityChannel capacityChannel) throws IOException {
115         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.get();
116         dataConsumer.updateCapacity(capacityChannel);
117     }
118 
119     @Override
120     public final void consume(final ByteBuffer src) throws IOException {
121         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.get();
122         dataConsumer.consume(src);
123     }
124 
125     @Override
126     public final void streamEnd(final List<? extends Header> trailers) throws HttpException, IOException {
127         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.get();
128         dataConsumer.streamEnd(trailers);
129     }
130 
131     @Override
132     public final void failed(final Exception cause) {
133         releaseResources();
134     }
135 
136     @Override
137     public final void releaseResources() {
138         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.getAndSet(null);
139         if (dataConsumer != null) {
140             dataConsumer.releaseResources();
141         }
142     }
143 
144 }