MapGetServerConnector.cs 5.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.Threading;
  32. using Nini.Config;
  33. using log4net;
  34. using OpenSim.Server.Base;
  35. using OpenSim.Services.Interfaces;
  36. using OpenSim.Framework.Servers.HttpServer;
  37. using OpenSim.Server.Handlers.Base;
  38. using OpenMetaverse;
  39. namespace OpenSim.Server.Handlers.MapImage
  40. {
  41. public class MapGetServiceConnector : ServiceConnector
  42. {
  43. //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  44. private IMapImageService m_MapService;
  45. private string m_ConfigName = "MapImageService";
  46. public MapGetServiceConnector(IConfigSource config, IHttpServer server, string configName) :
  47. base(config, server, configName)
  48. {
  49. IConfig serverConfig = config.Configs[m_ConfigName];
  50. if (serverConfig == null)
  51. throw new Exception(String.Format("No section {0} in config file", m_ConfigName));
  52. string gridService = serverConfig.GetString("LocalServiceModule", string.Empty);
  53. if (string.IsNullOrWhiteSpace(gridService))
  54. throw new Exception("No LocalServiceModule in config file");
  55. object[] args = new object[] { config };
  56. m_MapService = ServerUtils.LoadPlugin<IMapImageService>(gridService, args);
  57. server.AddStreamHandler(new MapServerGetHandler(m_MapService));
  58. }
  59. }
  60. class MapServerGetHandler : BaseStreamHandler
  61. {
  62. public static readonly object ev = new object();
  63. //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  64. private IMapImageService m_MapService;
  65. public MapServerGetHandler(IMapImageService service) :
  66. base("GET", "/map")
  67. {
  68. m_MapService = service;
  69. }
  70. protected override byte[] ProcessRequest(string path, Stream request, IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
  71. {
  72. if(!Monitor.TryEnter(ev, 5000))
  73. {
  74. httpResponse.StatusCode = (int)HttpStatusCode.ServiceUnavailable;
  75. httpResponse.AddHeader("Retry-After", "10");
  76. return new byte[0];
  77. }
  78. byte[] result = new byte[0];
  79. string format = string.Empty;
  80. //UUID scopeID = new UUID("07f8d88e-cd5e-4239-a0ed-843f75d09992");
  81. UUID scopeID = UUID.Zero;
  82. // This will be map/tilefile.ext, but on multitenancy it will be
  83. // map/scope/teilefile.ext
  84. path = path.Trim('/');
  85. string[] bits = path.Split(new char[] {'/'});
  86. if (bits.Length > 2)
  87. {
  88. try
  89. {
  90. scopeID = new UUID(bits[1]);
  91. }
  92. catch
  93. {
  94. return new byte[9];
  95. }
  96. path = bits[2];
  97. path = path.Trim('/');
  98. }
  99. if(path.Length == 0)
  100. {
  101. httpResponse.StatusCode = (int)HttpStatusCode.NotFound;
  102. httpResponse.ContentType = "text/plain";
  103. return new byte[0];
  104. }
  105. result = m_MapService.GetMapTile(path, scopeID, out format);
  106. if (result.Length > 0)
  107. {
  108. httpResponse.StatusCode = (int)HttpStatusCode.OK;
  109. if (format.Equals(".png"))
  110. httpResponse.ContentType = "image/png";
  111. else if (format.Equals(".jpg") || format.Equals(".jpeg"))
  112. httpResponse.ContentType = "image/jpeg";
  113. }
  114. else
  115. {
  116. httpResponse.StatusCode = (int)HttpStatusCode.NotFound;
  117. httpResponse.ContentType = "text/plain";
  118. }
  119. Monitor.Exit(ev);
  120. return result;
  121. }
  122. }
  123. }