diff options
author | MW | 2007-05-25 16:27:07 +0000 |
---|---|---|
committer | MW | 2007-05-25 16:27:07 +0000 |
commit | b2d588ed1c9068324333ec3c5ab86efe6a36216d (patch) | |
tree | 950442d2af673e1df34e85ca5b8265ddd6c99906 /OpenGridServices/OpenGridServices.GridServer | |
parent | Oops (diff) | |
download | opensim-SC_OLD-b2d588ed1c9068324333ec3c5ab86efe6a36216d.zip opensim-SC_OLD-b2d588ed1c9068324333ec3c5ab86efe6a36216d.tar.gz opensim-SC_OLD-b2d588ed1c9068324333ec3c5ab86efe6a36216d.tar.bz2 opensim-SC_OLD-b2d588ed1c9068324333ec3c5ab86efe6a36216d.tar.xz |
Possible my last ever OpenSim/OGS contribution (if I continue to feel like this):
Re-added a CLI "create user" command to the userserver, only currently works if using DB4o as the database provider.
Added Xml config files to both the UserServer and Gridserver (UserServerConfig.xml and GridServerConfig.xml), so that the database provider can be set in it. (both currently default to DB4o , so maybe Adam will want to change it back to defaulting to MySQL)
Diffstat (limited to 'OpenGridServices/OpenGridServices.GridServer')
3 files changed, 66 insertions, 28 deletions
diff --git a/OpenGridServices/OpenGridServices.GridServer/Main.cs b/OpenGridServices/OpenGridServices.GridServer/Main.cs index cad5fae..8baf293 100644 --- a/OpenGridServices/OpenGridServices.GridServer/Main.cs +++ b/OpenGridServices/OpenGridServices.GridServer/Main.cs | |||
@@ -41,6 +41,7 @@ using OpenSim.Framework.Sims; | |||
41 | using OpenSim.Framework.Console; | 41 | using OpenSim.Framework.Console; |
42 | using OpenSim.Framework.Interfaces; | 42 | using OpenSim.Framework.Interfaces; |
43 | using OpenSim.Servers; | 43 | using OpenSim.Servers; |
44 | using OpenSim.GenericConfig; | ||
44 | 45 | ||
45 | namespace OpenGridServices.GridServer | 46 | namespace OpenGridServices.GridServer |
46 | { | 47 | { |
@@ -49,15 +50,17 @@ namespace OpenGridServices.GridServer | |||
49 | public class OpenGrid_Main : BaseServer, conscmd_callback | 50 | public class OpenGrid_Main : BaseServer, conscmd_callback |
50 | { | 51 | { |
51 | private string ConfigDll = "OpenGrid.Config.GridConfigDb4o.dll"; | 52 | private string ConfigDll = "OpenGrid.Config.GridConfigDb4o.dll"; |
52 | private string GridDll = "OpenGrid.Framework.Data.MySQL.dll"; | 53 | private string GridDll = "OpenGrid.Framework.Data.DB4o.dll"; |
53 | public GridConfig Cfg; | 54 | public GridConfig Cfg; |
54 | 55 | ||
55 | public static OpenGrid_Main thegrid; | 56 | public static OpenGrid_Main thegrid; |
56 | public static bool setuponly; | 57 | protected IGenericConfig localXMLConfig; |
57 | 58 | ||
59 | public static bool setuponly; | ||
60 | |||
58 | //public LLUUID highestUUID; | 61 | //public LLUUID highestUUID; |
59 | 62 | ||
60 | // private SimProfileManager m_simProfileManager; | 63 | // private SimProfileManager m_simProfileManager; |
61 | 64 | ||
62 | private GridManager m_gridManager; | 65 | private GridManager m_gridManager; |
63 | 66 | ||
@@ -70,7 +73,7 @@ namespace OpenGridServices.GridServer | |||
70 | { | 73 | { |
71 | if (args[0] == "-setuponly") setuponly = true; | 74 | if (args[0] == "-setuponly") setuponly = true; |
72 | } | 75 | } |
73 | Console.WriteLine("Starting...\n"); | 76 | Console.WriteLine("Starting...\n"); |
74 | 77 | ||
75 | thegrid = new OpenGrid_Main(); | 78 | thegrid = new OpenGrid_Main(); |
76 | thegrid.Startup(); | 79 | thegrid.Startup(); |
@@ -82,8 +85,8 @@ namespace OpenGridServices.GridServer | |||
82 | { | 85 | { |
83 | while (true) | 86 | while (true) |
84 | { | 87 | { |
85 | Thread.Sleep(5000); | 88 | Thread.Sleep(5000); |
86 | // should flush the DB etc here | 89 | // should flush the DB etc here |
87 | } | 90 | } |
88 | } | 91 | } |
89 | 92 | ||
@@ -95,30 +98,37 @@ namespace OpenGridServices.GridServer | |||
95 | 98 | ||
96 | } | 99 | } |
97 | 100 | ||
98 | public void managercallback(string cmd) { | 101 | public void managercallback(string cmd) |
99 | switch(cmd) { | 102 | { |
100 | case "shutdown": | 103 | switch (cmd) |
101 | RunCmd("shutdown",new string[0]); | 104 | { |
102 | break; | 105 | case "shutdown": |
103 | } | 106 | RunCmd("shutdown", new string[0]); |
104 | } | 107 | break; |
108 | } | ||
109 | } | ||
105 | 110 | ||
106 | 111 | ||
107 | public void Startup() | 112 | public void Startup() |
108 | { | 113 | { |
109 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Main.cs:Startup() - Loading configuration"); | 114 | this.localXMLConfig = new XmlConfig("GridServerConfig.xml"); |
115 | this.localXMLConfig.LoadData(); | ||
116 | this.ConfigDB(this.localXMLConfig); | ||
117 | this.localXMLConfig.Close(); | ||
118 | |||
119 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Loading configuration"); | ||
110 | Cfg = this.LoadConfigDll(this.ConfigDll); | 120 | Cfg = this.LoadConfigDll(this.ConfigDll); |
111 | Cfg.InitConfig(); | 121 | Cfg.InitConfig(); |
112 | if(setuponly) Environment.Exit(0); | 122 | if (setuponly) Environment.Exit(0); |
113 | 123 | ||
114 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Main.cs:Startup() - Connecting to Storage Server"); | 124 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Connecting to Storage Server"); |
115 | m_gridManager = new GridManager(); | 125 | m_gridManager = new GridManager(); |
116 | m_gridManager.AddPlugin(GridDll); // Made of win | 126 | m_gridManager.AddPlugin(GridDll); // Made of win |
117 | m_gridManager.config = Cfg; | 127 | m_gridManager.config = Cfg; |
118 | 128 | ||
119 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Main.cs:Startup() - Starting HTTP process"); | 129 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Starting HTTP process"); |
120 | BaseHttpServer httpServer = new BaseHttpServer(8001); | 130 | BaseHttpServer httpServer = new BaseHttpServer(8001); |
121 | GridManagementAgent GridManagerAgent = new GridManagementAgent(httpServer,"gridserver",Cfg.SimSendKey,Cfg.SimRecvKey,managercallback); | 131 | GridManagementAgent GridManagerAgent = new GridManagementAgent(httpServer, "gridserver", Cfg.SimSendKey, Cfg.SimRecvKey, managercallback); |
122 | 132 | ||
123 | httpServer.AddXmlRPCHandler("simulator_login", m_gridManager.XmlRpcLoginToSimulatorMethod); | 133 | httpServer.AddXmlRPCHandler("simulator_login", m_gridManager.XmlRpcLoginToSimulatorMethod); |
124 | httpServer.AddXmlRPCHandler("map_block", m_gridManager.XmlRpcMapBlockMethod); | 134 | httpServer.AddXmlRPCHandler("map_block", m_gridManager.XmlRpcMapBlockMethod); |
@@ -127,7 +137,7 @@ namespace OpenGridServices.GridServer | |||
127 | httpServer.AddRestHandler("POST", "/sims/", m_gridManager.RestSetSimMethod); | 137 | httpServer.AddRestHandler("POST", "/sims/", m_gridManager.RestSetSimMethod); |
128 | httpServer.AddRestHandler("GET", "/regions/", m_gridManager.RestGetRegionMethod); | 138 | httpServer.AddRestHandler("GET", "/regions/", m_gridManager.RestGetRegionMethod); |
129 | httpServer.AddRestHandler("POST", "/regions/", m_gridManager.RestSetRegionMethod); | 139 | httpServer.AddRestHandler("POST", "/regions/", m_gridManager.RestSetRegionMethod); |
130 | 140 | ||
131 | 141 | ||
132 | // lbsa71 : This code snippet taken from old http server. | 142 | // lbsa71 : This code snippet taken from old http server. |
133 | // I have no idea what this was supposed to do - looks like an infinite recursion to me. | 143 | // I have no idea what this was supposed to do - looks like an infinite recursion to me. |
@@ -145,9 +155,9 @@ namespace OpenGridServices.GridServer | |||
145 | 155 | ||
146 | httpServer.Start(); | 156 | httpServer.Start(); |
147 | 157 | ||
148 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Main.cs:Startup() - Starting sim status checker"); | 158 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Starting sim status checker"); |
149 | 159 | ||
150 | System.Timers.Timer simCheckTimer = new System.Timers.Timer( 300000 ); // 5 minutes | 160 | System.Timers.Timer simCheckTimer = new System.Timers.Timer(300000); // 5 minutes |
151 | simCheckTimer.Elapsed += new ElapsedEventHandler(CheckSims); | 161 | simCheckTimer.Elapsed += new ElapsedEventHandler(CheckSims); |
152 | simCheckTimer.Enabled = true; | 162 | simCheckTimer.Enabled = true; |
153 | } | 163 | } |
@@ -222,7 +232,7 @@ namespace OpenGridServices.GridServer | |||
222 | switch (cmd) | 232 | switch (cmd) |
223 | { | 233 | { |
224 | case "help": | 234 | case "help": |
225 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.HIGH,"shutdown - shutdown the grid (USE CAUTION!)"); | 235 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.HIGH, "shutdown - shutdown the grid (USE CAUTION!)"); |
226 | break; | 236 | break; |
227 | 237 | ||
228 | case "shutdown": | 238 | case "shutdown": |
@@ -235,5 +245,28 @@ namespace OpenGridServices.GridServer | |||
235 | public void Show(string ShowWhat) | 245 | public void Show(string ShowWhat) |
236 | { | 246 | { |
237 | } | 247 | } |
248 | |||
249 | private void ConfigDB(IGenericConfig configData) | ||
250 | { | ||
251 | try | ||
252 | { | ||
253 | string attri = ""; | ||
254 | attri = configData.GetAttribute("DataBaseProvider"); | ||
255 | if (attri == "") | ||
256 | { | ||
257 | GridDll = "OpenGrid.Framework.Data.DB4o.dll"; | ||
258 | configData.SetAttribute("DataBaseProvider", "OpenGrid.Framework.Data.DB4o.dll"); | ||
259 | } | ||
260 | else | ||
261 | { | ||
262 | GridDll = attri; | ||
263 | } | ||
264 | configData.Commit(); | ||
265 | } | ||
266 | catch (Exception e) | ||
267 | { | ||
268 | |||
269 | } | ||
270 | } | ||
238 | } | 271 | } |
239 | } | 272 | } |
diff --git a/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj b/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj index b83c6ba..f4a6ca1 100644 --- a/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj +++ b/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj | |||
@@ -82,6 +82,10 @@ | |||
82 | <HintPath>OpenSim.Servers.dll</HintPath> | 82 | <HintPath>OpenSim.Servers.dll</HintPath> |
83 | <Private>False</Private> | 83 | <Private>False</Private> |
84 | </Reference> | 84 | </Reference> |
85 | <Reference Include="OpenSim.GenericConfig.Xml" > | ||
86 | <HintPath>OpenSim.GenericConfig.Xml.dll</HintPath> | ||
87 | <Private>False</Private> | ||
88 | </Reference> | ||
85 | <Reference Include="libsecondlife.dll" > | 89 | <Reference Include="libsecondlife.dll" > |
86 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> | 90 | <HintPath>..\..\bin\libsecondlife.dll</HintPath> |
87 | <Private>False</Private> | 91 | <Private>False</Private> |
diff --git a/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build b/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build index 8a13f03..9d21edd 100644 --- a/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build +++ b/OpenGridServices/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build | |||
@@ -23,14 +23,15 @@ | |||
23 | <include name="System.dll" /> | 23 | <include name="System.dll" /> |
24 | <include name="System.Data.dll" /> | 24 | <include name="System.Data.dll" /> |
25 | <include name="System.Xml.dll" /> | 25 | <include name="System.Xml.dll" /> |
26 | <include name="OpenSim.Framework.dll" /> | 26 | <include name="../../bin/OpenSim.Framework.dll" /> |
27 | <include name="OpenSim.Framework.Console.dll" /> | 27 | <include name="../../bin/OpenSim.Framework.Console.dll" /> |
28 | <include name="OpenSim.Servers.dll" /> | 28 | <include name="../../bin/OpenSim.Servers.dll" /> |
29 | <include name="../../bin/OpenGrid.Framework.Data.dll" /> | 29 | <include name="../../bin/OpenGrid.Framework.Data.dll" /> |
30 | <include name="../../bin/OpenGrid.Framework.Manager.dll" /> | 30 | <include name="../../bin/OpenGrid.Framework.Manager.dll" /> |
31 | <include name="../../bin/OpenSim.GenericConfig.Xml.dll" /> | ||
31 | <include name="../../bin/libsecondlife.dll" /> | 32 | <include name="../../bin/libsecondlife.dll" /> |
32 | <include name="../../bin/Db4objects.Db4o.dll" /> | 33 | <include name="../../bin/Db4objects.Db4o.dll" /> |
33 | <include name="XMLRPC.dll" /> | 34 | <include name="../../bin/XMLRPC.dll" /> |
34 | </references> | 35 | </references> |
35 | </csc> | 36 | </csc> |
36 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../../bin/" /> | 37 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../../bin/" /> |