aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/ServerMain.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-05-18 21:04:25 +0000
committerMelanie Thielker2009-05-18 21:04:25 +0000
commitf7dbfe63e55ca875c1079084c4ca153f9a815327 (patch)
treefd73a0ddac4237b6f7ee5fc5462d89c557739ff6 /OpenSim/Server/ServerMain.cs
parentDLL name change in config var. (diff)
downloadopensim-SC_OLD-f7dbfe63e55ca875c1079084c4ca153f9a815327.zip
opensim-SC_OLD-f7dbfe63e55ca875c1079084c4ca153f9a815327.tar.gz
opensim-SC_OLD-f7dbfe63e55ca875c1079084c4ca153f9a815327.tar.bz2
opensim-SC_OLD-f7dbfe63e55ca875c1079084c4ca153f9a815327.tar.xz
This commit changes the way the new server works. There is no longer a server
exe for each function, rather each function is a connector and the server ini loads them. If you like your multiple processes, use -inifile with the server. Otherwise, you get one server process that serves all configured funcions, see example .ini. The new exe is OpenSim.Server.exe. Clean your bin, loads of names have changed!
Diffstat (limited to 'OpenSim/Server/ServerMain.cs')
-rw-r--r--OpenSim/Server/ServerMain.cs94
1 files changed, 94 insertions, 0 deletions
diff --git a/OpenSim/Server/ServerMain.cs b/OpenSim/Server/ServerMain.cs
new file mode 100644
index 0000000..352ae98
--- /dev/null
+++ b/OpenSim/Server/ServerMain.cs
@@ -0,0 +1,94 @@
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 Nini.Config;
29using log4net;
30using System.Reflection;
31using System;
32using System.Collections.Generic;
33using OpenSim.Server.Base;
34using OpenSim.Server.Handlers.Base;
35using OpenSim.Server.Handlers.Asset;
36
37namespace OpenSim.Server
38{
39 public class OpenSimServer
40 {
41 private static readonly ILog m_log =
42 LogManager.GetLogger(
43 MethodBase.GetCurrentMethod().DeclaringType);
44
45 protected static HttpServerBase m_Server = null;
46
47 protected static List<IServiceConnector> m_ServiceConnectors =
48 new List<IServiceConnector>();
49
50 static int Main(string[] args)
51 {
52 m_Server = new HttpServerBase("Asset", args);
53
54 IConfig serverConfig = m_Server.Config.Configs["Startup"];
55 if (serverConfig == null)
56 {
57 System.Console.WriteLine("Startup config section missing in .ini file");
58 throw new Exception("Configuration error");
59 }
60
61 string connList = serverConfig.GetString("ServiceConnectors", String.Empty);
62 string[] conns = connList.Split(new char[] {',', ' '});
63
64 foreach (string conn in conns)
65 {
66 if (conn == String.Empty)
67 continue;
68
69 string[] parts = conn.Split(new char[] {':'});
70 string friendlyName = parts[0];
71 if (parts.Length > 1)
72 friendlyName = parts[1];
73
74 m_log.InfoFormat("[SERVER]: Loading {0}", friendlyName);
75
76 Object[] modargs = new Object[] { m_Server.Config, m_Server.HttpServer };
77 IServiceConnector connector =
78 ServerUtils.LoadPlugin<IServiceConnector>(conn,
79 modargs);
80
81 if (connector != null)
82 {
83 m_ServiceConnectors.Add(connector);
84 m_log.InfoFormat("[SERVER]: {0} loaded successfully", friendlyName);
85 }
86 else
87 {
88 m_log.InfoFormat("[SERVER]: Failed to load {0}", conn);
89 }
90 }
91 return m_Server.Run();
92 }
93 }
94}