Mercurial Hosting > luan
annotate src/org/eclipse/jetty/server/BlockingHttpConnection.java @ 973:4d9fe9cc554d
simplify AbstractConnection
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sat, 15 Oct 2016 23:03:00 -0600 |
| parents | 5ee36654b383 |
| children | d35b0a3a7a4a |
| 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 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
23 import org.eclipse.jetty.http.Generator; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
24 import org.eclipse.jetty.http.HttpException; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
25 import org.eclipse.jetty.http.HttpStatus; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
26 import org.eclipse.jetty.http.Parser; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
27 import org.eclipse.jetty.io.EndPoint; |
|
973
4d9fe9cc554d
simplify AbstractConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
972
diff
changeset
|
28 import org.eclipse.jetty.io.nio.ChannelEndPoint; |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
29 import org.eclipse.jetty.server.nio.BlockingChannelConnector; |
|
820
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
30 import org.slf4j.Logger; |
|
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
31 import org.slf4j.LoggerFactory; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
32 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
33 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
34 /* ------------------------------------------------------------ */ |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
35 /** Blocking Server HTTP Connection |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
36 */ |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
37 public final class BlockingHttpConnection extends AbstractHttpConnection |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
38 { |
| 874 | 39 private static final Logger LOG = LoggerFactory.getLogger(BlockingHttpConnection.class); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
40 |
|
973
4d9fe9cc554d
simplify AbstractConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
972
diff
changeset
|
41 public BlockingHttpConnection(BlockingChannelConnector connector, ChannelEndPoint endpoint) |
| 874 | 42 { |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
43 super(connector,endpoint); |
| 874 | 44 } |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
45 |
|
965
866f2e801618
handle() returns void
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
46 @Override |
|
866f2e801618
handle() returns void
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
47 public void handle() throws IOException |
| 874 | 48 { |
| 49 try | |
| 50 { | |
| 51 setCurrentConnection(this); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
52 |
| 874 | 53 // do while the endpoint is open |
| 54 // AND the connection has not changed | |
|
965
866f2e801618
handle() returns void
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
55 while (_endp.isOpen()) |
| 874 | 56 { |
| 57 try | |
| 58 { | |
| 59 // If we are not ended then parse available | |
| 60 if (!_parser.isComplete() && !_endp.isInputShutdown()) | |
| 61 _parser.parseAvailable(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
62 |
| 874 | 63 // Do we have more generating to do? |
| 64 // Loop here because some writes may take multiple steps and | |
| 65 // we need to flush them all before potentially blocking in the | |
| 66 // next loop. | |
| 67 if (_generator.isCommitted() && !_generator.isComplete() && !_endp.isOutputShutdown()) | |
| 68 _generator.flushBuffer(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
69 |
| 874 | 70 // Flush buffers |
| 71 _endp.flush(); | |
| 72 } | |
| 73 catch (HttpException e) | |
| 74 { | |
| 75 if (LOG.isDebugEnabled()) | |
| 76 { | |
| 77 LOG.debug("uri="+_uri); | |
| 78 LOG.debug("fields="+_requestFields); | |
| 79 LOG.debug("",e); | |
| 80 } | |
| 81 _generator.sendError(e.getStatus(), e.getReason(), null, true); | |
| 82 _parser.reset(); | |
| 83 _endp.shutdownOutput(); | |
| 84 } | |
| 85 finally | |
| 86 { | |
| 87 // Is this request/response round complete and are fully flushed? | |
| 88 if (_parser.isComplete() && _generator.isComplete()) | |
| 89 { | |
| 90 // Reset the parser/generator | |
| 91 reset(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
92 |
| 874 | 93 // TODO Is this required? |
| 94 if (!_generator.isPersistent() && !_endp.isOutputShutdown()) | |
| 95 { | |
| 96 LOG.warn("Safety net oshut!!! Please open a bugzilla"); | |
| 97 _endp.shutdownOutput(); | |
| 98 } | |
| 99 } | |
| 100 | |
| 101 // If we don't have a committed response and we are not suspended | |
|
934
fe461f7cfc8e
simplify AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
874
diff
changeset
|
102 if (_endp.isInputShutdown() && _generator.isIdle()) |
| 874 | 103 { |
| 104 // then no more can happen, so close. | |
| 105 _endp.close(); | |
| 106 } | |
| 107 } | |
| 108 } | |
| 109 } | |
| 110 finally | |
| 111 { | |
| 112 setCurrentConnection(null); | |
| 113 _parser.returnBuffers(); | |
| 114 _generator.returnBuffers(); | |
| 115 } | |
| 116 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
117 } |
