Dataserver.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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 OpenSim 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 libsecondlife;
  31. using OpenSim.Region.ScriptEngine.XEngine.Script;
  32. namespace OpenSim.Region.ScriptEngine.XEngine.AsyncCommandPlugins
  33. {
  34. public class Dataserver
  35. {
  36. public AsyncCommandManager m_CmdManager;
  37. private Dictionary<string, DataserverRequest> DataserverRequests =
  38. new Dictionary<string, DataserverRequest>();
  39. public Dataserver(AsyncCommandManager CmdManager)
  40. {
  41. m_CmdManager = CmdManager;
  42. }
  43. private class DataserverRequest
  44. {
  45. public uint localID;
  46. public LLUUID itemID;
  47. public LLUUID ID;
  48. public string handle;
  49. public DateTime startTime;
  50. }
  51. public LLUUID RegisterRequest(uint localID, LLUUID itemID,
  52. string identifier)
  53. {
  54. lock(DataserverRequests)
  55. {
  56. if(DataserverRequests.ContainsKey(identifier))
  57. return LLUUID.Zero;
  58. DataserverRequest ds = new DataserverRequest();
  59. ds.localID = localID;
  60. ds.itemID = itemID;
  61. ds.ID = LLUUID.Random();
  62. ds.handle = identifier;
  63. ds.startTime = DateTime.Now;
  64. DataserverRequests[identifier]=ds;
  65. return ds.ID;
  66. }
  67. }
  68. public void DataserverReply(string identifier, string reply)
  69. {
  70. DataserverRequest ds;
  71. lock(DataserverRequests)
  72. {
  73. if(!DataserverRequests.ContainsKey(identifier))
  74. return;
  75. ds=DataserverRequests[identifier];
  76. DataserverRequests.Remove(identifier);
  77. }
  78. m_CmdManager.m_ScriptEngine.PostObjectEvent(ds.localID,
  79. new XEventParams( "dataserver", new Object[]
  80. { new LSL_Types.LSLString(ds.ID.ToString()),
  81. new LSL_Types.LSLString(reply)},
  82. new XDetectParams[0]));
  83. }
  84. public void RemoveEvents(uint localID, LLUUID itemID)
  85. {
  86. lock(DataserverRequests)
  87. {
  88. foreach (DataserverRequest ds in new List<DataserverRequest>(DataserverRequests.Values))
  89. {
  90. if(ds.itemID == itemID)
  91. DataserverRequests.Remove(ds.handle);
  92. }
  93. }
  94. }
  95. public void ExpireRequests()
  96. {
  97. lock(DataserverRequests)
  98. {
  99. foreach (DataserverRequest ds in new List<DataserverRequest>(DataserverRequests.Values))
  100. {
  101. if(ds.startTime > DateTime.Now.AddSeconds(30))
  102. DataserverRequests.Remove(ds.handle);
  103. }
  104. }
  105. }
  106. }
  107. }