RegionReadyModule.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. using System;
  28. using System.Collections.Generic;
  29. using System.Reflection;
  30. using System.Net;
  31. using System.IO;
  32. using System.Text;
  33. using log4net;
  34. using Nini.Config;
  35. using OpenMetaverse;
  36. using OpenMetaverse.StructuredData;
  37. using OpenSim.Framework;
  38. using OpenSim.Region.Framework.Interfaces;
  39. using OpenSim.Region.Framework.Scenes;
  40. using OpenSim.Services.Interfaces;
  41. namespace OpenSim.Region.OptionalModules.Scripting.RegionReady
  42. {
  43. public class RegionReadyModule : IRegionReadyModule, INonSharedRegionModule
  44. {
  45. private static readonly ILog m_log =
  46. LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  47. private IConfig m_config = null;
  48. private bool m_ScriptRez;
  49. private bool m_firstEmptyCompileQueue;
  50. private bool m_oarFileLoading;
  51. private bool m_lastOarLoadedOk;
  52. private int m_channelNotify = -1000;
  53. private bool m_enabled = false;
  54. private bool m_disable_logins;
  55. private string m_uri = string.Empty;
  56. Scene m_scene;
  57. #region INonSharedRegionModule interface
  58. public Type ReplaceableInterface
  59. {
  60. get { return null; }
  61. }
  62. public void Initialise(IConfigSource config)
  63. {
  64. //m_log.Info("[RegionReady] Initialising");
  65. m_config = config.Configs["RegionReady"];
  66. if (m_config != null)
  67. {
  68. m_enabled = m_config.GetBoolean("enabled", false);
  69. if (m_enabled)
  70. {
  71. m_channelNotify = m_config.GetInt("channel_notify", m_channelNotify);
  72. m_disable_logins = m_config.GetBoolean("login_disable", false);
  73. m_uri = m_config.GetString("alert_uri",string.Empty);
  74. }
  75. }
  76. // if (!m_enabled)
  77. // m_log.Info("[RegionReady] disabled.");
  78. }
  79. public void AddRegion(Scene scene)
  80. {
  81. if (!m_enabled)
  82. return;
  83. m_scene = scene;
  84. m_scene.RegisterModuleInterface<IRegionReadyModule>(this);
  85. m_ScriptRez = false;
  86. m_firstEmptyCompileQueue = true;
  87. m_oarFileLoading = false;
  88. m_lastOarLoadedOk = true;
  89. m_scene.EventManager.OnOarFileLoaded += OnOarFileLoaded;
  90. m_log.DebugFormat("[RegionReady]: Enabled for region {0}", scene.RegionInfo.RegionName);
  91. if (m_disable_logins)
  92. {
  93. m_scene.LoginLock = true;
  94. m_scene.EventManager.OnEmptyScriptCompileQueue += OnEmptyScriptCompileQueue;
  95. m_log.InfoFormat("[RegionReady]: Region {0} - LOGINS DISABLED DURING INITIALIZATION.", m_scene.Name);
  96. if (m_uri != string.Empty)
  97. {
  98. RRAlert("disabled");
  99. }
  100. }
  101. }
  102. public void RemoveRegion(Scene scene)
  103. {
  104. if (!m_enabled)
  105. return;
  106. m_scene.EventManager.OnOarFileLoaded -= OnOarFileLoaded;
  107. if (m_disable_logins)
  108. m_scene.EventManager.OnEmptyScriptCompileQueue -= OnEmptyScriptCompileQueue;
  109. if (m_uri != string.Empty)
  110. RRAlert("shutdown");
  111. m_scene = null;
  112. }
  113. public void Close()
  114. {
  115. }
  116. public void RegionLoaded(Scene scene)
  117. {
  118. }
  119. public string Name
  120. {
  121. get { return "RegionReadyModule"; }
  122. }
  123. #endregion
  124. void OnEmptyScriptCompileQueue(int numScriptsFailed, string message)
  125. {
  126. m_log.InfoFormat("[RegionReady]: Script compile queue empty!");
  127. if (m_firstEmptyCompileQueue || m_oarFileLoading)
  128. {
  129. OSChatMessage c = new OSChatMessage();
  130. if (m_firstEmptyCompileQueue)
  131. c.Message = "server_startup,";
  132. else
  133. c.Message = "oar_file_load,";
  134. m_firstEmptyCompileQueue = false;
  135. m_oarFileLoading = false;
  136. m_scene.Backup(false);
  137. c.From = "RegionReady";
  138. if (m_lastOarLoadedOk)
  139. c.Message += "1,";
  140. else
  141. c.Message += "0,";
  142. c.Channel = m_channelNotify;
  143. c.Message += numScriptsFailed.ToString() + "," + message;
  144. c.Type = ChatTypeEnum.Region;
  145. c.Position = new Vector3(((int)Constants.RegionSize * 0.5f), ((int)Constants.RegionSize * 0.5f), 30);
  146. c.Sender = null;
  147. c.SenderUUID = UUID.Zero;
  148. c.Scene = m_scene;
  149. m_log.InfoFormat("[RegionReady]: Region \"{0}\" is ready: \"{1}\" on channel {2}",
  150. m_scene.RegionInfo.RegionName, c.Message, m_channelNotify);
  151. m_scene.EventManager.TriggerOnChatBroadcast(this, c);
  152. TriggerRegionReady(m_scene);
  153. }
  154. }
  155. void OnOarFileLoaded(Guid requestId, string message)
  156. {
  157. m_oarFileLoading = true;
  158. if (message==String.Empty)
  159. {
  160. m_lastOarLoadedOk = true;
  161. }
  162. else
  163. {
  164. m_log.WarnFormat("[RegionReady]: Oar file load errors: {0}", message);
  165. m_lastOarLoadedOk = false;
  166. }
  167. }
  168. /// <summary>
  169. /// This will be triggered by Scene directly if it contains no scripts on startup. Otherwise it is triggered
  170. /// when the script compile queue is empty after initial region startup.
  171. /// </summary>
  172. /// <param name='scene'></param>
  173. public void TriggerRegionReady(IScene scene)
  174. {
  175. m_scene.EventManager.OnEmptyScriptCompileQueue -= OnEmptyScriptCompileQueue;
  176. m_scene.LoginLock = false;
  177. if (!m_scene.StartDisabled)
  178. {
  179. m_scene.LoginsEnabled = true;
  180. // m_log.InfoFormat("[RegionReady]: Logins enabled for {0}, Oar {1}",
  181. // m_scene.RegionInfo.RegionName, m_oarFileLoading.ToString());
  182. m_log.InfoFormat(
  183. "[RegionReady]: INITIALIZATION COMPLETE FOR {0} - LOGINS ENABLED", m_scene.Name);
  184. }
  185. m_scene.SceneGridService.InformNeighborsThatRegionisUp(
  186. m_scene.RequestModuleInterface<INeighbourService>(), m_scene.RegionInfo);
  187. if (m_uri != string.Empty)
  188. {
  189. RRAlert("enabled");
  190. }
  191. m_scene.Ready = true;
  192. }
  193. public void OarLoadingAlert(string msg)
  194. {
  195. // Let's bypass this for now until some better feedback can be established
  196. //
  197. // if (msg == "load")
  198. // {
  199. // m_scene.EventManager.OnEmptyScriptCompileQueue += OnEmptyScriptCompileQueue;
  200. // m_scene.EventManager.OnOarFileLoaded += OnOarFileLoaded;
  201. // m_scene.EventManager.OnLoginsEnabled += OnLoginsEnabled;
  202. // m_scene.EventManager.OnRezScript += OnRezScript;
  203. // m_oarFileLoading = true;
  204. // m_firstEmptyCompileQueue = true;
  205. //
  206. // m_scene.LoginsDisabled = true;
  207. // m_scene.LoginLock = true;
  208. // if ( m_uri != string.Empty )
  209. // {
  210. // RRAlert("loading oar");
  211. // RRAlert("disabled");
  212. // }
  213. // }
  214. }
  215. public void RRAlert(string status)
  216. {
  217. string request_method = "POST";
  218. string content_type = "application/json";
  219. OSDMap RRAlert = new OSDMap();
  220. RRAlert["alert"] = "region_ready";
  221. RRAlert["login"] = status;
  222. RRAlert["region_name"] = m_scene.RegionInfo.RegionName;
  223. RRAlert["region_id"] = m_scene.RegionInfo.RegionID;
  224. string strBuffer = "";
  225. byte[] buffer = new byte[1];
  226. try
  227. {
  228. strBuffer = OSDParser.SerializeJsonString(RRAlert);
  229. Encoding str = Util.UTF8;
  230. buffer = str.GetBytes(strBuffer);
  231. }
  232. catch (Exception e)
  233. {
  234. m_log.WarnFormat("[RegionReady]: Exception thrown on alert: {0}", e.Message);
  235. }
  236. WebRequest request = WebRequest.Create(m_uri);
  237. request.Method = request_method;
  238. request.ContentType = content_type;
  239. Stream os = null;
  240. try
  241. {
  242. request.ContentLength = buffer.Length;
  243. os = request.GetRequestStream();
  244. os.Write(buffer, 0, strBuffer.Length);
  245. }
  246. catch(Exception e)
  247. {
  248. m_log.WarnFormat("[RegionReady]: Exception thrown sending alert: {0}", e.Message);
  249. }
  250. finally
  251. {
  252. if (os != null)
  253. os.Close();
  254. }
  255. }
  256. }
  257. }