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.HttpResponse;
43  import org.apache.hc.core5.http.nio.AsyncEntityConsumer;
44  import org.apache.hc.core5.http.nio.AsyncResponseConsumer;
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 response consumer that makes use of {@link AsyncEntityConsumer}
51   * to process response message content.
52   *
53   * @param <T> response processing result representation.
54   * @param <E> response entity representation.
55   *
56   * @since 5.0
57   */
58  public abstract class AbstractAsyncResponseConsumer<T, E> implements AsyncResponseConsumer<T> {
59  
60      private final Supplier<AsyncEntityConsumer<E>> dataConsumerSupplier;
61      private final AtomicReference<AsyncEntityConsumer<E>> dataConsumerRef;
62  
63      public AbstractAsyncResponseConsumer(final Supplier<AsyncEntityConsumer<E>> dataConsumerSupplier) {
64          this.dataConsumerSupplier = Args.notNull(dataConsumerSupplier, "Data consumer supplier");
65          this.dataConsumerRef = new AtomicReference<>();
66      }
67  
68      public AbstractAsyncResponseConsumer(final AsyncEntityConsumer<E> dataConsumer) {
69          this(() -> dataConsumer);
70      }
71  
72      /**
73       * Triggered to generate object that represents a result of response message processing.
74       * @param response the response message.
75       * @param entity the response entity.
76       * @param contentType the response content type.
77       * @return the result of response processing.
78       */
79      protected abstract T buildResult(HttpResponse response, E entity, ContentType contentType);
80  
81      @Override
82      public final void consumeResponse(
83              final HttpResponse response,
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(response, entity, contentType);
100                         if (resultCallback != null) {
101                             resultCallback.completed(result);
102                         }
103                     } catch (final UnsupportedCharsetException ex) {
104                         if (resultCallback != null) {
105                             resultCallback.failed(ex);
106                         }
107                     }
108                 }
109 
110             });
111         } else {
112             final T result = buildResult(response, null, null);
113             if (resultCallback != null) {
114                 resultCallback.completed(result);
115             }
116         }
117 
118     }
119 
120     @Override
121     public final void updateCapacity(final CapacityChannel capacityChannel) throws IOException {
122         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.get();
123         if (dataConsumer != null) {
124             dataConsumer.updateCapacity(capacityChannel);
125         } else {
126             capacityChannel.update(Integer.MAX_VALUE);
127         }
128     }
129 
130     @Override
131     public final void consume(final ByteBuffer src) throws IOException {
132         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.get();
133         if (dataConsumer != null) {
134             dataConsumer.consume(src);
135         }
136     }
137 
138     @Override
139     public final void streamEnd(final List<? extends Header> trailers) throws HttpException, IOException {
140         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.get();
141         if (dataConsumer != null) {
142             dataConsumer.streamEnd(trailers);
143         }
144     }
145 
146     @Override
147     public final void failed(final Exception cause) {
148         releaseResources();
149     }
150 
151     @Override
152     public final void releaseResources() {
153         final AsyncEntityConsumer<E> dataConsumer = dataConsumerRef.getAndSet(null);
154         if (dataConsumer != null) {
155             dataConsumer.releaseResources();
156         }
157     }
158 
159 }