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.impl.client;
29  
30  import java.io.IOException;
31  import java.io.InputStream;
32  import java.io.OutputStream;
33  
34  import org.apache.http.Header;
35  import org.apache.http.HttpEntity;
36  import org.apache.http.HttpEntityEnclosingRequest;
37  import org.apache.http.ProtocolException;
38  import org.apache.http.entity.HttpEntityWrapper;
39  import org.apache.http.protocol.HTTP;
40  
41  /**
42   * A wrapper class for {@link HttpEntityEnclosingRequest}s that can
43   * be used to change properties of the current request without
44   * modifying the original object.
45   * <p>
46   * This class is also capable of resetting the request headers to
47   * the state of the original request.
48   * </p>
49   *
50   * @since 4.0
51   *
52   * @deprecated (4.3) do not use.
53   */
54  @Deprecated
55  public class EntityEnclosingRequestWrapper extends RequestWrapper
56      implements HttpEntityEnclosingRequest {
57  
58      private HttpEntity entity;
59      private boolean consumed;
60  
61      public EntityEnclosingRequestWrapper(final HttpEntityEnclosingRequest request)
62          throws ProtocolException {
63          super(request);
64          setEntity(request.getEntity());
65      }
66  
67      @Override
68      public HttpEntity getEntity() {
69          return this.entity;
70      }
71  
72      @Override
73      public void setEntity(final HttpEntity entity) {
74          this.entity = entity != null ? new EntityWrapper(entity) : null;
75          this.consumed = false;
76      }
77  
78      @Override
79      public boolean expectContinue() {
80          final Header expect = getFirstHeader(HTTP.EXPECT_DIRECTIVE);
81          return expect != null && HTTP.EXPECT_CONTINUE.equalsIgnoreCase(expect.getValue());
82      }
83  
84      @Override
85      public boolean isRepeatable() {
86          return this.entity == null || this.entity.isRepeatable() || !this.consumed;
87      }
88  
89      class EntityWrapper extends HttpEntityWrapper {
90  
91          EntityWrapper(final HttpEntity entity) {
92              super(entity);
93          }
94  
95          @Override
96          public void consumeContent() throws IOException {
97              consumed = true;
98              super.consumeContent();
99          }
100 
101         @Override
102         public InputStream getContent() throws IOException {
103             consumed = true;
104             return super.getContent();
105         }
106 
107         @Override
108         public void writeTo(final OutputStream outStream) throws IOException {
109             consumed = true;
110             super.writeTo(outStream);
111         }
112 
113     }
114 
115 }