MapImageServicesConnector.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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.Generic;
  30. using System.IO;
  31. using System.Net;
  32. using System.Reflection;
  33. using Nini.Config;
  34. using OpenSim.Framework;
  35. using OpenSim.Framework.Console;
  36. using OpenSim.Framework.Communications;
  37. using OpenSim.Server.Base;
  38. using OpenSim.Services.Interfaces;
  39. using OpenMetaverse;
  40. using OpenMetaverse.StructuredData;
  41. namespace OpenSim.Services.Connectors
  42. {
  43. public class MapImageServicesConnector : IMapImageService
  44. {
  45. private static readonly ILog m_log =
  46. LogManager.GetLogger(
  47. MethodBase.GetCurrentMethod().DeclaringType);
  48. private string m_ServerURI = String.Empty;
  49. public MapImageServicesConnector()
  50. {
  51. }
  52. public MapImageServicesConnector(string serverURI)
  53. {
  54. m_ServerURI = serverURI.TrimEnd('/');
  55. }
  56. public MapImageServicesConnector(IConfigSource source)
  57. {
  58. Initialise(source);
  59. }
  60. public virtual void Initialise(IConfigSource source)
  61. {
  62. IConfig config = source.Configs["MapImageService"];
  63. if (config == null)
  64. {
  65. m_log.Error("[MAP IMAGE CONNECTOR]: MapImageService missing");
  66. throw new Exception("MapImage connector init error");
  67. }
  68. string serviceURI = config.GetString("MapImageServerURI",
  69. String.Empty);
  70. if (serviceURI == String.Empty)
  71. {
  72. m_log.Error("[MAP IMAGE CONNECTOR]: No Server URI named in section MapImageService");
  73. throw new Exception("MapImage connector init error");
  74. }
  75. m_ServerURI = serviceURI;
  76. m_ServerURI = serviceURI.TrimEnd('/');
  77. }
  78. public bool RemoveMapTile(int x, int y, out string reason)
  79. {
  80. reason = string.Empty;
  81. int tickstart = Util.EnvironmentTickCount();
  82. Dictionary<string, object> sendData = new Dictionary<string, object>();
  83. sendData["X"] = x.ToString();
  84. sendData["Y"] = y.ToString();
  85. string reqString = ServerUtils.BuildQueryString(sendData);
  86. string uri = m_ServerURI + "/removemap";
  87. try
  88. {
  89. string reply = SynchronousRestFormsRequester.MakeRequest("POST",
  90. uri,
  91. reqString);
  92. if (reply != string.Empty)
  93. {
  94. Dictionary<string, object> replyData = ServerUtils.ParseXmlResponse(reply);
  95. if (replyData.ContainsKey("Result") && (replyData["Result"].ToString().ToLower() == "success"))
  96. {
  97. return true;
  98. }
  99. else if (replyData.ContainsKey("Result") && (replyData["Result"].ToString().ToLower() == "failure"))
  100. {
  101. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: Delete failed: {0}", replyData["Message"].ToString());
  102. reason = replyData["Message"].ToString();
  103. return false;
  104. }
  105. else if (!replyData.ContainsKey("Result"))
  106. {
  107. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: reply data does not contain result field");
  108. }
  109. else
  110. {
  111. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: unexpected result {0}", replyData["Result"].ToString());
  112. reason = "Unexpected result " + replyData["Result"].ToString();
  113. }
  114. }
  115. else
  116. {
  117. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: Map post received null reply");
  118. }
  119. }
  120. catch (Exception e)
  121. {
  122. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: Exception when contacting map server at {0}: {1}", uri, e.Message);
  123. }
  124. finally
  125. {
  126. // This just dumps a warning for any operation that takes more than 100 ms
  127. int tickdiff = Util.EnvironmentTickCountSubtract(tickstart);
  128. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: map tile deleted in {0}ms", tickdiff);
  129. }
  130. return false;
  131. }
  132. public bool AddMapTile(int x, int y, byte[] jpgData, out string reason)
  133. {
  134. reason = string.Empty;
  135. int tickstart = Util.EnvironmentTickCount();
  136. Dictionary<string, object> sendData = new Dictionary<string, object>();
  137. sendData["X"] = x.ToString();
  138. sendData["Y"] = y.ToString();
  139. sendData["TYPE"] = "image/jpeg";
  140. sendData["DATA"] = Convert.ToBase64String(jpgData);
  141. string reqString = ServerUtils.BuildQueryString(sendData);
  142. string uri = m_ServerURI + "/map";
  143. try
  144. {
  145. string reply = SynchronousRestFormsRequester.MakeRequest("POST",
  146. uri,
  147. reqString);
  148. if (reply != string.Empty)
  149. {
  150. Dictionary<string, object> replyData = ServerUtils.ParseXmlResponse(reply);
  151. if (replyData.ContainsKey("Result") && (replyData["Result"].ToString().ToLower() == "success"))
  152. {
  153. return true;
  154. }
  155. else if (replyData.ContainsKey("Result") && (replyData["Result"].ToString().ToLower() == "failure"))
  156. {
  157. reason = string.Format("Map post to {0} failed: {1}", uri, replyData["Message"].ToString());
  158. m_log.WarnFormat("[MAP IMAGE CONNECTOR]: {0}", reason);
  159. return false;
  160. }
  161. else if (!replyData.ContainsKey("Result"))
  162. {
  163. reason = string.Format("Reply data from {0} does not contain result field", uri);
  164. m_log.WarnFormat("[MAP IMAGE CONNECTOR]: {0}", reason);
  165. }
  166. else
  167. {
  168. reason = string.Format("Unexpected result {0} from {1}" + replyData["Result"].ToString(), uri);
  169. m_log.WarnFormat("[MAP IMAGE CONNECTOR]: {0}", reason);
  170. }
  171. }
  172. else
  173. {
  174. reason = string.Format("Map post received null reply from {0}", uri);
  175. m_log.WarnFormat("[MAP IMAGE CONNECTOR]: {0}", reason);
  176. }
  177. }
  178. catch (Exception e)
  179. {
  180. reason = string.Format("Exception when posting to map server at {0}: {1}", uri, e.Message);
  181. m_log.WarnFormat("[MAP IMAGE CONNECTOR]: {0}", reason);
  182. }
  183. finally
  184. {
  185. // This just dumps a warning for any operation that takes more than 100 ms
  186. int tickdiff = Util.EnvironmentTickCountSubtract(tickstart);
  187. m_log.DebugFormat("[MAP IMAGE CONNECTOR]: map tile uploaded in {0}ms", tickdiff);
  188. }
  189. return false;
  190. }
  191. public byte[] GetMapTile(string fileName, out string format)
  192. {
  193. format = string.Empty;
  194. new Exception("GetMapTile method not Implemented");
  195. return null;
  196. }
  197. }
  198. }