aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Grid/GridInfoServerInConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2010-01-10 19:19:34 -0800
committerDiva Canto2010-01-10 19:19:34 -0800
commit49618dc102c42b7125303511d826f76f0ebaab4c (patch)
treefba3817eb6ee8547914892dbae45c955d78734e8 /OpenSim/Server/Handlers/Grid/GridInfoServerInConnector.cs
parentRemoved refs to OpenIdService in UserServer. (diff)
downloadopensim-SC_OLD-49618dc102c42b7125303511d826f76f0ebaab4c.zip
opensim-SC_OLD-49618dc102c42b7125303511d826f76f0ebaab4c.tar.gz
opensim-SC_OLD-49618dc102c42b7125303511d826f76f0ebaab4c.tar.bz2
opensim-SC_OLD-49618dc102c42b7125303511d826f76f0ebaab4c.tar.xz
Moved GridInfo service from where it was to Handlers/Grid
Diffstat (limited to '')
-rw-r--r--OpenSim/Server/Handlers/Grid/GridInfoServerInConnector.cs (renamed from OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs)46
1 files changed, 11 insertions, 35 deletions
diff --git a/OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs b/OpenSim/Server/Handlers/Grid/GridInfoServerInConnector.cs
index 0c84348..c9e80d9 100644
--- a/OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs
+++ b/OpenSim/Server/Handlers/Grid/GridInfoServerInConnector.cs
@@ -27,53 +27,29 @@
27 27
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.IO;
31using System.Reflection; 30using System.Reflection;
32using log4net; 31using log4net;
33using log4net.Config;
34using OpenMetaverse; 32using OpenMetaverse;
33using Nini.Config;
35using OpenSim.Framework; 34using OpenSim.Framework;
36using OpenSim.Framework.Communications;
37using OpenSim.Framework.Communications.Services;
38using OpenSim.Framework.Communications.Cache;
39using OpenSim.Framework.Servers;
40using OpenSim.Framework.Servers.HttpServer; 35using OpenSim.Framework.Servers.HttpServer;
41using OpenSim.Grid.Communications.OGS1; 36using OpenSim.Server.Handlers.Base;
42using OpenSim.Grid.Framework;
43 37
44namespace OpenSim.Grid.UserServer.Modules 38namespace OpenSim.Server.Handlers.Grid
45{ 39{
46 public class GridInfoServiceModule 40 public class GridInfoServerInConnector : ServiceConnector
47 { 41 {
48 protected IGridServiceCore m_core; 42 private string m_ConfigName = "GridInfoService";
49 protected GridInfoService m_gridInfoService;
50 protected BaseHttpServer m_httpServer;
51 43
52 public GridInfoServiceModule() 44 public GridInfoServerInConnector(IConfigSource config, IHttpServer server, string configName) :
53 { 45 base(config, server, configName)
54 }
55
56 public void Initialise(IGridServiceCore core)
57 {
58 m_core = core;
59 m_gridInfoService = new GridInfoService();
60 }
61
62 public void PostInitialise()
63 { 46 {
47 GridInfoHandlers handlers = new GridInfoHandlers(config);
64 48
49 server.AddStreamHandler(new RestStreamHandler("GET", "/get_grid_info",
50 handlers.RestGetGridInfoMethod));
51 server.AddXmlRPCHandler("get_grid_info", handlers.XmlRpcGridInfoMethod);
65 } 52 }
66 53
67 public void RegisterHandlers(BaseHttpServer httpServer)
68 {
69 m_httpServer = httpServer;
70 m_httpServer.AddStreamHandler(new RestStreamHandler("GET", "/get_grid_info",
71 m_gridInfoService.RestGetGridInfoMethod));
72 m_httpServer.AddXmlRPCHandler("get_grid_info", m_gridInfoService.XmlRpcGridInfoMethod);
73 }
74
75 public void Close()
76 {
77 }
78 } 54 }
79} 55}