diff options
Diffstat (limited to 'OpenSim/Server/Base')
-rw-r--r-- | OpenSim/Server/Base/HttpServerBase.cs | 86 | ||||
-rw-r--r-- | OpenSim/Server/Base/ServerUtils.cs | 148 | ||||
-rw-r--r-- | OpenSim/Server/Base/ServicesServerBase.cs | 233 |
3 files changed, 467 insertions, 0 deletions
diff --git a/OpenSim/Server/Base/HttpServerBase.cs b/OpenSim/Server/Base/HttpServerBase.cs new file mode 100644 index 0000000..dc12cf9 --- /dev/null +++ b/OpenSim/Server/Base/HttpServerBase.cs | |||
@@ -0,0 +1,86 @@ | |||
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; | ||
29 | using System.Threading; | ||
30 | using System.Reflection; | ||
31 | using OpenSim.Framework.Console; | ||
32 | using OpenSim.Framework.Servers.HttpServer; | ||
33 | using log4net; | ||
34 | using Nini.Config; | ||
35 | |||
36 | namespace OpenSim.Server.Base | ||
37 | { | ||
38 | public class HttpServerBase : ServicesServerBase | ||
39 | { | ||
40 | // Logger | ||
41 | // | ||
42 | private static readonly ILog m_log = | ||
43 | LogManager.GetLogger( | ||
44 | MethodBase.GetCurrentMethod().DeclaringType); | ||
45 | |||
46 | // The http server instance | ||
47 | // | ||
48 | protected BaseHttpServer m_HttpServer = null; | ||
49 | |||
50 | public IHttpServer HttpServer | ||
51 | { | ||
52 | get { return m_HttpServer; } | ||
53 | } | ||
54 | |||
55 | // Handle all the automagical stuff | ||
56 | // | ||
57 | public HttpServerBase(string prompt, string[] args) : base(prompt, args) | ||
58 | { | ||
59 | } | ||
60 | |||
61 | protected override void ReadConfig() | ||
62 | { | ||
63 | IConfig networkConfig = m_Config.Configs["Network"]; | ||
64 | |||
65 | if (networkConfig == null) | ||
66 | { | ||
67 | System.Console.WriteLine("Section 'Network' not found, server can't start"); | ||
68 | Thread.CurrentThread.Abort(); | ||
69 | } | ||
70 | uint port = (uint)networkConfig.GetInt("port", 0); | ||
71 | |||
72 | if (port == 0) | ||
73 | { | ||
74 | System.Console.WriteLine("Port number not specified or 0, server can't start"); | ||
75 | Thread.CurrentThread.Abort(); | ||
76 | } | ||
77 | |||
78 | m_HttpServer = new BaseHttpServer(port); | ||
79 | } | ||
80 | |||
81 | protected override void Initialise() | ||
82 | { | ||
83 | m_HttpServer.Start(); | ||
84 | } | ||
85 | } | ||
86 | } | ||
diff --git a/OpenSim/Server/Base/ServerUtils.cs b/OpenSim/Server/Base/ServerUtils.cs new file mode 100644 index 0000000..ae0c3d4 --- /dev/null +++ b/OpenSim/Server/Base/ServerUtils.cs | |||
@@ -0,0 +1,148 @@ | |||
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; | ||
29 | using System.IO; | ||
30 | using System.Reflection; | ||
31 | using System.Xml; | ||
32 | using System.Xml.Serialization; | ||
33 | using System.Text; | ||
34 | |||
35 | namespace OpenSim.Server.Base | ||
36 | { | ||
37 | public static class ServerUtils | ||
38 | { | ||
39 | public static string SLAssetTypeToContentType(int assetType) | ||
40 | { | ||
41 | switch (assetType) | ||
42 | { | ||
43 | case 0: | ||
44 | return "image/jp2"; | ||
45 | case 1: | ||
46 | return "application/ogg"; | ||
47 | case 2: | ||
48 | return "application/x-metaverse-callingcard"; | ||
49 | case 3: | ||
50 | return "application/x-metaverse-landmark"; | ||
51 | case 5: | ||
52 | return "application/x-metaverse-clothing"; | ||
53 | case 6: | ||
54 | return "application/x-metaverse-primitive"; | ||
55 | case 7: | ||
56 | return "application/x-metaverse-notecard"; | ||
57 | case 8: | ||
58 | return "application/x-metaverse-folder"; | ||
59 | case 10: | ||
60 | return "application/x-metaverse-lsl"; | ||
61 | case 11: | ||
62 | return "application/x-metaverse-lso"; | ||
63 | case 12: | ||
64 | return "image/tga"; | ||
65 | case 13: | ||
66 | return "application/x-metaverse-bodypart"; | ||
67 | case 17: | ||
68 | return "audio/x-wav"; | ||
69 | case 19: | ||
70 | return "image/jpeg"; | ||
71 | case 20: | ||
72 | return "application/x-metaverse-animation"; | ||
73 | case 21: | ||
74 | return "application/x-metaverse-gesture"; | ||
75 | case 22: | ||
76 | return "application/x-metaverse-simstate"; | ||
77 | default: | ||
78 | return "application/octet-stream"; | ||
79 | } | ||
80 | } | ||
81 | |||
82 | public static byte[] SerializeResult(XmlSerializer xs, object data) | ||
83 | { | ||
84 | MemoryStream ms = new MemoryStream(); | ||
85 | XmlTextWriter xw = new XmlTextWriter(ms, Encoding.UTF8); | ||
86 | xw.Formatting = Formatting.Indented; | ||
87 | xs.Serialize(xw, data); | ||
88 | xw.Flush(); | ||
89 | |||
90 | ms.Seek(0, SeekOrigin.Begin); | ||
91 | byte[] ret = ms.GetBuffer(); | ||
92 | Array.Resize<byte>(ref ret, (int)ms.Length); | ||
93 | |||
94 | return ret; | ||
95 | } | ||
96 | |||
97 | public static T LoadPlugin<T>(string dllName, Object[] args) where T:class | ||
98 | { | ||
99 | string[] parts = dllName.Split(new char[] {':'}); | ||
100 | |||
101 | dllName = parts[0]; | ||
102 | |||
103 | string className = String.Empty; | ||
104 | |||
105 | if (parts.Length > 1) | ||
106 | className = parts[1]; | ||
107 | |||
108 | return LoadPlugin<T>(dllName, className, args); | ||
109 | } | ||
110 | |||
111 | public static T LoadPlugin<T>(string dllName, string className, Object[] args) where T:class | ||
112 | { | ||
113 | string interfaceName = typeof(T).ToString(); | ||
114 | |||
115 | try | ||
116 | { | ||
117 | Assembly pluginAssembly = Assembly.LoadFrom(dllName); | ||
118 | |||
119 | foreach (Type pluginType in pluginAssembly.GetTypes()) | ||
120 | { | ||
121 | if (pluginType.IsPublic) | ||
122 | { | ||
123 | if (className != String.Empty && | ||
124 | pluginType.ToString() != | ||
125 | pluginType.Namespace + "." + className) | ||
126 | continue; | ||
127 | |||
128 | Type typeInterface = | ||
129 | pluginType.GetInterface(interfaceName, true); | ||
130 | if (typeInterface != null) | ||
131 | { | ||
132 | T plug = (T)Activator.CreateInstance(pluginType, | ||
133 | args); | ||
134 | |||
135 | return plug; | ||
136 | } | ||
137 | } | ||
138 | } | ||
139 | |||
140 | return null; | ||
141 | } | ||
142 | catch (Exception e) | ||
143 | { | ||
144 | return null; | ||
145 | } | ||
146 | } | ||
147 | } | ||
148 | } | ||
diff --git a/OpenSim/Server/Base/ServicesServerBase.cs b/OpenSim/Server/Base/ServicesServerBase.cs new file mode 100644 index 0000000..5350bce --- /dev/null +++ b/OpenSim/Server/Base/ServicesServerBase.cs | |||
@@ -0,0 +1,233 @@ | |||
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; | ||
29 | using System.Xml; | ||
30 | using System.Threading; | ||
31 | using System.Reflection; | ||
32 | using OpenSim.Framework.Console; | ||
33 | using log4net; | ||
34 | using log4net.Config; | ||
35 | using log4net.Appender; | ||
36 | using log4net.Core; | ||
37 | using log4net.Repository; | ||
38 | using Nini.Config; | ||
39 | |||
40 | namespace OpenSim.Server.Base | ||
41 | { | ||
42 | public class ServicesServerBase | ||
43 | { | ||
44 | // Logger | ||
45 | // | ||
46 | private static readonly ILog m_log = | ||
47 | LogManager.GetLogger( | ||
48 | MethodBase.GetCurrentMethod().DeclaringType); | ||
49 | |||
50 | // Command line args | ||
51 | // | ||
52 | protected string[] m_Arguments; | ||
53 | |||
54 | // Configuration | ||
55 | // | ||
56 | protected IConfigSource m_Config = null; | ||
57 | |||
58 | public IConfigSource Config | ||
59 | { | ||
60 | get { return m_Config; } | ||
61 | } | ||
62 | |||
63 | // Run flag | ||
64 | // | ||
65 | private bool m_Running = true; | ||
66 | |||
67 | // Handle all the automagical stuff | ||
68 | // | ||
69 | public ServicesServerBase(string prompt, string[] args) | ||
70 | { | ||
71 | // Save raw arguments | ||
72 | // | ||
73 | m_Arguments = args; | ||
74 | |||
75 | // Read command line | ||
76 | // | ||
77 | ArgvConfigSource argvConfig = new ArgvConfigSource(args); | ||
78 | |||
79 | argvConfig.AddSwitch("Startup", "console", "c"); | ||
80 | argvConfig.AddSwitch("Startup", "logfile", "l"); | ||
81 | argvConfig.AddSwitch("Startup", "inifile", "i"); | ||
82 | |||
83 | // Automagically create the ini file name | ||
84 | // | ||
85 | string fullName = Assembly.GetEntryAssembly().FullName; | ||
86 | AssemblyName assemblyName = new AssemblyName(fullName); | ||
87 | |||
88 | string iniFile = assemblyName.Name + ".ini"; | ||
89 | |||
90 | // Check if a file name was given on the command line | ||
91 | // | ||
92 | IConfig startupConfig = argvConfig.Configs["Startup"]; | ||
93 | if (startupConfig != null) | ||
94 | iniFile = startupConfig.GetString("inifile", iniFile); | ||
95 | |||
96 | // Find out of the file name is a URI and remote load it | ||
97 | // if it's possible. Load it as a local file otherwise. | ||
98 | // | ||
99 | Uri configUri; | ||
100 | |||
101 | try | ||
102 | { | ||
103 | if (Uri.TryCreate(iniFile, UriKind.Absolute, out configUri) && | ||
104 | configUri.Scheme == Uri.UriSchemeHttp) | ||
105 | { | ||
106 | XmlReader r = XmlReader.Create(iniFile); | ||
107 | m_Config = new XmlConfigSource(r); | ||
108 | } | ||
109 | else | ||
110 | { | ||
111 | m_Config = new IniConfigSource(iniFile); | ||
112 | } | ||
113 | } | ||
114 | catch (Exception) | ||
115 | { | ||
116 | System.Console.WriteLine("Error reading from config source {0}", | ||
117 | iniFile); | ||
118 | Thread.CurrentThread.Abort(); | ||
119 | } | ||
120 | |||
121 | // Merge the configuration from the command line into the | ||
122 | // loaded file | ||
123 | // | ||
124 | m_Config.Merge(argvConfig); | ||
125 | |||
126 | // Refresh the startupConfig post merge | ||
127 | // | ||
128 | if (m_Config.Configs["Startup"] != null) | ||
129 | { | ||
130 | startupConfig = m_Config.Configs["Startup"]; | ||
131 | } | ||
132 | |||
133 | // Allow derived classes to load config before the console is | ||
134 | // opened. | ||
135 | // | ||
136 | ReadConfig(); | ||
137 | |||
138 | // Create main console | ||
139 | // | ||
140 | string consoleType = "local"; | ||
141 | if (startupConfig != null) | ||
142 | consoleType = startupConfig.GetString("console", consoleType); | ||
143 | |||
144 | if (consoleType == "basic") | ||
145 | { | ||
146 | MainConsole.Instance = new CommandConsole(prompt); | ||
147 | } | ||
148 | else | ||
149 | { | ||
150 | MainConsole.Instance = new LocalConsole(prompt); | ||
151 | } | ||
152 | |||
153 | // Configure the appenders for log4net | ||
154 | // | ||
155 | OpenSimAppender consoleAppender = null; | ||
156 | FileAppender fileAppender = null; | ||
157 | |||
158 | XmlConfigurator.Configure(); | ||
159 | |||
160 | ILoggerRepository repository = LogManager.GetRepository(); | ||
161 | IAppender[] appenders = repository.GetAppenders(); | ||
162 | |||
163 | foreach (IAppender appender in appenders) | ||
164 | { | ||
165 | if (appender.Name == "Console") | ||
166 | { | ||
167 | consoleAppender = (OpenSimAppender)appender; | ||
168 | } | ||
169 | if (appender.Name == "LogFileAppender") | ||
170 | { | ||
171 | fileAppender = (FileAppender)appender; | ||
172 | } | ||
173 | } | ||
174 | |||
175 | if (consoleAppender == null) | ||
176 | { | ||
177 | System.Console.WriteLine("No console appender found. Server can't start"); | ||
178 | Thread.CurrentThread.Abort(); | ||
179 | } | ||
180 | else | ||
181 | { | ||
182 | consoleAppender.Console = MainConsole.Instance; | ||
183 | |||
184 | if (null == consoleAppender.Threshold) | ||
185 | consoleAppender.Threshold = Level.All; | ||
186 | } | ||
187 | |||
188 | // Set log file | ||
189 | // | ||
190 | if (fileAppender != null) | ||
191 | { | ||
192 | if (startupConfig != null) | ||
193 | fileAppender.File = startupConfig.GetString("logfile", | ||
194 | assemblyName.Name + ".log"); | ||
195 | } | ||
196 | |||
197 | // Register the quit command | ||
198 | // | ||
199 | MainConsole.Instance.Commands.AddCommand("base", false, "quit", | ||
200 | "quit", | ||
201 | "Quit the application", HandleQuit); | ||
202 | |||
203 | // Allow derived classes to perform initialization that | ||
204 | // needs to be done after the console has opened | ||
205 | // | ||
206 | Initialise(); | ||
207 | } | ||
208 | |||
209 | public virtual int Run() | ||
210 | { | ||
211 | while (m_Running) | ||
212 | { | ||
213 | MainConsole.Instance.Prompt(); | ||
214 | } | ||
215 | |||
216 | return 0; | ||
217 | } | ||
218 | |||
219 | protected virtual void HandleQuit(string module, string[] args) | ||
220 | { | ||
221 | m_Running = false; | ||
222 | m_log.Info("[CONSOLE] Quitting"); | ||
223 | } | ||
224 | |||
225 | protected virtual void ReadConfig() | ||
226 | { | ||
227 | } | ||
228 | |||
229 | protected virtual void Initialise() | ||
230 | { | ||
231 | } | ||
232 | } | ||
233 | } | ||