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.client5.http.examples;
28  
29  import java.io.IOException;
30  import java.nio.ByteBuffer;
31  import java.nio.CharBuffer;
32  import java.util.concurrent.Future;
33  
34  import org.apache.hc.client5.http.async.methods.AbstractBinPushConsumer;
35  import org.apache.hc.client5.http.async.methods.AbstractCharResponseConsumer;
36  import org.apache.hc.client5.http.impl.async.CloseableHttpAsyncClient;
37  import org.apache.hc.client5.http.impl.async.HttpAsyncClients;
38  import org.apache.hc.core5.function.Supplier;
39  import org.apache.hc.core5.http.ContentType;
40  import org.apache.hc.core5.http.HttpException;
41  import org.apache.hc.core5.http.HttpRequest;
42  import org.apache.hc.core5.http.HttpResponse;
43  import org.apache.hc.core5.http.message.BasicHttpRequest;
44  import org.apache.hc.core5.http.message.StatusLine;
45  import org.apache.hc.core5.http.nio.AsyncPushConsumer;
46  import org.apache.hc.core5.http.nio.support.BasicRequestProducer;
47  import org.apache.hc.core5.http.support.BasicRequestBuilder;
48  import org.apache.hc.core5.http2.HttpVersionPolicy;
49  import org.apache.hc.core5.http2.config.H2Config;
50  import org.apache.hc.core5.io.CloseMode;
51  import org.apache.hc.core5.reactor.IOReactorConfig;
52  import org.apache.hc.core5.util.Timeout;
53  
54  /**
55   * This example demonstrates handling of HTTP/2 message exchanges pushed by the server.
56   */
57  public class AsyncClientH2ServerPush {
58  
59      public static void main(final String[] args) throws Exception {
60  
61          final IOReactorConfig ioReactorConfig = IOReactorConfig.custom()
62                  .setSoTimeout(Timeout.ofSeconds(5))
63                  .build();
64  
65          final H2Config h2Config = H2Config.custom()
66                  .setPushEnabled(true)
67                  .build();
68  
69          final CloseableHttpAsyncClient client = HttpAsyncClients.custom()
70                  .setIOReactorConfig(ioReactorConfig)
71                  .setVersionPolicy(HttpVersionPolicy.FORCE_HTTP_2)
72                  .setH2Config(h2Config)
73                  .build();
74  
75          client.start();
76  
77          client.register("*", new Supplier<AsyncPushConsumer>() {
78  
79              @Override
80              public AsyncPushConsumer get() {
81                  return new AbstractBinPushConsumer() {
82  
83                      @Override
84                      protected void start(
85                              final HttpRequest promise,
86                              final HttpResponse response,
87                              final ContentType contentType) throws HttpException, IOException {
88                          System.out.println(promise.getPath() + " (push)->" + new StatusLine(response));
89                      }
90  
91                      @Override
92                      protected int capacityIncrement() {
93                          return Integer.MAX_VALUE;
94                      }
95  
96                      @Override
97                      protected void data(final ByteBuffer data, final boolean endOfStream) throws IOException {
98                      }
99  
100                     @Override
101                     protected void completed() {
102                     }
103 
104                     @Override
105                     public void failed(final Exception cause) {
106                         System.out.println("(push)->" + cause);
107                     }
108 
109                     @Override
110                     public void releaseResources() {
111                     }
112 
113                 };
114             }
115 
116         });
117 
118         final BasicHttpRequest request = BasicRequestBuilder.get("https://nghttp2.org/httpbin/").build();
119 
120         System.out.println("Executing request " + request);
121         final Future<Void> future = client.execute(
122                 new BasicRequestProducer(request, null),
123                 new AbstractCharResponseConsumer<Void>() {
124 
125                     @Override
126                     protected void start(
127                             final HttpResponse response,
128                             final ContentType contentType) throws HttpException, IOException {
129                         System.out.println(request + "->" + new StatusLine(response));
130                     }
131 
132                     @Override
133                     protected int capacityIncrement() {
134                         return Integer.MAX_VALUE;
135                     }
136 
137                     @Override
138                     protected void data(final CharBuffer data, final boolean endOfStream) throws IOException {
139                     }
140 
141                     @Override
142                     protected Void buildResult() throws IOException {
143                         return null;
144                     }
145 
146                     @Override
147                     public void failed(final Exception cause) {
148                         System.out.println(request + "->" + cause);
149                     }
150 
151                     @Override
152                     public void releaseResources() {
153                     }
154 
155                 }, null);
156         future.get();
157 
158         System.out.println("Shutting down");
159         client.close(CloseMode.GRACEFUL);
160     }
161 
162 }