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.http.nio.integration;
29  
30  import java.io.IOException;
31  
32  import org.apache.http.HttpEntity;
33  import org.apache.http.HttpEntityEnclosingRequest;
34  import org.apache.http.HttpException;
35  import org.apache.http.HttpRequest;
36  import org.apache.http.HttpResponse;
37  import org.apache.http.HttpStatus;
38  import org.apache.http.entity.ContentType;
39  import org.apache.http.nio.entity.NStringEntity;
40  import org.apache.http.protocol.HttpContext;
41  import org.apache.http.protocol.HttpRequestHandler;
42  import org.apache.http.util.EntityUtils;
43  
44  final class SimpleRequestHandler implements HttpRequestHandler {
45  
46      private final boolean chunking;
47  
48      SimpleRequestHandler() {
49          this(false);
50      }
51  
52      SimpleRequestHandler(final boolean chunking) {
53          super();
54          this.chunking = chunking;
55      }
56  
57      @Override
58      public void handle(
59              final HttpRequest request,
60              final HttpResponse response,
61              final HttpContext context) throws HttpException, IOException {
62  
63          final String s = request.getRequestLine().getUri();
64          final int idx = s.indexOf('x');
65          if (idx == -1) {
66              throw new HttpException("Unexpected request-URI format");
67          }
68          final String pattern = s.substring(0, idx);
69          final int count = Integer.parseInt(s.substring(idx + 1, s.length()));
70          response.addHeader("Pattern", pattern);
71  
72          final String content;
73          if (request instanceof HttpEntityEnclosingRequest) {
74              final HttpEntity entity = ((HttpEntityEnclosingRequest) request).getEntity();
75              if (entity != null) {
76                  content = EntityUtils.toString(entity);
77              } else {
78                  response.setStatusCode(HttpStatus.SC_BAD_REQUEST);
79                  content = "Request entity not available";
80              }
81          } else {
82              final StringBuilder buffer = new StringBuilder();
83              for (int i = 0; i < count; i++) {
84                  buffer.append(pattern);
85              }
86              content = buffer.toString();
87          }
88          final NStringEntity entity = new NStringEntity(content, ContentType.DEFAULT_TEXT);
89          entity.setChunked(this.chunking);
90          response.setEntity(entity);
91      }
92  
93  }