aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs')
-rw-r--r--OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs219
1 files changed, 0 insertions, 219 deletions
diff --git a/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs b/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs
deleted file mode 100644
index 0f827b0..0000000
--- a/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs
+++ /dev/null
@@ -1,219 +0,0 @@
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 OpenSimulator 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.Collections.Generic;
30using System.Reflection;
31using log4net;
32using OpenSim.Data;
33using OpenSim.Framework;
34using OpenSim.Framework.Communications;
35using OpenSim.Framework.Communications.Services;
36using OpenSim.Framework.Communications.Cache;
37using OpenSim.Framework.Communications.Osp;
38using OpenSim.Framework.Servers;
39using OpenSim.Framework.Servers.HttpServer;
40using OpenSim.Region.Communications.Hypergrid;
41using OpenSim.Region.Communications.Local;
42using OpenSim.Region.Communications.OGS1;
43
44namespace OpenSim.ApplicationPlugins.CreateCommsManager
45{
46 public class CreateCommsManagerPlugin : IApplicationPlugin
47 {
48 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
49
50 #region IApplicationPlugin Members
51
52 // TODO: required by IPlugin, but likely not at all right
53 private string m_name = "CreateCommsManagerPlugin";
54 private string m_version = "0.0";
55
56 public string Version
57 {
58 get { return m_version; }
59 }
60
61 public string Name
62 {
63 get { return m_name; }
64 }
65
66 protected OpenSimBase m_openSim;
67
68 protected BaseHttpServer m_httpServer;
69
70 protected CommunicationsManager m_commsManager;
71 protected GridInfoService m_gridInfoService;
72
73 protected IRegionCreator m_regionCreator;
74
75 public void Initialise()
76 {
77 m_log.Info("[LOADREGIONS]: " + Name + " cannot be default-initialized!");
78 throw new PluginNotInitialisedException(Name);
79 }
80
81 public void Initialise(OpenSimBase openSim)
82 {
83 m_openSim = openSim;
84 m_httpServer = openSim.HttpServer;
85 MainServer.Instance = m_httpServer;
86
87 InitialiseCommsManager(openSim);
88 if (m_commsManager != null)
89 {
90 m_openSim.ApplicationRegistry.RegisterInterface<IUserService>(m_commsManager.UserService);
91 }
92 }
93
94 public void PostInitialise()
95 {
96 if (m_openSim.ApplicationRegistry.TryGet<IRegionCreator>(out m_regionCreator))
97 {
98 m_regionCreator.OnNewRegionCreated += RegionCreated;
99 }
100 }
101
102 public void Dispose()
103 {
104 }
105
106 #endregion
107
108 private void RegionCreated(IScene scene)
109 {
110 if (m_commsManager != null)
111 {
112 scene.RegisterModuleInterface<IUserService>(m_commsManager.UserService);
113 }
114 }
115
116 protected void InitialiseCommsManager(OpenSimBase openSim)
117 {
118 LibraryRootFolder libraryRootFolder = new LibraryRootFolder(m_openSim.ConfigurationSettings.LibrariesXMLFile);
119
120 bool hgrid = m_openSim.ConfigSource.Source.Configs["Startup"].GetBoolean("hypergrid", false);
121
122 if (hgrid)
123 {
124 InitialiseHGServices(openSim, libraryRootFolder);
125 }
126 else
127 {
128 InitialiseStandardServices(libraryRootFolder);
129 }
130
131 openSim.CommunicationsManager = m_commsManager;
132 }
133
134 protected void InitialiseHGServices(OpenSimBase openSim, LibraryRootFolder libraryRootFolder)
135 {
136 // Standalone mode is determined by !startupConfig.GetBoolean("gridmode", false)
137 if (m_openSim.ConfigurationSettings.Standalone)
138 {
139 InitialiseHGStandaloneServices(libraryRootFolder);
140 }
141 else
142 {
143 // We are in grid mode
144 InitialiseHGGridServices(libraryRootFolder);
145 }
146 }
147
148 protected void InitialiseStandardServices(LibraryRootFolder libraryRootFolder)
149 {
150 // Standalone mode is determined by !startupConfig.GetBoolean("gridmode", false)
151 if (m_openSim.ConfigurationSettings.Standalone)
152 {
153 InitialiseStandaloneServices(libraryRootFolder);
154 }
155 else
156 {
157 // We are in grid mode
158 InitialiseGridServices(libraryRootFolder);
159 }
160 }
161
162 /// <summary>
163 /// Initialises the backend services for standalone mode, and registers some http handlers
164 /// </summary>
165 /// <param name="libraryRootFolder"></param>
166 protected virtual void InitialiseStandaloneServices(LibraryRootFolder libraryRootFolder)
167 {
168 m_commsManager
169 = new CommunicationsLocal(
170 m_openSim.ConfigurationSettings, m_openSim.NetServersInfo,
171 libraryRootFolder);
172
173 CreateGridInfoService();
174 }
175
176 protected virtual void InitialiseGridServices(LibraryRootFolder libraryRootFolder)
177 {
178 m_commsManager
179 = new CommunicationsOGS1(m_openSim.NetServersInfo, libraryRootFolder);
180
181 m_httpServer.AddStreamHandler(new OpenSim.SimStatusHandler());
182 m_httpServer.AddStreamHandler(new OpenSim.XSimStatusHandler(m_openSim));
183 if (m_openSim.userStatsURI != String.Empty)
184 m_httpServer.AddStreamHandler(new OpenSim.UXSimStatusHandler(m_openSim));
185 }
186
187 protected virtual void InitialiseHGStandaloneServices(LibraryRootFolder libraryRootFolder)
188 {
189 m_commsManager
190 = new HGCommunicationsStandalone(
191 m_openSim.ConfigurationSettings, m_openSim.NetServersInfo, m_httpServer,
192 libraryRootFolder, false);
193
194 CreateGridInfoService();
195 }
196
197 protected virtual void InitialiseHGGridServices(LibraryRootFolder libraryRootFolder)
198 {
199 m_commsManager
200 = new HGCommunicationsGridMode(
201 m_openSim.NetServersInfo,
202 m_openSim.SceneManager, libraryRootFolder);
203
204 m_httpServer.AddStreamHandler(new OpenSim.SimStatusHandler());
205 m_httpServer.AddStreamHandler(new OpenSim.XSimStatusHandler(m_openSim));
206 if (m_openSim.userStatsURI != String.Empty)
207 m_httpServer.AddStreamHandler(new OpenSim.UXSimStatusHandler(m_openSim));
208 }
209
210 private void CreateGridInfoService()
211 {
212 // provide grid info
213 m_gridInfoService = new GridInfoService(m_openSim.ConfigSource.Source);
214 m_httpServer.AddXmlRPCHandler("get_grid_info", m_gridInfoService.XmlRpcGridInfoMethod);
215 m_httpServer.AddStreamHandler(
216 new RestStreamHandler("GET", "/get_grid_info", m_gridInfoService.RestGetGridInfoMethod));
217 }
218 }
219}