PollServiceHttpRequest.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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.Collections;
  29. using System.Collections.Generic;
  30. using System.Reflection;
  31. using System.Text;
  32. using HttpServer;
  33. using log4net;
  34. using OpenMetaverse;
  35. namespace OpenSim.Framework.Servers.HttpServer
  36. {
  37. public class PollServiceHttpRequest
  38. {
  39. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  40. public readonly PollServiceEventArgs PollServiceArgs;
  41. public readonly IHttpClientContext HttpContext;
  42. public readonly IHttpRequest Request;
  43. public readonly int RequestTime;
  44. public readonly UUID RequestID;
  45. public int contextHash;
  46. /*
  47. private void GenContextHash()
  48. {
  49. Random rnd = new Random();
  50. contextHash = 0;
  51. if (Request.Headers["remote_addr"] != null)
  52. contextHash = (Request.Headers["remote_addr"]).GetHashCode() << 16;
  53. else
  54. contextHash = rnd.Next() << 16;
  55. if (Request.Headers["remote_port"] != null)
  56. {
  57. string[] strPorts = Request.Headers["remote_port"].Split(new char[] { ',' });
  58. contextHash += Int32.Parse(strPorts[0]);
  59. }
  60. else
  61. contextHash += rnd.Next() & 0xffff;
  62. }
  63. */
  64. public PollServiceHttpRequest(
  65. PollServiceEventArgs pPollServiceArgs, IHttpClientContext pHttpContext, IHttpRequest pRequest)
  66. {
  67. PollServiceArgs = pPollServiceArgs;
  68. HttpContext = pHttpContext;
  69. Request = pRequest;
  70. RequestTime = System.Environment.TickCount;
  71. RequestID = UUID.Random();
  72. // GenContextHash();
  73. contextHash = HttpContext.contextID;
  74. }
  75. internal void DoHTTPGruntWork(BaseHttpServer server, Hashtable responsedata)
  76. {
  77. OSHttpResponse response
  78. = new OSHttpResponse(new HttpResponse(HttpContext, Request), HttpContext);
  79. byte[] buffer = server.DoHTTPGruntWork(responsedata, response);
  80. if(Request.Body.CanRead)
  81. Request.Body.Dispose();
  82. response.SendChunked = false;
  83. response.ContentLength64 = buffer.Length;
  84. response.ContentEncoding = Encoding.UTF8;
  85. // response.ReuseContext = false;
  86. try
  87. {
  88. response.OutputStream.Write(buffer, 0, buffer.Length);
  89. response.OutputStream.Flush();
  90. response.Send();
  91. buffer = null;
  92. }
  93. catch (Exception ex)
  94. {
  95. m_log.Warn("[POLL SERVICE WORKER THREAD]: Error ", ex);
  96. }
  97. PollServiceArgs.RequestsHandled++;
  98. }
  99. internal void DoHTTPstop(BaseHttpServer server)
  100. {
  101. OSHttpResponse response
  102. = new OSHttpResponse(new HttpResponse(HttpContext, Request), HttpContext);
  103. if(Request.Body.CanRead)
  104. Request.Body.Dispose();
  105. response.SendChunked = false;
  106. response.ContentLength64 = 0;
  107. response.ContentEncoding = Encoding.UTF8;
  108. // response.ReuseContext = false;
  109. response.KeepAlive = false;
  110. response.SendChunked = false;
  111. response.StatusCode = 503;
  112. try
  113. {
  114. response.OutputStream.Flush();
  115. response.Send();
  116. }
  117. catch (Exception e)
  118. {
  119. }
  120. }
  121. }
  122. class PollServiceHttpRequestComparer : IEqualityComparer<PollServiceHttpRequest>
  123. {
  124. public bool Equals(PollServiceHttpRequest b1, PollServiceHttpRequest b2)
  125. {
  126. if (b1.contextHash != b2.contextHash)
  127. return false;
  128. // bool b = Object.ReferenceEquals(b1.HttpContext, b2.HttpContext);
  129. // return b;
  130. return true;
  131. }
  132. public int GetHashCode(PollServiceHttpRequest b2)
  133. {
  134. return (int)b2.contextHash;
  135. }
  136. }
  137. }