aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/OSHttpServer.cs
diff options
context:
space:
mode:
authorDr Scofield2008-05-29 15:46:54 +0000
committerDr Scofield2008-05-29 15:46:54 +0000
commitd7ec68669151b75cba1a5a213c653b4d365cf962 (patch)
tree2c9cd41eb4903dc91574d02fafcfe4d3eb6891ba /OpenSim/Framework/Servers/OSHttpServer.cs
parentattempting to get to the bottom of unresponsive grids servers by (diff)
downloadopensim-SC_OLD-d7ec68669151b75cba1a5a213c653b4d365cf962.zip
opensim-SC_OLD-d7ec68669151b75cba1a5a213c653b4d365cf962.tar.gz
opensim-SC_OLD-d7ec68669151b75cba1a5a213c653b4d365cf962.tar.bz2
opensim-SC_OLD-d7ec68669151b75cba1a5a213c653b4d365cf962.tar.xz
this is a snapshot of the OSHttpServer work-in-progress. it's an initial skeleton,
far from complete, just want to check in early and often.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/OSHttpServer.cs119
1 files changed, 119 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/OSHttpServer.cs b/OpenSim/Framework/Servers/OSHttpServer.cs
new file mode 100644
index 0000000..e6caac3
--- /dev/null
+++ b/OpenSim/Framework/Servers/OSHttpServer.cs
@@ -0,0 +1,119 @@
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
28using System;
29using System.Net;
30using System.Net.Sockets;
31using System.Reflection;
32using System.Threading;
33using System.Security.Cryptography.X509Certificates;
34using log4net;
35using HttpServer;
36
37using HttpListener = HttpServer.HttpListener;
38
39namespace OpenSim.Framework.Servers
40{
41 /// <summary>
42 /// OSHttpServer provides an HTTP server bound to a specific
43 /// port. When instantiated with just address and port it uses
44 /// normal HTTP, when instantiated with address, port, and X509
45 /// certificate, it uses HTTPS.
46 /// </summary>
47 public class OSHttpServer
48 {
49 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
50
51 // underlying HttpServer.HttpListener
52 protected HttpListener _listener;
53 protected Thread _engine;
54
55 // OSHttpRequestPumps "pumping" incoming OSHttpRequests
56 // upwards
57 protected OSHttpRequestPump[] _pumps;
58
59 // thread identifier
60 protected string _engineId;
61 public string EngineID
62 {
63 get { return _engineId; }
64 }
65
66 /// <summary>
67 /// True if this is an HTTPS connection; false otherwise.
68 /// </summary>
69 protected bool _isSecure;
70 public bool IsSecure
71 {
72 get { return _isSecure; }
73 }
74
75 /// <summary>
76 /// Instantiate an HTTP server.
77 /// </summary>
78 public OSHttpServer(IPAddress address, int port, int poolSize)
79 {
80 _engineId = String.Format("OSHttpServer [HTTP:{0}/ps:{1}]", port, poolSize);
81 _isSecure = false;
82
83 _pumps = OSHttpRequestPump.Pumps(this, poolSize);
84 }
85
86 /// <summary>
87 /// Instantiate an HTTPS server.
88 /// </summary>
89 public OSHttpServer(IPAddress address, int port, X509Certificate certificate, int poolSize) :
90 this(address, port, poolSize)
91 {
92 _engineId = String.Format("OSHttpServer [HTTPS:{0}/ps:{1}]", port, poolSize);
93 _isSecure = true;
94 }
95
96 /// <summary>
97 /// Start the HTTP server engine.
98 /// </summary>
99 public void Start()
100 {
101 _engine = new Thread(new ThreadStart(Engine));
102 _engine.Name = _engineId;
103 _engine.IsBackground = true;
104 _engine.Start();
105 ThreadTracker.Add(_engine);
106 }
107
108 /// <summary>
109 /// </summary>
110 private void Engine()
111 {
112 while (true)
113 {
114 // do stuff
115 }
116 }
117
118 }
119}