MapGetServerConnector.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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",
  53. String.Empty);
  54. if (gridService == String.Empty)
  55. throw new Exception("No LocalServiceModule in config file");
  56. Object[] args = new Object[] { config };
  57. m_MapService = ServerUtils.LoadPlugin<IMapImageService>(gridService, args);
  58. server.AddStreamHandler(new MapServerGetHandler(m_MapService));
  59. }
  60. }
  61. class MapServerGetHandler : BaseStreamHandler
  62. {
  63. public static ManualResetEvent ev = new ManualResetEvent(true);
  64. // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  65. private IMapImageService m_MapService;
  66. public MapServerGetHandler(IMapImageService service) :
  67. base("GET", "/map")
  68. {
  69. m_MapService = service;
  70. }
  71. protected override byte[] ProcessRequest(string path, Stream request, IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
  72. {
  73. ev.WaitOne();
  74. lock (ev)
  75. {
  76. ev.Reset();
  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. string[] bits = path.Trim('/').Split(new char[] {'/'});
  83. if (bits.Length > 1)
  84. {
  85. scopeID = new UUID(bits[0]);
  86. path = bits[1];
  87. }
  88. result = m_MapService.GetMapTile(path.Trim('/'), scopeID, out format);
  89. if (result.Length > 0)
  90. {
  91. httpResponse.StatusCode = (int)HttpStatusCode.OK;
  92. if (format.Equals(".png"))
  93. httpResponse.ContentType = "image/png";
  94. else if (format.Equals(".jpg") || format.Equals(".jpeg"))
  95. httpResponse.ContentType = "image/jpeg";
  96. }
  97. else
  98. {
  99. httpResponse.StatusCode = (int)HttpStatusCode.NotFound;
  100. httpResponse.ContentType = "text/plain";
  101. }
  102. lock (ev)
  103. {
  104. ev.Set();
  105. }
  106. return result;
  107. }
  108. }
  109. }