Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* |
michael@0 | 2 | * ==================================================================== |
michael@0 | 3 | * Licensed to the Apache Software Foundation (ASF) under one |
michael@0 | 4 | * or more contributor license agreements. See the NOTICE file |
michael@0 | 5 | * distributed with this work for additional information |
michael@0 | 6 | * regarding copyright ownership. The ASF licenses this file |
michael@0 | 7 | * to you under the Apache License, Version 2.0 (the |
michael@0 | 8 | * "License"); you may not use this file except in compliance |
michael@0 | 9 | * with the License. You may obtain a copy of the License at |
michael@0 | 10 | * |
michael@0 | 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
michael@0 | 12 | * |
michael@0 | 13 | * Unless required by applicable law or agreed to in writing, |
michael@0 | 14 | * software distributed under the License is distributed on an |
michael@0 | 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
michael@0 | 16 | * KIND, either express or implied. See the License for the |
michael@0 | 17 | * specific language governing permissions and limitations |
michael@0 | 18 | * under the License. |
michael@0 | 19 | * ==================================================================== |
michael@0 | 20 | * |
michael@0 | 21 | * This software consists of voluntary contributions made by many |
michael@0 | 22 | * individuals on behalf of the Apache Software Foundation. For more |
michael@0 | 23 | * information on the Apache Software Foundation, please see |
michael@0 | 24 | * <http://www.apache.org/>. |
michael@0 | 25 | * |
michael@0 | 26 | */ |
michael@0 | 27 | |
michael@0 | 28 | package ch.boye.httpclientandroidlib.impl.client; |
michael@0 | 29 | |
michael@0 | 30 | import java.net.URI; |
michael@0 | 31 | import java.net.URISyntaxException; |
michael@0 | 32 | |
michael@0 | 33 | import ch.boye.httpclientandroidlib.annotation.NotThreadSafe; |
michael@0 | 34 | |
michael@0 | 35 | import ch.boye.httpclientandroidlib.HttpRequest; |
michael@0 | 36 | import ch.boye.httpclientandroidlib.ProtocolException; |
michael@0 | 37 | import ch.boye.httpclientandroidlib.ProtocolVersion; |
michael@0 | 38 | import ch.boye.httpclientandroidlib.RequestLine; |
michael@0 | 39 | import ch.boye.httpclientandroidlib.client.methods.HttpUriRequest; |
michael@0 | 40 | import ch.boye.httpclientandroidlib.message.AbstractHttpMessage; |
michael@0 | 41 | import ch.boye.httpclientandroidlib.message.BasicRequestLine; |
michael@0 | 42 | import ch.boye.httpclientandroidlib.params.HttpProtocolParams; |
michael@0 | 43 | |
michael@0 | 44 | /** |
michael@0 | 45 | * A wrapper class for {@link HttpRequest}s that can be used to change |
michael@0 | 46 | * properties of the current request without modifying the original |
michael@0 | 47 | * object. |
michael@0 | 48 | * </p> |
michael@0 | 49 | * This class is also capable of resetting the request headers to |
michael@0 | 50 | * the state of the original request. |
michael@0 | 51 | * |
michael@0 | 52 | * |
michael@0 | 53 | * @since 4.0 |
michael@0 | 54 | */ |
michael@0 | 55 | @NotThreadSafe |
michael@0 | 56 | public class RequestWrapper extends AbstractHttpMessage implements HttpUriRequest { |
michael@0 | 57 | |
michael@0 | 58 | private final HttpRequest original; |
michael@0 | 59 | |
michael@0 | 60 | private URI uri; |
michael@0 | 61 | private String method; |
michael@0 | 62 | private ProtocolVersion version; |
michael@0 | 63 | private int execCount; |
michael@0 | 64 | |
michael@0 | 65 | public RequestWrapper(final HttpRequest request) throws ProtocolException { |
michael@0 | 66 | super(); |
michael@0 | 67 | if (request == null) { |
michael@0 | 68 | throw new IllegalArgumentException("HTTP request may not be null"); |
michael@0 | 69 | } |
michael@0 | 70 | this.original = request; |
michael@0 | 71 | setParams(request.getParams()); |
michael@0 | 72 | setHeaders(request.getAllHeaders()); |
michael@0 | 73 | // Make a copy of the original URI |
michael@0 | 74 | if (request instanceof HttpUriRequest) { |
michael@0 | 75 | this.uri = ((HttpUriRequest) request).getURI(); |
michael@0 | 76 | this.method = ((HttpUriRequest) request).getMethod(); |
michael@0 | 77 | this.version = null; |
michael@0 | 78 | } else { |
michael@0 | 79 | RequestLine requestLine = request.getRequestLine(); |
michael@0 | 80 | try { |
michael@0 | 81 | this.uri = new URI(requestLine.getUri()); |
michael@0 | 82 | } catch (URISyntaxException ex) { |
michael@0 | 83 | throw new ProtocolException("Invalid request URI: " |
michael@0 | 84 | + requestLine.getUri(), ex); |
michael@0 | 85 | } |
michael@0 | 86 | this.method = requestLine.getMethod(); |
michael@0 | 87 | this.version = request.getProtocolVersion(); |
michael@0 | 88 | } |
michael@0 | 89 | this.execCount = 0; |
michael@0 | 90 | } |
michael@0 | 91 | |
michael@0 | 92 | public void resetHeaders() { |
michael@0 | 93 | // Make a copy of original headers |
michael@0 | 94 | this.headergroup.clear(); |
michael@0 | 95 | setHeaders(this.original.getAllHeaders()); |
michael@0 | 96 | } |
michael@0 | 97 | |
michael@0 | 98 | public String getMethod() { |
michael@0 | 99 | return this.method; |
michael@0 | 100 | } |
michael@0 | 101 | |
michael@0 | 102 | public void setMethod(final String method) { |
michael@0 | 103 | if (method == null) { |
michael@0 | 104 | throw new IllegalArgumentException("Method name may not be null"); |
michael@0 | 105 | } |
michael@0 | 106 | this.method = method; |
michael@0 | 107 | } |
michael@0 | 108 | |
michael@0 | 109 | public ProtocolVersion getProtocolVersion() { |
michael@0 | 110 | if (this.version == null) { |
michael@0 | 111 | this.version = HttpProtocolParams.getVersion(getParams()); |
michael@0 | 112 | } |
michael@0 | 113 | return this.version; |
michael@0 | 114 | } |
michael@0 | 115 | |
michael@0 | 116 | public void setProtocolVersion(final ProtocolVersion version) { |
michael@0 | 117 | this.version = version; |
michael@0 | 118 | } |
michael@0 | 119 | |
michael@0 | 120 | |
michael@0 | 121 | public URI getURI() { |
michael@0 | 122 | return this.uri; |
michael@0 | 123 | } |
michael@0 | 124 | |
michael@0 | 125 | public void setURI(final URI uri) { |
michael@0 | 126 | this.uri = uri; |
michael@0 | 127 | } |
michael@0 | 128 | |
michael@0 | 129 | public RequestLine getRequestLine() { |
michael@0 | 130 | String method = getMethod(); |
michael@0 | 131 | ProtocolVersion ver = getProtocolVersion(); |
michael@0 | 132 | String uritext = null; |
michael@0 | 133 | if (uri != null) { |
michael@0 | 134 | uritext = uri.toASCIIString(); |
michael@0 | 135 | } |
michael@0 | 136 | if (uritext == null || uritext.length() == 0) { |
michael@0 | 137 | uritext = "/"; |
michael@0 | 138 | } |
michael@0 | 139 | return new BasicRequestLine(method, uritext, ver); |
michael@0 | 140 | } |
michael@0 | 141 | |
michael@0 | 142 | public void abort() throws UnsupportedOperationException { |
michael@0 | 143 | throw new UnsupportedOperationException(); |
michael@0 | 144 | } |
michael@0 | 145 | |
michael@0 | 146 | public boolean isAborted() { |
michael@0 | 147 | return false; |
michael@0 | 148 | } |
michael@0 | 149 | |
michael@0 | 150 | public HttpRequest getOriginal() { |
michael@0 | 151 | return this.original; |
michael@0 | 152 | } |
michael@0 | 153 | |
michael@0 | 154 | public boolean isRepeatable() { |
michael@0 | 155 | return true; |
michael@0 | 156 | } |
michael@0 | 157 | |
michael@0 | 158 | public int getExecCount() { |
michael@0 | 159 | return this.execCount; |
michael@0 | 160 | } |
michael@0 | 161 | |
michael@0 | 162 | public void incrementExecCount() { |
michael@0 | 163 | this.execCount++; |
michael@0 | 164 | } |
michael@0 | 165 | |
michael@0 | 166 | } |