diff options
author | Dr Scofield | 2008-05-19 17:35:29 +0000 |
---|---|---|
committer | Dr Scofield | 2008-05-19 17:35:29 +0000 |
commit | 3e8adc0d7866fa9dc1b5270d5dbf3994245b6d1c (patch) | |
tree | c150d15e9f81555cdd31ad53a874cc2a87042bab /OpenSim/Framework/Servers/IHttpAgentHandler.cs | |
parent | Attempt to fix incorrect animations when using ODE (bugs #1320 / #1321) (diff) | |
download | opensim-SC_OLD-3e8adc0d7866fa9dc1b5270d5dbf3994245b6d1c.zip opensim-SC_OLD-3e8adc0d7866fa9dc1b5270d5dbf3994245b6d1c.tar.gz opensim-SC_OLD-3e8adc0d7866fa9dc1b5270d5dbf3994245b6d1c.tar.bz2 opensim-SC_OLD-3e8adc0d7866fa9dc1b5270d5dbf3994245b6d1c.tar.xz |
(from awebb)
This patch adds an additional handler to the existing BaseHttpServer.
It does not affect any of the existing behaviors except insofar as the
new handler may be selected.
It is selected first because its Agent-oriented nature means that it
should not be pre-empted. The new handler type is defined by IHttpAgentHandler
in Framework/Servers and has two interface methods: Match and Handle.
The Match function returns a boolean result based upon examination of
information presented in the User-Agent header.
The Handle function expects to get the request and response instances
associated with the flow. The handler is responsible for ALL activity
associated with the request except in the event of an unhandled exception,
in which case the HandleAgentRequest routine will generate a 500 status
message and close the stream.
There are two immediateley apparent (and VERY easy to implement)
improvements that could be made:
1. The Match call could be allowed to operate over the entire
request context., rather than just agent identity.
2. The Handler could return a boolean indication of whether or not
the request was actually handled, and if not, the remaining handler
mechanism could take a shot at it. This would eliminate issues
arising from pre-empted streams.
Diffstat (limited to 'OpenSim/Framework/Servers/IHttpAgentHandler.cs')
-rw-r--r-- | OpenSim/Framework/Servers/IHttpAgentHandler.cs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/IHttpAgentHandler.cs b/OpenSim/Framework/Servers/IHttpAgentHandler.cs new file mode 100644 index 0000000..9bca150 --- /dev/null +++ b/OpenSim/Framework/Servers/IHttpAgentHandler.cs | |||
@@ -0,0 +1,39 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System.Collections; | ||
29 | using System.IO; | ||
30 | using System.Net; | ||
31 | |||
32 | namespace OpenSim.Framework.Servers | ||
33 | { | ||
34 | public interface IHttpAgentHandler | ||
35 | { | ||
36 | void Handle(OSHttpRequest req, OSHttpResponse resp); | ||
37 | bool Match(string agent); | ||
38 | } | ||
39 | } | ||