NeighbourServicesConnector.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 log4net;
  28. using System;
  29. using System.Collections;
  30. using System.Collections.Generic;
  31. using System.IO;
  32. using System.Net;
  33. using System.Reflection;
  34. using System.Text;
  35. using Nini.Config;
  36. using OpenSim.Framework;
  37. using OpenSim.Services.Interfaces;
  38. using OpenMetaverse;
  39. using OpenMetaverse.StructuredData;
  40. using GridRegion = OpenSim.Services.Interfaces.GridRegion;
  41. namespace OpenSim.Services.Connectors
  42. {
  43. public class NeighbourServicesConnector : INeighbourService
  44. {
  45. private static readonly ILog m_log =
  46. LogManager.GetLogger(
  47. MethodBase.GetCurrentMethod().DeclaringType);
  48. protected IGridService m_GridService = null;
  49. public NeighbourServicesConnector()
  50. {
  51. }
  52. public NeighbourServicesConnector(IGridService gridServices)
  53. {
  54. Initialise(gridServices);
  55. }
  56. public virtual void Initialise(IGridService gridServices)
  57. {
  58. m_GridService = gridServices;
  59. }
  60. public virtual GridRegion HelloNeighbour(ulong regionHandle, RegionInfo thisRegion)
  61. {
  62. GridRegion regInfo = m_GridService.GetRegionByHandle(thisRegion.ScopeID, regionHandle);
  63. if ((regInfo != null) &&
  64. // Don't remote-call this instance; that's a startup hickup
  65. !((regInfo.ExternalHostName == thisRegion.ExternalHostName) && (regInfo.HttpPort == thisRegion.HttpPort)))
  66. {
  67. if (!DoHelloNeighbourCall(regInfo, thisRegion))
  68. return null;
  69. }
  70. else
  71. return null;
  72. return regInfo;
  73. }
  74. public bool DoHelloNeighbourCall(GridRegion region, RegionInfo thisRegion)
  75. {
  76. string uri = region.ServerURI + "region/" + thisRegion.RegionID + "/";
  77. //m_log.Debug(" >>> DoHelloNeighbourCall <<< " + uri);
  78. byte[] buffer = null;
  79. try
  80. {
  81. OSDMap args = thisRegion.PackRegionInfoData();
  82. args["destination_handle"] = OSD.FromString(region.RegionHandle.ToString());
  83. buffer = Util.UTF8NoBomEncoding.GetBytes(OSDParser.SerializeJsonString(args));
  84. }
  85. catch (Exception e)
  86. {
  87. m_log.Warn(string.Format(
  88. "[NEIGHBOUR SERVICES CONNECTOR]: PackRegionInfoData failed for HelloNeighbour from {0} to {1}. Exception {2} ",
  89. thisRegion.RegionName, region.RegionName, e.Message), e);
  90. return false;
  91. }
  92. if(buffer == null || buffer.Length == 0)
  93. return false;
  94. HttpWebRequest helloNeighbourRequest;
  95. try
  96. {
  97. helloNeighbourRequest = (HttpWebRequest)WebRequest.Create(uri);
  98. }
  99. catch (Exception e)
  100. {
  101. m_log.Warn(string.Format(
  102. "[NEIGHBOUR SERVICES CONNECTOR]: Unable to parse uri {0} to send HelloNeighbour from {1} to {2}. Exception {3} ",
  103. uri, thisRegion.RegionName, region.RegionName, e.Message), e);
  104. return false;
  105. }
  106. helloNeighbourRequest.Method = "POST";
  107. helloNeighbourRequest.ContentType = "application/json";
  108. helloNeighbourRequest.Timeout = 10000;
  109. try
  110. {
  111. helloNeighbourRequest.ContentLength = buffer.Length;
  112. using (var os = helloNeighbourRequest.GetRequestStream())
  113. os.Write(buffer, 0, buffer.Length);
  114. buffer = null;
  115. //m_log.InfoFormat("[REST COMMS]: Posted HelloNeighbour request to remote sim {0}", uri);
  116. }
  117. // catch (Exception e)
  118. catch
  119. {
  120. //m_log.WarnFormat(
  121. // "[NEIGHBOUR SERVICE CONNCTOR]: Unable to send HelloNeighbour from {0} to {1}. Exception {2}{3}",
  122. // thisRegion.RegionName, region.RegionName, e.Message, e.StackTrace);
  123. return false;
  124. }
  125. // Let's wait for the response
  126. //m_log.Info("[REST COMMS]: Waiting for a reply after DoHelloNeighbourCall");
  127. try
  128. {
  129. using (WebResponse webResponse = helloNeighbourRequest.GetResponse())
  130. {
  131. using (StreamReader sr = new StreamReader(webResponse.GetResponseStream()))
  132. {
  133. sr.ReadToEnd(); // just try to read
  134. //reply = sr.ReadToEnd().Trim();
  135. //m_log.InfoFormat("[REST COMMS]: DoHelloNeighbourCall reply was {0} ", reply);
  136. }
  137. }
  138. return true;
  139. }
  140. catch (Exception e)
  141. {
  142. m_log.Warn(string.Format(
  143. "[NEIGHBOUR SERVICES CONNECTOR]: Exception on reply of DoHelloNeighbourCall from {0} back to {1}. Exception {2} ",
  144. region.RegionName, thisRegion.RegionName, e.Message), e);
  145. }
  146. return false;
  147. }
  148. }
  149. }