RegionLoaderWebServer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 OpenSim 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. */
  28. using System.IO;
  29. using System.Net;
  30. using System.Xml;
  31. using Nini.Config;
  32. using OpenSim.Framework.Console;
  33. namespace OpenSim.Framework.RegionLoader.Web
  34. {
  35. public class RegionLoaderWebServer : IRegionLoader
  36. {
  37. private IniConfigSource m_configSouce;
  38. public void SetIniConfigSource(IniConfigSource configSource)
  39. {
  40. m_configSouce = configSource;
  41. }
  42. public RegionInfo[] LoadRegions()
  43. {
  44. if (m_configSouce == null)
  45. {
  46. MainLog.Instance.Error("WEBLOADER", "Unable to load configuration source!");
  47. return null;
  48. }
  49. else
  50. {
  51. IniConfig startupConfig = (IniConfig) m_configSouce.Configs["Startup"];
  52. string url = startupConfig.GetString("regionload_webserver_url", "").Trim();
  53. if (url == "")
  54. {
  55. MainLog.Instance.Error("WEBLOADER", "Unable to load webserver URL - URL was empty.");
  56. return null;
  57. }
  58. else
  59. {
  60. HttpWebRequest webRequest = (HttpWebRequest) WebRequest.Create(url);
  61. webRequest.Timeout = 30000; //30 Second Timeout
  62. MainLog.Instance.Debug("WEBLOADER", "Sending Download Request...");
  63. HttpWebResponse webResponse = (HttpWebResponse) webRequest.GetResponse();
  64. MainLog.Instance.Debug("WEBLOADER", "Downloading Region Information From Remote Server...");
  65. StreamReader reader = new StreamReader(webResponse.GetResponseStream());
  66. string xmlSource = "";
  67. string tempStr = reader.ReadLine();
  68. while (tempStr != null)
  69. {
  70. xmlSource = xmlSource + tempStr;
  71. tempStr = reader.ReadLine();
  72. }
  73. MainLog.Instance.Debug("WEBLOADER",
  74. "Done downloading region information from server. Total Bytes: " +
  75. xmlSource.Length);
  76. XmlDocument xmlDoc = new XmlDocument();
  77. xmlDoc.LoadXml(xmlSource);
  78. if (xmlDoc.FirstChild.Name == "Regions")
  79. {
  80. RegionInfo[] regionInfos = new RegionInfo[xmlDoc.FirstChild.ChildNodes.Count];
  81. int i;
  82. for (i = 0; i < xmlDoc.FirstChild.ChildNodes.Count; i++)
  83. {
  84. MainLog.Instance.Debug(xmlDoc.FirstChild.ChildNodes[i].OuterXml);
  85. regionInfos[i] =
  86. new RegionInfo("REGION CONFIG #" + (i + 1), xmlDoc.FirstChild.ChildNodes[i],false);
  87. }
  88. return regionInfos;
  89. }
  90. return null;
  91. }
  92. }
  93. }
  94. }
  95. }