Mercurial Hosting > luan
annotate src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 927:1c1c350fbe4b
remove AsyncContinuation.cancel()
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sun, 09 Oct 2016 18:34:24 -0600 |
| parents | 5c9cb5d00512 |
| children | 23a57aad34c0 |
| rev | line source |
|---|---|
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1 // |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
2 // ======================================================================== |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
3 // Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
4 // ------------------------------------------------------------------------ |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
5 // All rights reserved. This program and the accompanying materials |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
6 // are made available under the terms of the Eclipse Public License v1.0 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
7 // and Apache License v2.0 which accompanies this distribution. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
8 // |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
9 // The Eclipse Public License is available at |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
10 // http://www.eclipse.org/legal/epl-v10.html |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
11 // |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
12 // The Apache License v2.0 is available at |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
13 // http://www.opensource.org/licenses/apache2.0.php |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
14 // |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
15 // You may elect to redistribute this code under either of these licenses. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
16 // ======================================================================== |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
17 // |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
18 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
19 package org.eclipse.jetty.server; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
20 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
21 import java.io.IOException; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
22 import java.io.InputStream; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
23 import java.io.PrintWriter; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
24 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
25 import javax.servlet.DispatcherType; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
26 import javax.servlet.RequestDispatcher; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
27 import javax.servlet.ServletInputStream; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
28 import javax.servlet.ServletOutputStream; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
29 import javax.servlet.http.HttpServletRequest; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
30 import javax.servlet.http.HttpServletResponse; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
31 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
32 import org.eclipse.jetty.continuation.ContinuationThrowable; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
33 import org.eclipse.jetty.http.EncodedHttpURI; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
34 import org.eclipse.jetty.http.Generator; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
35 import org.eclipse.jetty.http.HttpBuffers; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
36 import org.eclipse.jetty.http.HttpException; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
37 import org.eclipse.jetty.http.HttpFields; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
38 import org.eclipse.jetty.http.HttpGenerator; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
39 import org.eclipse.jetty.http.HttpHeaderValues; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
40 import org.eclipse.jetty.http.HttpHeaders; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
41 import org.eclipse.jetty.http.HttpMethods; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
42 import org.eclipse.jetty.http.HttpParser; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
43 import org.eclipse.jetty.http.HttpStatus; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
44 import org.eclipse.jetty.http.HttpURI; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
45 import org.eclipse.jetty.http.HttpVersions; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
46 import org.eclipse.jetty.http.MimeTypes; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
47 import org.eclipse.jetty.http.Parser; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
48 import org.eclipse.jetty.io.AbstractConnection; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
49 import org.eclipse.jetty.io.Buffer; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
50 import org.eclipse.jetty.io.BufferCache.CachedBuffer; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
51 import org.eclipse.jetty.io.Buffers; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
52 import org.eclipse.jetty.io.Connection; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
53 import org.eclipse.jetty.io.EndPoint; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
54 import org.eclipse.jetty.io.EofException; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
55 import org.eclipse.jetty.io.RuntimeIOException; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
56 import org.eclipse.jetty.util.QuotedStringTokenizer; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
57 import org.eclipse.jetty.util.StringUtil; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
58 import org.eclipse.jetty.util.URIUtil; |
|
820
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
59 import org.slf4j.Logger; |
|
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
60 import org.slf4j.LoggerFactory; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
61 import org.eclipse.jetty.util.resource.Resource; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
62 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
63 /** |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
64 * <p>A HttpConnection represents the connection of a HTTP client to the server |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
65 * and is created by an instance of a {@link Connector}. It's prime function is |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
66 * to associate {@link Request} and {@link Response} instances with a {@link EndPoint}. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
67 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
68 * <p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
69 * A connection is also the prime mechanism used by jetty to recycle objects without |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
70 * pooling. The {@link Request}, {@link Response}, {@link HttpParser}, {@link HttpGenerator} |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
71 * and {@link HttpFields} instances are all recycled for the duraction of |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
72 * a connection. Where appropriate, allocated buffers are also kept associated |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
73 * with the connection via the parser and/or generator. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
74 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
75 * <p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
76 * The connection state is held by 3 separate state machines: The request state, the |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
77 * response state and the continuation state. All three state machines must be driven |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
78 * to completion for every request, and all three can complete in any order. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
79 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
80 * <p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
81 * The HttpConnection support protocol upgrade. If on completion of a request, the |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
82 * response code is 101 (switch protocols), then the org.eclipse.jetty.io.Connection |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
83 * request attribute is checked to see if there is a new Connection instance. If so, |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
84 * the new connection is returned from {@link #handle()} and is used for future |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
85 * handling of the underlying connection. Note that for switching protocols that |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
86 * don't use 101 responses (eg CONNECT), the response should be sent and then the |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
87 * status code changed to 101 before returning from the handler. Implementors |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
88 * of new Connection types should be careful to extract any buffered data from |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
89 * (HttpParser)http.getParser()).getHeaderBuffer() and |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
90 * (HttpParser)http.getParser()).getBodyBuffer() to initialise their new connection. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
91 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
92 * |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
93 */ |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
94 public abstract class AbstractHttpConnection extends AbstractConnection |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
95 { |
| 826 | 96 private static final Logger LOG = LoggerFactory.getLogger(AbstractHttpConnection.class); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
97 |
| 826 | 98 private static final int UNKNOWN = -2; |
| 99 private static final ThreadLocal<AbstractHttpConnection> __currentConnection = new ThreadLocal<AbstractHttpConnection>(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
100 |
| 826 | 101 private int _requests; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
102 |
| 826 | 103 protected final Connector _connector; |
| 104 protected final Server _server; | |
| 105 protected final HttpURI _uri; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
106 |
| 826 | 107 protected final Parser _parser; |
| 108 protected final HttpFields _requestFields; | |
| 109 protected final Request _request; | |
| 110 protected volatile ServletInputStream _in; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
111 |
| 826 | 112 protected final Generator _generator; |
| 113 protected final HttpFields _responseFields; | |
| 114 protected final Response _response; | |
| 115 protected volatile Output _out; | |
| 116 protected volatile OutputWriter _writer; | |
| 117 protected volatile PrintWriter _printWriter; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
118 |
| 826 | 119 int _include; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
120 |
| 826 | 121 private Object _associatedObject; // associated object |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
122 |
| 826 | 123 private int _version = UNKNOWN; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
124 |
| 826 | 125 private String _charset; |
| 126 private boolean _expect = false; | |
| 127 private boolean _expect100Continue = false; | |
| 128 private boolean _expect102Processing = false; | |
| 129 private boolean _head = false; | |
| 130 private boolean _host = false; | |
| 131 private boolean _delayedHandling=false; | |
| 132 private boolean _earlyEOF = false; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
133 |
| 826 | 134 /* ------------------------------------------------------------ */ |
| 135 public static AbstractHttpConnection getCurrentConnection() | |
| 136 { | |
| 137 return __currentConnection.get(); | |
| 138 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
139 |
| 826 | 140 /* ------------------------------------------------------------ */ |
| 141 protected static void setCurrentConnection(AbstractHttpConnection connection) | |
| 142 { | |
| 143 __currentConnection.set(connection); | |
| 144 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
145 |
| 826 | 146 /* ------------------------------------------------------------ */ |
| 147 public AbstractHttpConnection(Connector connector, EndPoint endpoint, Server server) | |
| 148 { | |
| 149 super(endpoint); | |
| 150 _uri = StringUtil.__UTF8.equals(URIUtil.__CHARSET)?new HttpURI():new EncodedHttpURI(URIUtil.__CHARSET); | |
| 151 _connector = connector; | |
| 152 HttpBuffers ab = (HttpBuffers)_connector; | |
| 153 _parser = newHttpParser(ab.getRequestBuffers(), endpoint, new RequestHandler()); | |
| 154 _requestFields = new HttpFields(); | |
| 155 _responseFields = new HttpFields(); | |
| 156 _request = new Request(this); | |
| 157 _response = new Response(this); | |
| 158 _generator = newHttpGenerator(ab.getResponseBuffers(), endpoint); | |
| 159 _server = server; | |
| 160 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
161 |
| 826 | 162 /* ------------------------------------------------------------ */ |
| 163 protected AbstractHttpConnection(Connector connector, EndPoint endpoint, Server server, | |
| 164 Parser parser, Generator generator, Request request) | |
| 165 { | |
| 166 super(endpoint); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
167 |
| 826 | 168 _uri = URIUtil.__CHARSET.equals(StringUtil.__UTF8)?new HttpURI():new EncodedHttpURI(URIUtil.__CHARSET); |
| 169 _connector = connector; | |
| 170 _parser = parser; | |
| 171 _requestFields = new HttpFields(); | |
| 172 _responseFields = new HttpFields(); | |
| 173 _request = request; | |
| 174 _response = new Response(this); | |
| 175 _generator = generator; | |
| 176 _server = server; | |
| 177 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
178 |
| 826 | 179 protected HttpParser newHttpParser(Buffers requestBuffers, EndPoint endpoint, HttpParser.EventHandler requestHandler) |
| 180 { | |
| 181 return new HttpParser(requestBuffers, endpoint, requestHandler); | |
| 182 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
183 |
| 826 | 184 protected HttpGenerator newHttpGenerator(Buffers responseBuffers, EndPoint endPoint) |
| 185 { | |
| 186 return new HttpGenerator(responseBuffers, endPoint); | |
| 187 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
188 |
| 826 | 189 /* ------------------------------------------------------------ */ |
| 190 /** | |
| 191 * @return the parser used by this connection | |
| 192 */ | |
| 193 public Parser getParser() | |
| 194 { | |
| 195 return _parser; | |
| 196 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
197 |
| 826 | 198 /* ------------------------------------------------------------ */ |
| 199 /** | |
| 200 * @return the number of requests handled by this connection | |
| 201 */ | |
| 202 public int getRequests() | |
| 203 { | |
| 204 return _requests; | |
| 205 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
206 |
| 826 | 207 /* ------------------------------------------------------------ */ |
| 208 public Server getServer() | |
| 209 { | |
| 210 return _server; | |
| 211 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
212 |
| 826 | 213 /* ------------------------------------------------------------ */ |
| 214 /** | |
| 215 * @return Returns the associatedObject. | |
| 216 */ | |
| 217 public Object getAssociatedObject() | |
| 218 { | |
| 219 return _associatedObject; | |
| 220 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
221 |
| 826 | 222 /* ------------------------------------------------------------ */ |
| 223 /** | |
| 224 * @param associatedObject The associatedObject to set. | |
| 225 */ | |
| 226 public void setAssociatedObject(Object associatedObject) | |
| 227 { | |
| 228 _associatedObject = associatedObject; | |
| 229 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
230 |
| 826 | 231 /* ------------------------------------------------------------ */ |
| 232 /** | |
| 233 * @return Returns the connector. | |
| 234 */ | |
| 235 public Connector getConnector() | |
| 236 { | |
| 237 return _connector; | |
| 238 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
239 |
| 826 | 240 /* ------------------------------------------------------------ */ |
| 241 /** | |
| 242 * @return Returns the requestFields. | |
| 243 */ | |
| 244 public HttpFields getRequestFields() | |
| 245 { | |
| 246 return _requestFields; | |
| 247 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
248 |
| 826 | 249 /* ------------------------------------------------------------ */ |
| 250 /** | |
| 251 * @return Returns the responseFields. | |
| 252 */ | |
| 253 public HttpFields getResponseFields() | |
| 254 { | |
| 255 return _responseFields; | |
| 256 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
257 |
| 826 | 258 /* ------------------------------------------------------------ */ |
| 259 /** | |
| 260 * Find out if the request supports CONFIDENTIAL security. | |
| 261 * @param request the incoming HTTP request | |
| 262 * @return the result of calling {@link Connector#isConfidential(Request)}, or false | |
| 263 * if there is no connector | |
| 264 */ | |
| 265 public boolean isConfidential(Request request) | |
| 266 { | |
| 267 return _connector != null && _connector.isConfidential(request); | |
| 268 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
269 |
| 826 | 270 /* ------------------------------------------------------------ */ |
| 271 /** | |
| 272 * @return Returns the request. | |
| 273 */ | |
| 274 public Request getRequest() | |
| 275 { | |
| 276 return _request; | |
| 277 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
278 |
| 826 | 279 /* ------------------------------------------------------------ */ |
| 280 /** | |
| 281 * @return Returns the response. | |
| 282 */ | |
| 283 public Response getResponse() | |
| 284 { | |
| 285 return _response; | |
| 286 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
287 |
| 826 | 288 /* ------------------------------------------------------------ */ |
| 289 /** | |
| 290 * Get the inputStream from the connection. | |
| 291 * <p> | |
| 292 * If the associated response has the Expect header set to 100 Continue, | |
| 293 * then accessing the input stream indicates that the handler/servlet | |
| 294 * is ready for the request body and thus a 100 Continue response is sent. | |
| 295 * | |
| 296 * @return The input stream for this connection. | |
| 297 * The stream will be created if it does not already exist. | |
| 298 * @throws IOException if the input stream cannot be retrieved | |
| 299 */ | |
| 300 public ServletInputStream getInputStream() throws IOException | |
| 301 { | |
| 302 // If the client is expecting 100 CONTINUE, then send it now. | |
| 303 if (_expect100Continue) | |
| 304 { | |
| 305 // is content missing? | |
| 306 if (((HttpParser)_parser).getHeaderBuffer()==null || ((HttpParser)_parser).getHeaderBuffer().length()<2) | |
| 307 { | |
| 308 if (_generator.isCommitted()) | |
| 309 throw new IllegalStateException("Committed before 100 Continues"); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
310 |
| 826 | 311 ((HttpGenerator)_generator).send1xx(HttpStatus.CONTINUE_100); |
| 312 } | |
| 313 _expect100Continue=false; | |
| 314 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
315 |
| 826 | 316 if (_in == null) |
| 317 _in = new HttpInput(AbstractHttpConnection.this); | |
| 318 return _in; | |
| 319 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
320 |
| 826 | 321 /* ------------------------------------------------------------ */ |
| 322 /** | |
| 323 * @return The output stream for this connection. The stream will be created if it does not already exist. | |
| 324 */ | |
| 325 public ServletOutputStream getOutputStream() | |
| 326 { | |
| 327 if (_out == null) | |
| 328 _out = new Output(); | |
| 329 return _out; | |
| 330 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
331 |
| 826 | 332 /* ------------------------------------------------------------ */ |
| 333 /** | |
| 334 * @param encoding the PrintWriter encoding | |
| 335 * @return A {@link PrintWriter} wrapping the {@link #getOutputStream output stream}. The writer is created if it | |
| 336 * does not already exist. | |
| 337 */ | |
| 338 public PrintWriter getPrintWriter(String encoding) | |
| 339 { | |
| 340 getOutputStream(); | |
| 341 if (_writer==null) | |
| 342 { | |
| 343 _writer=new OutputWriter(); | |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
344 _printWriter = new PrintWriter(_writer) |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
345 { |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
346 public void close() |
| 826 | 347 { |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
348 synchronized (lock) |
| 826 | 349 { |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
350 try |
| 826 | 351 { |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
352 out.close(); |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
353 } |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
354 catch (IOException e) |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
355 { |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
356 setError(); |
| 826 | 357 } |
| 358 } | |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
359 } |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
360 }; |
| 826 | 361 } |
| 362 _writer.setCharacterEncoding(encoding); | |
| 363 return _printWriter; | |
| 364 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
365 |
| 826 | 366 /* ------------------------------------------------------------ */ |
| 367 public boolean isResponseCommitted() | |
| 368 { | |
| 369 return _generator.isCommitted(); | |
| 370 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
371 |
| 826 | 372 /* ------------------------------------------------------------ */ |
| 373 public boolean isEarlyEOF() | |
| 374 { | |
| 375 return _earlyEOF; | |
| 376 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
377 |
| 826 | 378 /* ------------------------------------------------------------ */ |
| 379 public void reset() | |
| 380 { | |
| 381 _parser.reset(); | |
| 382 _parser.returnBuffers(); // TODO maybe only on unhandle | |
| 383 _requestFields.clear(); | |
| 384 _request.recycle(); | |
| 385 _generator.reset(); | |
| 386 _generator.returnBuffers();// TODO maybe only on unhandle | |
| 387 _responseFields.clear(); | |
| 388 _response.recycle(); | |
| 389 _uri.clear(); | |
| 390 _writer=null; | |
| 391 _earlyEOF = false; | |
| 392 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
393 |
| 826 | 394 /* ------------------------------------------------------------ */ |
| 395 protected void handleRequest() throws IOException | |
| 396 { | |
| 397 boolean error = false; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
398 |
| 826 | 399 String threadName=null; |
| 400 Throwable async_exception=null; | |
| 401 try | |
| 402 { | |
| 403 if (LOG.isDebugEnabled()) | |
| 404 { | |
| 405 threadName=Thread.currentThread().getName(); | |
| 406 Thread.currentThread().setName(threadName+" - "+_uri); | |
| 407 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
408 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
409 |
| 826 | 410 // Loop here to handle async request redispatches. |
| 411 // The loop is controlled by the call to async.unhandle in the | |
| 412 // finally block below. If call is from a non-blocking connector, | |
| 413 // then the unhandle will return false only if an async dispatch has | |
| 414 // already happened when unhandle is called. For a blocking connector, | |
| 415 // the wait for the asynchronous dispatch or timeout actually happens | |
| 416 // within the call to unhandle(). | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
417 |
| 826 | 418 final Server server=_server; |
| 419 boolean handling=_request._async.handling() && server!=null && server.isRunning(); | |
| 420 while (handling) | |
| 421 { | |
| 422 _request.setHandled(false); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
423 |
| 826 | 424 String info=null; |
| 425 try | |
| 426 { | |
| 427 _uri.getPort(); | |
| 428 String path = null; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
429 |
| 826 | 430 try |
| 431 { | |
| 432 path = _uri.getDecodedPath(); | |
| 433 } | |
| 434 catch (Exception e) | |
| 435 { | |
| 436 LOG.warn("Failed UTF-8 decode for request path, trying ISO-8859-1"); | |
| 437 LOG.trace("",e); | |
| 438 path = _uri.getDecodedPath(StringUtil.__ISO_8859_1); | |
| 439 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
440 |
| 826 | 441 info=URIUtil.canonicalPath(path); |
| 442 if (info==null && !_request.getMethod().equals(HttpMethods.CONNECT)) | |
| 443 { | |
| 444 if (path==null && _uri.getScheme()!=null && _uri.getHost()!=null) | |
| 445 { | |
| 446 info="/"; | |
| 447 _request.setRequestURI(""); | |
| 448 } | |
| 449 else | |
| 450 throw new HttpException(400); | |
| 451 } | |
| 452 _request.setPathInfo(info); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
453 |
| 826 | 454 if (_out!=null) |
| 455 _out.reopen(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
456 |
| 826 | 457 if (_request._async.isInitial()) |
| 458 { | |
| 459 _request.setDispatcherType(DispatcherType.REQUEST); | |
| 460 _connector.customize(_endp, _request); | |
| 461 server.handle(this); | |
| 462 } | |
| 463 else | |
| 464 { | |
| 921 | 465 _request.setDispatcherType(DispatcherType.ASYNC); |
| 826 | 466 server.handleAsync(this); |
| 467 } | |
| 468 } | |
| 469 catch (ContinuationThrowable e) | |
| 470 { | |
| 471 LOG.trace("",e); | |
| 472 } | |
| 473 catch (EofException e) | |
| 474 { | |
| 475 async_exception=e; | |
| 476 LOG.debug("",e); | |
| 477 error=true; | |
| 478 _request.setHandled(true); | |
| 479 if (!_response.isCommitted()) | |
| 480 _generator.sendError(500, null, null, true); | |
| 481 } | |
| 482 catch (RuntimeIOException e) | |
| 483 { | |
| 484 async_exception=e; | |
| 485 LOG.debug("",e); | |
| 486 error=true; | |
| 487 _request.setHandled(true); | |
| 488 } | |
| 489 catch (HttpException e) | |
| 490 { | |
| 491 LOG.debug("",e); | |
| 492 error=true; | |
| 493 _request.setHandled(true); | |
| 494 _response.sendError(e.getStatus(), e.getReason()); | |
| 495 } | |
| 496 catch (Throwable e) | |
| 497 { | |
| 498 async_exception=e; | |
| 499 LOG.warn(String.valueOf(_uri),e); | |
| 500 error=true; | |
| 501 _request.setHandled(true); | |
| 502 _generator.sendError(info==null?400:500, null, null, true); | |
| 503 | |
| 504 } | |
| 505 finally | |
| 506 { | |
| 507 handling = !_request._async.unhandle() && server.isRunning() && _server!=null; | |
| 508 } | |
| 509 } | |
| 510 } | |
| 511 finally | |
| 512 { | |
| 513 if (threadName!=null) | |
| 514 Thread.currentThread().setName(threadName); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
515 |
| 826 | 516 if (_request._async.isUncompleted()) |
| 517 { | |
| 518 | |
| 519 _request._async.doComplete(async_exception); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
520 |
| 826 | 521 if (_expect100Continue) |
| 522 { | |
| 523 LOG.debug("100 continues not sent"); | |
| 524 // We didn't send 100 continues, but the latest interpretation | |
| 525 // of the spec (see httpbis) is that the client will either | |
| 526 // send the body anyway, or close. So we no longer need to | |
| 527 // do anything special here other than make the connection not persistent | |
| 528 _expect100Continue = false; | |
| 529 if (!_response.isCommitted()) | |
| 530 _generator.setPersistent(false); | |
| 531 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
532 |
| 826 | 533 if(_endp.isOpen()) |
| 534 { | |
| 535 if (error) | |
| 536 { | |
| 537 _endp.shutdownOutput(); | |
| 538 _generator.setPersistent(false); | |
| 539 if (!_generator.isComplete()) | |
| 540 _response.complete(); | |
| 541 } | |
| 542 else | |
| 543 { | |
| 544 if (!_response.isCommitted() && !_request.isHandled()) | |
| 545 _response.sendError(HttpServletResponse.SC_NOT_FOUND); | |
| 546 _response.complete(); | |
| 547 if (_generator.isPersistent()) | |
| 548 _connector.persist(_endp); | |
| 549 } | |
| 550 } | |
| 551 else | |
| 552 { | |
| 553 _response.complete(); | |
| 554 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
555 |
| 826 | 556 _request.setHandled(true); |
| 557 } | |
| 558 } | |
| 559 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
560 |
| 826 | 561 /* ------------------------------------------------------------ */ |
| 562 public abstract Connection handle() throws IOException; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
563 |
| 826 | 564 /* ------------------------------------------------------------ */ |
| 565 public void commitResponse(boolean last) throws IOException | |
| 566 { | |
| 567 if (!_generator.isCommitted()) | |
| 568 { | |
| 569 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
| 570 try | |
| 571 { | |
| 572 // If the client was expecting 100 continues, but we sent something | |
| 573 // else, then we need to close the connection | |
| 574 if (_expect100Continue && _response.getStatus()!=100) | |
| 575 _generator.setPersistent(false); | |
| 576 _generator.completeHeader(_responseFields, last); | |
| 577 } | |
| 578 catch(RuntimeException e) | |
| 579 { | |
| 580 LOG.warn("header full: " + e); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
581 |
| 826 | 582 _response.reset(); |
| 583 _generator.reset(); | |
| 584 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
| 585 _generator.completeHeader(_responseFields,Generator.LAST); | |
| 586 _generator.complete(); | |
| 587 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
| 588 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
589 |
| 826 | 590 } |
| 591 if (last) | |
| 592 _generator.complete(); | |
| 593 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
594 |
| 826 | 595 /* ------------------------------------------------------------ */ |
| 596 public void completeResponse() throws IOException | |
| 597 { | |
| 598 if (!_generator.isCommitted()) | |
| 599 { | |
| 600 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
| 601 try | |
| 602 { | |
| 603 _generator.completeHeader(_responseFields, Generator.LAST); | |
| 604 } | |
| 605 catch(RuntimeException e) | |
| 606 { | |
| 607 LOG.warn("header full: "+e); | |
| 608 LOG.debug("",e); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
609 |
| 826 | 610 _response.reset(); |
| 611 _generator.reset(); | |
| 612 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
| 613 _generator.completeHeader(_responseFields,Generator.LAST); | |
| 614 _generator.complete(); | |
| 615 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
| 616 } | |
| 617 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
618 |
| 826 | 619 _generator.complete(); |
| 620 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
621 |
| 826 | 622 /* ------------------------------------------------------------ */ |
| 623 public void flushResponse() throws IOException | |
| 624 { | |
| 625 try | |
| 626 { | |
| 627 commitResponse(Generator.MORE); | |
| 628 _generator.flushBuffer(); | |
| 629 } | |
| 630 catch(IOException e) | |
| 631 { | |
| 632 throw (e instanceof EofException) ? e:new EofException(e); | |
| 633 } | |
| 634 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
635 |
| 826 | 636 /* ------------------------------------------------------------ */ |
| 637 public Generator getGenerator() | |
| 638 { | |
| 639 return _generator; | |
| 640 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
641 |
| 826 | 642 /* ------------------------------------------------------------ */ |
| 643 public boolean isIncluding() | |
| 644 { | |
| 645 return _include>0; | |
| 646 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
647 |
| 826 | 648 /* ------------------------------------------------------------ */ |
| 649 public void include() | |
| 650 { | |
| 651 _include++; | |
| 652 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
653 |
| 826 | 654 /* ------------------------------------------------------------ */ |
| 655 public void included() | |
| 656 { | |
| 657 _include--; | |
| 658 if (_out!=null) | |
| 659 _out.reopen(); | |
| 660 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
661 |
| 826 | 662 /* ------------------------------------------------------------ */ |
| 663 public boolean isIdle() | |
| 664 { | |
| 665 return _generator.isIdle() && (_parser.isIdle() || _delayedHandling); | |
| 666 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
667 |
| 826 | 668 /* ------------------------------------------------------------ */ |
| 669 /** | |
| 670 * @see org.eclipse.jetty.io.Connection#isSuspended() | |
| 671 */ | |
| 672 public boolean isSuspended() | |
| 673 { | |
| 674 return _request.getAsyncContinuation().isSuspended(); | |
| 675 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
676 |
| 826 | 677 /* ------------------------------------------------------------ */ |
| 678 public void onClose() | |
| 679 { | |
| 680 LOG.debug("closed {}",this); | |
| 681 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
682 |
| 826 | 683 /* ------------------------------------------------------------ */ |
| 684 public boolean isExpecting100Continues() | |
| 685 { | |
| 686 return _expect100Continue; | |
| 687 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
688 |
| 826 | 689 /* ------------------------------------------------------------ */ |
| 690 public boolean isExpecting102Processing() | |
| 691 { | |
| 692 return _expect102Processing; | |
| 693 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
694 |
| 826 | 695 /* ------------------------------------------------------------ */ |
| 696 public int getMaxIdleTime() | |
| 697 { | |
| 698 if (_connector.isLowResources() && _endp.getMaxIdleTime()==_connector.getMaxIdleTime()) | |
| 913 | 699 return 0; |
| 826 | 700 if (_endp.getMaxIdleTime()>0) |
| 701 return _endp.getMaxIdleTime(); | |
| 702 return _connector.getMaxIdleTime(); | |
| 703 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
704 |
| 826 | 705 /* ------------------------------------------------------------ */ |
| 706 public String toString() | |
| 707 { | |
| 708 return String.format("%s,g=%s,p=%s,r=%d", | |
| 709 super.toString(), | |
| 710 _generator, | |
| 711 _parser, | |
| 712 _requests); | |
| 713 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
714 |
| 826 | 715 /* ------------------------------------------------------------ */ |
| 716 protected void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
| 717 { | |
| 718 uri=uri.asImmutableBuffer(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
719 |
| 826 | 720 _host = false; |
| 721 _expect = false; | |
| 722 _expect100Continue=false; | |
| 723 _expect102Processing=false; | |
| 724 _delayedHandling=false; | |
| 725 _charset=null; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
726 |
| 826 | 727 if(_request.getTimeStamp()==0) |
| 728 _request.setTimeStamp(System.currentTimeMillis()); | |
| 729 _request.setMethod(method.toString()); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
730 |
| 826 | 731 try |
| 732 { | |
| 733 _head=false; | |
| 734 switch (HttpMethods.CACHE.getOrdinal(method)) | |
| 735 { | |
| 736 case HttpMethods.CONNECT_ORDINAL: | |
| 737 _uri.parseConnect(uri.array(), uri.getIndex(), uri.length()); | |
| 738 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
739 |
| 826 | 740 case HttpMethods.HEAD_ORDINAL: |
| 741 _head=true; | |
| 742 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
| 743 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
744 |
| 826 | 745 default: |
| 746 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
| 747 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
748 |
| 826 | 749 _request.setUri(_uri); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
750 |
| 826 | 751 if (version==null) |
| 752 { | |
| 753 _request.setProtocol(HttpVersions.HTTP_0_9); | |
| 754 _version=HttpVersions.HTTP_0_9_ORDINAL; | |
| 755 } | |
| 756 else | |
| 757 { | |
| 758 version= HttpVersions.CACHE.get(version); | |
| 759 if (version==null) | |
| 760 throw new HttpException(HttpStatus.BAD_REQUEST_400,null); | |
| 761 _version = HttpVersions.CACHE.getOrdinal(version); | |
| 762 if (_version <= 0) _version = HttpVersions.HTTP_1_0_ORDINAL; | |
| 763 _request.setProtocol(version.toString()); | |
| 764 } | |
| 765 } | |
| 766 catch (Exception e) | |
| 767 { | |
| 768 LOG.debug("",e); | |
| 769 if (e instanceof HttpException) | |
| 770 throw (HttpException)e; | |
| 771 throw new HttpException(HttpStatus.BAD_REQUEST_400,null,e); | |
| 772 } | |
| 773 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
774 |
| 826 | 775 /* ------------------------------------------------------------ */ |
| 776 protected void parsedHeader(Buffer name, Buffer value) throws IOException | |
| 777 { | |
| 778 int ho = HttpHeaders.CACHE.getOrdinal(name); | |
| 779 switch (ho) | |
| 780 { | |
| 781 case HttpHeaders.HOST_ORDINAL: | |
| 782 // TODO check if host matched a host in the URI. | |
| 783 _host = true; | |
| 784 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
785 |
| 826 | 786 case HttpHeaders.EXPECT_ORDINAL: |
| 787 if (_version>=HttpVersions.HTTP_1_1_ORDINAL) | |
| 788 { | |
| 789 value = HttpHeaderValues.CACHE.lookup(value); | |
| 790 switch(HttpHeaderValues.CACHE.getOrdinal(value)) | |
| 791 { | |
| 792 case HttpHeaderValues.CONTINUE_ORDINAL: | |
| 793 _expect100Continue=_generator instanceof HttpGenerator; | |
| 794 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
795 |
| 826 | 796 case HttpHeaderValues.PROCESSING_ORDINAL: |
| 797 _expect102Processing=_generator instanceof HttpGenerator; | |
| 798 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
799 |
| 826 | 800 default: |
| 801 String[] values = value.toString().split(","); | |
| 802 for (int i=0;values!=null && i<values.length;i++) | |
| 803 { | |
| 804 CachedBuffer cb=HttpHeaderValues.CACHE.get(values[i].trim()); | |
| 805 if (cb==null) | |
| 806 _expect=true; | |
| 807 else | |
| 808 { | |
| 809 switch(cb.getOrdinal()) | |
| 810 { | |
| 811 case HttpHeaderValues.CONTINUE_ORDINAL: | |
| 812 _expect100Continue=_generator instanceof HttpGenerator; | |
| 813 break; | |
| 814 case HttpHeaderValues.PROCESSING_ORDINAL: | |
| 815 _expect102Processing=_generator instanceof HttpGenerator; | |
| 816 break; | |
| 817 default: | |
| 818 _expect=true; | |
| 819 } | |
| 820 } | |
| 821 } | |
| 822 } | |
| 823 } | |
| 824 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
825 |
| 826 | 826 case HttpHeaders.ACCEPT_ENCODING_ORDINAL: |
| 827 case HttpHeaders.USER_AGENT_ORDINAL: | |
| 828 value = HttpHeaderValues.CACHE.lookup(value); | |
| 829 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
830 |
| 826 | 831 case HttpHeaders.CONTENT_TYPE_ORDINAL: |
| 832 value = MimeTypes.CACHE.lookup(value); | |
| 833 _charset=MimeTypes.getCharsetFromContentType(value); | |
| 834 break; | |
| 835 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
836 |
| 826 | 837 _requestFields.add(name, value); |
| 838 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
839 |
| 826 | 840 /* ------------------------------------------------------------ */ |
| 841 protected void headerComplete() throws IOException | |
| 842 { | |
| 843 // Handle idle race | |
| 844 if (_endp.isOutputShutdown()) | |
| 845 { | |
| 846 _endp.close(); | |
| 847 return; | |
| 848 } | |
| 849 | |
| 850 _requests++; | |
| 851 _generator.setVersion(_version); | |
| 852 switch (_version) | |
| 853 { | |
| 854 case HttpVersions.HTTP_0_9_ORDINAL: | |
| 855 break; | |
| 856 case HttpVersions.HTTP_1_0_ORDINAL: | |
| 857 _generator.setHead(_head); | |
| 858 if (_parser.isPersistent()) | |
| 859 { | |
| 860 _responseFields.add(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.KEEP_ALIVE_BUFFER); | |
| 861 _generator.setPersistent(true); | |
| 862 } | |
| 863 else if (HttpMethods.CONNECT.equals(_request.getMethod())) | |
| 864 { | |
| 865 _generator.setPersistent(true); | |
| 866 _parser.setPersistent(true); | |
| 867 } | |
| 868 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
869 |
| 826 | 870 case HttpVersions.HTTP_1_1_ORDINAL: |
| 871 _generator.setHead(_head); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
872 |
| 826 | 873 if (!_parser.isPersistent()) |
| 874 { | |
| 875 _responseFields.add(HttpHeaders.CONNECTION_BUFFER,HttpHeaderValues.CLOSE_BUFFER); | |
| 876 _generator.setPersistent(false); | |
| 877 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
878 |
| 826 | 879 if (!_host) |
| 880 { | |
| 881 LOG.debug("!host {}",this); | |
| 882 _generator.setResponse(HttpStatus.BAD_REQUEST_400, null); | |
| 883 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
| 884 _generator.completeHeader(_responseFields, true); | |
| 885 _generator.complete(); | |
| 886 return; | |
| 887 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
888 |
| 826 | 889 if (_expect) |
| 890 { | |
| 891 LOG.debug("!expectation {}",this); | |
| 892 _generator.setResponse(HttpStatus.EXPECTATION_FAILED_417, null); | |
| 893 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
| 894 _generator.completeHeader(_responseFields, true); | |
| 895 _generator.complete(); | |
| 896 return; | |
| 897 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
898 |
| 826 | 899 break; |
| 900 default: | |
| 901 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
902 |
| 826 | 903 if(_charset!=null) |
| 904 _request.setCharacterEncodingUnchecked(_charset); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
905 |
| 826 | 906 // Either handle now or wait for first content |
| 907 if ((((HttpParser)_parser).getContentLength()<=0 && !((HttpParser)_parser).isChunking())||_expect100Continue) | |
| 908 handleRequest(); | |
| 909 else | |
| 910 _delayedHandling=true; | |
| 911 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
912 |
| 826 | 913 /* ------------------------------------------------------------ */ |
| 914 protected void content(Buffer buffer) throws IOException | |
| 915 { | |
| 916 if (_delayedHandling) | |
| 917 { | |
| 918 _delayedHandling=false; | |
| 919 handleRequest(); | |
| 920 } | |
| 921 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
922 |
| 826 | 923 /* ------------------------------------------------------------ */ |
| 924 public void messageComplete(long contentLength) throws IOException | |
| 925 { | |
| 926 if (_delayedHandling) | |
| 927 { | |
| 928 _delayedHandling=false; | |
| 929 handleRequest(); | |
| 930 } | |
| 931 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
932 |
| 826 | 933 /* ------------------------------------------------------------ */ |
| 934 public void earlyEOF() | |
| 935 { | |
| 936 _earlyEOF = true; | |
| 937 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
938 |
| 826 | 939 /* ------------------------------------------------------------ */ |
| 940 /* ------------------------------------------------------------ */ | |
| 941 /* ------------------------------------------------------------ */ | |
| 942 private class RequestHandler extends HttpParser.EventHandler | |
| 943 { | |
| 944 /* | |
| 945 * | |
| 946 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#startRequest(org.eclipse.io.Buffer, | |
| 947 * org.eclipse.io.Buffer, org.eclipse.io.Buffer) | |
| 948 */ | |
| 949 @Override | |
| 950 public void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
| 951 { | |
| 952 AbstractHttpConnection.this.startRequest(method, uri, version); | |
| 953 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
954 |
| 826 | 955 /* |
| 956 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#parsedHeaderValue(org.eclipse.io.Buffer) | |
| 957 */ | |
| 958 @Override | |
| 959 public void parsedHeader(Buffer name, Buffer value) throws IOException | |
| 960 { | |
| 961 AbstractHttpConnection.this.parsedHeader(name, value); | |
| 962 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
963 |
| 826 | 964 /* |
| 965 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#headerComplete() | |
| 966 */ | |
| 967 @Override | |
| 968 public void headerComplete() throws IOException | |
| 969 { | |
| 970 AbstractHttpConnection.this.headerComplete(); | |
| 971 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
972 |
| 826 | 973 /* ------------------------------------------------------------ */ |
| 974 /* | |
| 975 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#content(int, org.eclipse.io.Buffer) | |
| 976 */ | |
| 977 @Override | |
| 978 public void content(Buffer ref) throws IOException | |
| 979 { | |
| 980 AbstractHttpConnection.this.content(ref); | |
| 981 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
982 |
| 826 | 983 /* ------------------------------------------------------------ */ |
| 984 /* | |
| 985 * (non-Javadoc) | |
| 986 * | |
| 987 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#messageComplete(int) | |
| 988 */ | |
| 989 @Override | |
| 990 public void messageComplete(long contentLength) throws IOException | |
| 991 { | |
| 992 AbstractHttpConnection.this.messageComplete(contentLength); | |
| 993 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
994 |
| 826 | 995 /* ------------------------------------------------------------ */ |
| 996 /* | |
| 997 * (non-Javadoc) | |
| 998 * | |
| 999 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#startResponse(org.eclipse.io.Buffer, int, | |
| 1000 * org.eclipse.io.Buffer) | |
| 1001 */ | |
| 1002 @Override | |
| 1003 public void startResponse(Buffer version, int status, Buffer reason) | |
| 1004 { | |
| 1005 if (LOG.isDebugEnabled()) | |
| 1006 LOG.debug("Bad request!: "+version+" "+status+" "+reason); | |
| 1007 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1008 |
| 826 | 1009 /* ------------------------------------------------------------ */ |
| 1010 /* | |
| 1011 * (non-Javadoc) | |
| 1012 * | |
| 1013 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#earlyEOF() | |
| 1014 */ | |
| 1015 @Override | |
| 1016 public void earlyEOF() | |
| 1017 { | |
| 1018 AbstractHttpConnection.this.earlyEOF(); | |
| 1019 } | |
| 1020 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1021 |
| 826 | 1022 /* ------------------------------------------------------------ */ |
| 1023 /* ------------------------------------------------------------ */ | |
| 1024 /* ------------------------------------------------------------ */ | |
| 1025 public class Output extends HttpOutput | |
| 1026 { | |
| 1027 Output() | |
| 1028 { | |
| 1029 super(AbstractHttpConnection.this); | |
| 1030 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1031 |
| 826 | 1032 /* ------------------------------------------------------------ */ |
| 1033 /* | |
| 1034 * @see java.io.OutputStream#close() | |
| 1035 */ | |
| 1036 @Override | |
| 1037 public void close() throws IOException | |
| 1038 { | |
| 1039 if (isClosed()) | |
| 1040 return; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1041 |
| 826 | 1042 if (!isIncluding() && !super._generator.isCommitted()) |
| 1043 commitResponse(Generator.LAST); | |
| 1044 else | |
| 1045 flushResponse(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1046 |
| 826 | 1047 super.close(); |
| 1048 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1049 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1050 |
| 826 | 1051 /* ------------------------------------------------------------ */ |
| 1052 /* | |
| 1053 * @see java.io.OutputStream#flush() | |
| 1054 */ | |
| 1055 @Override | |
| 1056 public void flush() throws IOException | |
| 1057 { | |
| 1058 if (!super._generator.isCommitted()) | |
| 1059 commitResponse(Generator.MORE); | |
| 1060 super.flush(); | |
| 1061 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1062 |
| 826 | 1063 /* ------------------------------------------------------------ */ |
| 1064 /* | |
| 1065 * @see javax.servlet.ServletOutputStream#print(java.lang.String) | |
| 1066 */ | |
| 1067 @Override | |
| 1068 public void print(String s) throws IOException | |
| 1069 { | |
| 1070 if (isClosed()) | |
| 1071 throw new IOException("Closed"); | |
| 1072 PrintWriter writer=getPrintWriter(null); | |
| 1073 writer.print(s); | |
| 1074 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1075 |
| 826 | 1076 /* ------------------------------------------------------------ */ |
| 1077 public void sendResponse(Buffer response) throws IOException | |
| 1078 { | |
| 1079 ((HttpGenerator)super._generator).sendResponse(response); | |
| 1080 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1081 |
| 826 | 1082 /* ------------------------------------------------------------ */ |
| 1083 public void sendContent(Object content) throws IOException | |
| 1084 { | |
| 1085 Resource resource=null; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1086 |
| 826 | 1087 if (isClosed()) |
| 1088 throw new IOException("Closed"); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1089 |
| 826 | 1090 if (super._generator.isWritten()) |
| 1091 throw new IllegalStateException("!empty"); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1092 |
| 826 | 1093 if (content instanceof Resource) |
| 1094 { | |
| 1095 resource=(Resource)content; | |
| 1096 _responseFields.putDateField(HttpHeaders.LAST_MODIFIED_BUFFER, resource.lastModified()); | |
| 1097 content=resource.getInputStream(); | |
| 1098 } | |
| 1099 | |
| 1100 // Process content. | |
| 1101 if (content instanceof Buffer) | |
| 1102 { | |
| 1103 super._generator.addContent((Buffer) content, Generator.LAST); | |
| 1104 commitResponse(Generator.LAST); | |
| 1105 } | |
| 1106 else if (content instanceof InputStream) | |
| 1107 { | |
| 1108 InputStream in = (InputStream)content; | |
| 1109 | |
| 1110 try | |
| 1111 { | |
| 1112 int max = super._generator.prepareUncheckedAddContent(); | |
| 1113 Buffer buffer = super._generator.getUncheckedBuffer(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1114 |
| 826 | 1115 int len=buffer.readFrom(in,max); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1116 |
| 826 | 1117 while (len>=0) |
| 1118 { | |
| 1119 super._generator.completeUncheckedAddContent(); | |
| 1120 _out.flush(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1121 |
| 826 | 1122 max = super._generator.prepareUncheckedAddContent(); |
| 1123 buffer = super._generator.getUncheckedBuffer(); | |
| 1124 len=buffer.readFrom(in,max); | |
| 1125 } | |
| 1126 super._generator.completeUncheckedAddContent(); | |
| 1127 _out.flush(); | |
| 1128 } | |
| 1129 finally | |
| 1130 { | |
| 1131 if (resource!=null) | |
| 1132 resource.release(); | |
| 1133 else | |
| 1134 in.close(); | |
| 1135 } | |
| 1136 } | |
| 1137 else | |
| 1138 throw new IllegalArgumentException("unknown content type?"); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1139 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1140 |
| 826 | 1141 } |
| 1142 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1143 |
| 826 | 1144 /* ------------------------------------------------------------ */ |
| 1145 /* ------------------------------------------------------------ */ | |
| 1146 /* ------------------------------------------------------------ */ | |
| 1147 public class OutputWriter extends HttpWriter | |
| 1148 { | |
| 1149 OutputWriter() | |
| 1150 { | |
| 1151 super(AbstractHttpConnection.this._out); | |
| 1152 } | |
| 1153 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1154 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1155 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1156 } |
