RegionLoaderWebServer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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.IO;
  29. using System.Net;
  30. using System.Reflection;
  31. using System.Xml;
  32. using log4net;
  33. using Nini.Config;
  34. using OpenSim.Framework;
  35. namespace OpenSim.ApplicationPlugins.LoadRegions
  36. {
  37. public class RegionLoaderWebServer : IRegionLoader
  38. {
  39. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  40. private IConfigSource m_configSource;
  41. public void SetIniConfigSource(IConfigSource configSource)
  42. {
  43. m_configSource = configSource;
  44. }
  45. public RegionInfo[] LoadRegions()
  46. {
  47. int tries = 3;
  48. int wait = 2000;
  49. if (m_configSource == null)
  50. {
  51. m_log.Error("[WEBLOADER]: Unable to load configuration source!");
  52. return null;
  53. }
  54. else
  55. {
  56. IConfig startupConfig = (IConfig)m_configSource.Configs["Startup"];
  57. string url = startupConfig.GetString("regionload_webserver_url", String.Empty).Trim();
  58. bool allowRegionless = startupConfig.GetBoolean("allow_regionless", false);
  59. if (url.Length == 0)
  60. {
  61. m_log.Error("[WEBLOADER]: Unable to load webserver URL - URL was empty.");
  62. return null;
  63. }
  64. else
  65. {
  66. while (tries > 0)
  67. {
  68. RegionInfo[] regionInfos = Array.Empty<RegionInfo>();
  69. int regionCount = 0;
  70. HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
  71. webRequest.Timeout = 30000; //30 Second Timeout
  72. m_log.DebugFormat("[WEBLOADER]: Sending download request to {0}", url);
  73. try
  74. {
  75. string xmlSource = String.Empty;
  76. m_log.Debug("[WEBLOADER]: Downloading region information...");
  77. using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse())
  78. using (StreamReader reader = new StreamReader(webResponse.GetResponseStream()))
  79. {
  80. string tempStr;
  81. while ((tempStr = reader.ReadLine()) != null)
  82. {
  83. xmlSource += tempStr;
  84. }
  85. }
  86. m_log.Debug("[WEBLOADER]: Done downloading region information from server. Total Bytes: " +
  87. xmlSource.Length);
  88. XmlDocument xmlDoc = new XmlDocument();
  89. xmlDoc.LoadXml(xmlSource);
  90. if (xmlDoc.FirstChild.Name == "Nini")
  91. {
  92. regionCount = xmlDoc.FirstChild.ChildNodes.Count;
  93. if (regionCount > 0)
  94. {
  95. regionInfos = new RegionInfo[regionCount];
  96. int i;
  97. for (i = 0; i < xmlDoc.FirstChild.ChildNodes.Count; i++)
  98. {
  99. m_log.Debug(xmlDoc.FirstChild.ChildNodes[i].OuterXml);
  100. regionInfos[i] =
  101. new RegionInfo("REGION CONFIG #" + (i + 1), xmlDoc.FirstChild.ChildNodes[i], false, m_configSource);
  102. }
  103. }
  104. }
  105. }
  106. catch (WebException ex)
  107. {
  108. if (((HttpWebResponse)ex.Response).StatusCode == HttpStatusCode.NotFound)
  109. {
  110. if (!allowRegionless)
  111. throw;
  112. }
  113. else
  114. throw;
  115. }
  116. if (regionCount > 0 || allowRegionless)
  117. return regionInfos;
  118. m_log.Debug("[WEBLOADER]: Request yielded no regions.");
  119. tries--;
  120. if (tries > 0)
  121. {
  122. m_log.Debug("[WEBLOADER]: Retrying");
  123. System.Threading.Thread.Sleep(wait);
  124. }
  125. }
  126. m_log.Error("[WEBLOADER]: No region configs were available.");
  127. return null;
  128. }
  129. }
  130. }
  131. }
  132. }