123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Net;
- using System.Reflection;
- using System.Text;
- using log4net;
- using Nini.Config;
- using Mono.Addins;
- using OpenMetaverse;
- using OpenMetaverse.StructuredData;
- using OpenSim.Framework;
- using OpenSim.Framework.Servers.HttpServer;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Region.Framework.Scenes;
- using Caps=OpenSim.Framework.Capabilities.Caps;
- namespace OpenSim.Region.ClientStack.Linden
- {
- public struct QueueItem
- {
- public int id;
- public OSDMap body;
- }
- [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "EventQueueGetModule")]
- public partial class EventQueueGetModule : IEventQueue, INonSharedRegionModule
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private static string LogHeader = "[EVENT QUEUE GET MODULE]";
- private const int KEEPALIVE = 60; // this could be larger now, but viewers expect it on opensim
- // we need to go back to close before viwers, or we may lose data
- private const int VIEWERKEEPALIVE = (KEEPALIVE - 1) * 1000; // do it shorter
- /// <value>
- /// Debug level.
- /// </value>
- public int DebugLevel { get; set; }
- protected Scene m_scene;
- private Dictionary<UUID, int> m_ids = new Dictionary<UUID, int>();
- private Dictionary<UUID, Queue<byte[]>> queues = new Dictionary<UUID, Queue<byte[]>>();
- private Dictionary<UUID, UUID> m_AvatarQueueUUIDMapping = new Dictionary<UUID, UUID>();
- #region INonSharedRegionModule methods
- public virtual void Initialise(IConfigSource config)
- {
- }
- public void AddRegion(Scene scene)
- {
- m_scene = scene;
- scene.RegisterModuleInterface<IEventQueue>(this);
- scene.EventManager.OnClientClosed += ClientClosed;
- scene.EventManager.OnRegisterCaps += OnRegisterCaps;
- MainConsole.Instance.Commands.AddCommand(
- "Debug",
- false,
- "debug eq",
- "debug eq [0|1|2]",
- "Turn on event queue debugging\n"
- + " <= 0 - turns off all event queue logging\n"
- + " >= 1 - turns on event queue setup and outgoing event logging\n"
- + " >= 2 - turns on poll notification",
- HandleDebugEq);
- MainConsole.Instance.Commands.AddCommand(
- "Debug",
- false,
- "show eq",
- "show eq",
- "Show contents of event queues for logged in avatars. Used for debugging.",
- HandleShowEq);
- }
- public void RemoveRegion(Scene scene)
- {
- if (m_scene != scene)
- return;
- scene.EventManager.OnClientClosed -= ClientClosed;
- scene.EventManager.OnRegisterCaps -= OnRegisterCaps;
- scene.UnregisterModuleInterface<IEventQueue>(this);
- m_scene = null;
- }
- public void RegionLoaded(Scene scene)
- {
- }
- public virtual void Close()
- {
- }
- public virtual string Name
- {
- get { return "EventQueueGetModule"; }
- }
- public Type ReplaceableInterface
- {
- get { return null; }
- }
- #endregion
- protected void HandleDebugEq(string module, string[] args)
- {
- if (!(args.Length == 3 && int.TryParse(args[2], out int debugLevel)))
- {
- MainConsole.Instance.Output("Usage: debug eq [0|1|2]");
- }
- else
- {
- DebugLevel = debugLevel;
- MainConsole.Instance.Output(
- "Set event queue debug level to {0} in {1}", DebugLevel, m_scene.RegionInfo.RegionName);
- }
- }
- protected void HandleShowEq(string module, string[] args)
- {
- MainConsole.Instance.Output("Events in Scene {0} agents queues :", m_scene.Name);
- lock (queues)
- {
- foreach (KeyValuePair<UUID, Queue<byte[]>> kvp in queues)
- {
- MainConsole.Instance.Output(" {0} {1}", kvp.Key, kvp.Value.Count);
- }
- }
- }
- /// <summary>
- /// Always returns a valid queue
- /// </summary>
- /// <param name="agentId"></param>
- /// <returns></returns>
- private Queue<byte[]> TryGetQueue(UUID agentId)
- {
- lock (queues)
- {
- if (queues.TryGetValue(agentId, out Queue<byte[]> queue))
- return queue;
- if (DebugLevel > 0)
- m_log.DebugFormat(
- "[EVENTQUEUE]: Adding new queue for agent {0} in region {1}",
- agentId, m_scene.RegionInfo.RegionName);
- queue = new Queue<byte[]>();
- queues[agentId] = queue;
- return queue;
- }
- }
- /// <summary>
- /// May return a null queue
- /// </summary>
- /// <param name="agentId"></param>
- /// <returns></returns>
- private Queue<byte[]> GetQueue(UUID agentId)
- {
- lock (queues)
- {
- if (queues.TryGetValue(agentId, out Queue<byte[]> queue))
- return queue;
- return null;
- }
- }
- #region IEventQueue Members
- //legacy
- public bool Enqueue(OSD data, UUID avatarID)
- {
- //m_log.DebugFormat("[EVENTQUEUE]: Enqueuing event for {0} in region {1}", avatarID, m_scene.RegionInfo.RegionName);
- try
- {
- Queue<byte[]> queue = GetQueue(avatarID);
- if (queue != null)
- {
- byte[] evData = Util.UTF8NBGetbytes(OSDParser.SerializeLLSDInnerXmlString(data));
- lock (queue)
- queue.Enqueue(evData);
- }
- else
- {
- m_log.WarnFormat(
- "[EVENTQUEUE]: (Enqueue) No queue found for agent {0} in region {1}",
- avatarID, m_scene.Name);
- }
- }
- catch (NullReferenceException e)
- {
- m_log.Error("[EVENTQUEUE] Caught exception: " + e);
- return false;
- }
- return true;
- }
- //legacy
- /*
- public bool Enqueue(string ev, UUID avatarID)
- {
- //m_log.DebugFormat("[EVENTQUEUE]: Enqueuing event for {0} in region {1}", avatarID, m_scene.RegionInfo.RegionName);
- try
- {
- Queue<byte[]> queue = GetQueue(avatarID);
- if (queue != null)
- {
- byte[] evData = Util.UTF8NBGetbytes(ev);
- lock (queue)
- queue.Enqueue(evData);
- }
- else
- {
- m_log.WarnFormat(
- "[EVENTQUEUE]: (Enqueue) No queue found for agent {0} in region {1}",
- avatarID, m_scene.Name);
- }
- }
- catch (NullReferenceException e)
- {
- m_log.Error("[EVENTQUEUE] Caught exception: " + e);
- return false;
- }
- return true;
- }
- */
- public bool Enqueue(byte[] evData, UUID avatarID)
- {
- //m_log.DebugFormat("[EVENTQUEUE]: Enqueuing event for {0} in region {1}", avatarID, m_scene.RegionInfo.RegionName);
- try
- {
- Queue<byte[]> queue = GetQueue(avatarID);
- if (queue != null)
- {
- lock (queue)
- queue.Enqueue(evData);
- }
- else
- {
- m_log.WarnFormat(
- "[EVENTQUEUE]: (Enqueue) No queue found for agent {0} in region {1}",
- avatarID, m_scene.Name);
- }
- }
- catch (NullReferenceException e)
- {
- m_log.Error("[EVENTQUEUE] Caught exception: " + e);
- return false;
- }
- return true;
- }
- public bool Enqueue(osUTF8 o, UUID avatarID)
- {
- //m_log.DebugFormat("[EVENTQUEUE]: Enqueuing event for {0} in region {1}", avatarID, m_scene.RegionInfo.RegionName);
- try
- {
- Queue<byte[]> queue = GetQueue(avatarID);
- if (queue != null)
- {
- lock (queue)
- queue.Enqueue(o.ToArray());
- }
- else
- {
- m_log.WarnFormat(
- "[EVENTQUEUE]: (Enqueue) No queue found for agent {0} in region {1}",
- avatarID, m_scene.Name);
- }
- }
- catch (NullReferenceException e)
- {
- m_log.Error("[EVENTQUEUE] Caught exception: " + e);
- return false;
- }
- return true;
- }
- #endregion
- private void ClientClosed(UUID agentID, Scene scene)
- {
- //m_log.DebugFormat("[EVENTQUEUE]: Closed client {0} in region {1}", agentID, m_scene.RegionInfo.RegionName);
- lock (queues)
- {
- queues.Remove(agentID);
- lock (m_AvatarQueueUUIDMapping)
- m_AvatarQueueUUIDMapping.Remove(agentID);
- lock (m_ids)
- m_ids.Remove(agentID);
- }
- // m_log.DebugFormat("[EVENTQUEUE]: Deleted queues for {0} in region {1}", agentID, m_scene.RegionInfo.RegionName);
- }
- /// <summary>
- /// Generate an Event Queue Get handler path for the given eqg uuid.
- /// </summary>
- /// <param name='eqgUuid'></param>
- private string GenerateEqgCapPath(UUID eqgUuid)
- {
- return string.Format("/CE/{0}", eqgUuid);
- }
- public void OnRegisterCaps(UUID agentID, Caps caps)
- {
- // Register an event queue for the client
- if (DebugLevel > 0)
- m_log.DebugFormat(
- "[EVENTQUEUE]: OnRegisterCaps: agentID {0} caps {1} region {2}",
- agentID, caps, m_scene.RegionInfo.RegionName);
- UUID eventQueueGetUUID;
- Queue<Byte[]> queue = null;
- lock (queues)
- {
- queues.TryGetValue(agentID, out queue);
- if (queue == null)
- {
- queue = new Queue<byte[]>();
- queues[agentID] = queue;
- lock (m_AvatarQueueUUIDMapping)
- {
- eventQueueGetUUID = UUID.Random();
- m_AvatarQueueUUIDMapping[agentID] = eventQueueGetUUID;
- lock (m_ids)
- {
- if (m_ids.ContainsKey(agentID))
- m_ids[agentID]++;
- else
- {
- Random rnd = new Random(Environment.TickCount);
- m_ids[agentID] = rnd.Next(30000000);
- }
- }
- }
- }
- else
- {
- queue.Enqueue(null);
- // reuse or not to reuse
- lock (m_AvatarQueueUUIDMapping)
- {
- // Its reuse caps path not queues those are been reused already
- if (m_AvatarQueueUUIDMapping.ContainsKey(agentID))
- {
- m_log.DebugFormat("[EVENTQUEUE]: Found Existing UUID!");
- eventQueueGetUUID = m_AvatarQueueUUIDMapping[agentID];
- lock (m_ids)
- {
- // change to negative numbers so they are changed at end of sending first marker
- // old data on a queue may be sent on a response for a new caps
- // but at least will be sent with coerent IDs
- if (m_ids.ContainsKey(agentID))
- m_ids[agentID] = -m_ids[agentID];
- else
- {
- Random rnd = new Random(Environment.TickCount);
- m_ids[agentID] = -rnd.Next(30000000);
- }
- }
- }
- else
- {
- eventQueueGetUUID = UUID.Random();
- m_AvatarQueueUUIDMapping[agentID] = eventQueueGetUUID;
- lock (m_ids)
- {
- if (m_ids.ContainsKey(agentID))
- m_ids[agentID]++;
- else
- {
- Random rnd = new Random(Environment.TickCount);
- m_ids.Add(agentID, rnd.Next(30000000));
- }
- }
- }
- }
- }
- }
- caps.RegisterPollHandler(
- "EventQueueGet",
- new PollServiceEventArgs(null, GenerateEqgCapPath(eventQueueGetUUID), HasEvents, GetEvents, NoEvents, Drop, agentID, VIEWERKEEPALIVE));
- }
- public bool HasEvents(UUID requestID, UUID agentID)
- {
- Queue<byte[]> queue = GetQueue(agentID);
- if (queue != null)
- {
- lock (queue)
- {
- //m_log.WarnFormat("POLLED FOR EVENTS BY {0} in {1} -- {2}", agentID, m_scene.RegionInfo.RegionName, queue.Count);
- return queue.Count > 0;
- }
- }
- //m_log.WarnFormat("POLLED FOR EVENTS BY {0} unknown agent", agentID);
- return true;
- }
- /// <summary>
- /// Logs a debug line for an outbound event queue message if appropriate.
- /// </summary>
- /// <param name='element'>Element containing message</param>
- private void LogOutboundDebugMessage(OSD element, UUID agentId)
- {
- if (element is OSDMap)
- {
- OSDMap ev = (OSDMap)element;
- m_log.DebugFormat(
- "Eq OUT {0,-30} to {1,-20} {2,-20}",
- ev["message"], m_scene.GetScenePresence(agentId).Name, m_scene.Name);
- }
- }
- public void Drop(UUID requestID, UUID pAgentId)
- {
- // do nothing, in last case http server will do it
- }
- private readonly byte[] EventHeader = osUTF8.GetASCIIBytes("<llsd><map><key>events</key><array>");
- public Hashtable GetEvents(UUID requestID, UUID pAgentId)
- {
- if (DebugLevel >= 2)
- m_log.WarnFormat("POLLED FOR EQ MESSAGES BY {0} in {1}", pAgentId, m_scene.Name);
- Queue<byte[]> queue = GetQueue(pAgentId);
- if (queue == null)
- return NoAgent(requestID, pAgentId);
- byte[] element = null;
- List<byte[]> elements;
- int totalSize = 0;
- int thisID = 0;
- bool negativeID = false;
- lock (queue)
- {
- if (queue.Count == 0)
- return NoEvents(requestID, pAgentId);
- lock (m_ids)
- thisID = m_ids[pAgentId];
- if (thisID < 0)
- {
- negativeID = true;
- thisID = -thisID;
- }
- elements = new List<byte[]>(queue.Count + 2) {EventHeader};
- while (queue.Count > 0)
- {
- element = queue.Dequeue();
- // add elements until a marker is found
- // so they get into a response
- if (element == null)
- break;
- if (DebugLevel > 0)
- LogOutboundDebugMessage(element, pAgentId);
- elements.Add(element);
- totalSize += element.Length;
- }
- }
- lock (m_ids)
- {
- if (element == null && negativeID)
- {
- Random rnd = new Random(Environment.TickCount);
- m_ids[pAgentId] = rnd.Next(30000000);
- }
- else
- m_ids[pAgentId] = thisID + 1;
- }
- if (totalSize == 0)
- return NoEvents(requestID, pAgentId);
- totalSize += EventHeader.Length;
- osUTF8 sb = OSUTF8Cached.Acquire();
- LLSDxmlEncode2.AddEndArray(sb); // events array
- LLSDxmlEncode2.AddElem("id", thisID, sb);
- LLSDxmlEncode2.AddEndMap(sb);
- element = LLSDxmlEncode2.EndToBytes(sb);
- elements.Add(element);
- totalSize += element.Length;
- Hashtable responsedata = new Hashtable
- {
- ["int_response_code"] = 200,
- ["content_type"] = "application/xml"
- };
- //temporary
- byte[] finalData = new byte[totalSize];
- int dst = 0;
- for(int i = 0; i < elements.Count; ++i)
- {
- byte[] src = elements[i];
- Array.Copy(src, 0, finalData, dst, src.Length);
- dst += src.Length;
- }
- responsedata["bin_response_data"] = finalData;
- responsedata["keepaliveTimeout"] = KEEPALIVE;
- return responsedata;
- }
- public Hashtable NoEvents(UUID requestID, UUID agentID)
- {
- Hashtable responsedata = new Hashtable();
- Queue<byte[]> queue = GetQueue(agentID);
- if (queue == null)
- {
- responsedata["int_response_code"] = (int)HttpStatusCode.NotFound;
- return responsedata;
- }
- responsedata["int_response_code"] = (int)HttpStatusCode.BadGateway;
- return responsedata;
- }
- public Hashtable NoAgent(UUID requestID, UUID agentID)
- {
- Hashtable responsedata = new Hashtable
- {
- ["int_response_code"] = (int)HttpStatusCode.NotFound
- };
- return responsedata;
- }
- }
- }
|