/* * 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 OpenSim 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.Threading; using libsecondlife; using OpenSim.Framework; using OpenSim.Region.Environment.Scenes.Scripting; namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase { /// /// EventQueueManager handles event queues /// Events are queued and executed in separate thread /// [Serializable] public class EventQueueManager : iScriptEngineFunctionModule { // // Class is instanced in "ScriptEngine" and used by "EventManager" also instanced in "ScriptEngine". // // Class purpose is to queue and execute functions that are received by "EventManager": // - allowing "EventManager" to release its event thread immediately, thus not interrupting server execution. // - allowing us to prioritize and control execution of script functions. // Class can use multiple threads for simultaneous execution. Mutexes are used for thread safety. // // 1. Hold an execution queue for scripts // 2. Use threads to process queue, each thread executes one script function on each pass. // 3. Catch any script error and process it // // // Notes: // * Current execution load balancing is optimized for 1 thread, and can cause unfair execute balancing between scripts. // Not noticeable unless server is under high load. // * This class contains the number of threads used for script executions. Since we are not microthreading scripts yet, // increase number of threads to allow more concurrent script executions in OpenSim. // public ScriptEngine m_ScriptEngine; /// /// List of threads (classes) processing event queue /// internal List eventQueueThreads; // Thread pool that we work on /// /// Locking access to eventQueueThreads AND staticGlobalEventQueueThreads. /// Note that this may or may not be a reference to a static object depending on PrivateRegionThreads config setting. /// private object eventQueueThreadsLock = new object(); // Static objects for referencing the objects above if we don't have private threads: internal static List staticEventQueueThreads; // A static reference used if we don't use private threads internal static object staticEventQueueThreadsLock; // Statick lock object reference for same reason /// /// Global static list of all threads (classes) processing event queue -- used by max enforcment thread /// private List staticGlobalEventQueueThreads = new List(); /// /// Used internally to specify how many threads should exit gracefully /// public int ThreadsToExit; public object ThreadsToExitLock = new object(); public object queueLock = new object(); // Mutex lock object /// /// How many threads to process queue with /// internal int numberOfThreads; internal static int EventExecutionMaxQueueSize; /// /// Maximum time one function can use for execution before we perform a thread kill. /// private int maxFunctionExecutionTimems { get { return (int)(maxFunctionExecutionTimens / 10000); } set { maxFunctionExecutionTimens = value * 10000; } } /// /// Contains nanoseconds version of maxFunctionExecutionTimems so that it matches time calculations better (performance reasons). /// WARNING! ONLY UPDATE maxFunctionExecutionTimems, NEVER THIS DIRECTLY. /// public long maxFunctionExecutionTimens; /// /// Enforce max execution time /// public bool EnforceMaxExecutionTime; /// /// Kill script (unload) when it exceeds execution time /// private bool KillScriptOnMaxFunctionExecutionTime; /// /// List of localID locks for mutex processing of script events /// private List objectLocks = new List(); private object tryLockLock = new object(); // Mutex lock object /// /// Queue containing events waiting to be executed /// public Queue eventQueue = new Queue(); #region " Queue structures " /// /// Queue item structure /// public struct QueueItemStruct { public uint localID; public LLUUID itemID; public string functionName; public Queue_llDetectParams_Struct llDetectParams; public object[] param; } /// /// Shared empty llDetectNull /// public readonly static Queue_llDetectParams_Struct llDetectNull = new Queue_llDetectParams_Struct(); /// /// Structure to hold data for llDetect* commands /// [Serializable] public struct Queue_llDetectParams_Struct { // More or less just a placeholder for the actual moving of additional data // should be fixed to something better :) public LSL_Types.key[] _key; public LSL_Types.Quaternion[] _Quaternion; public LSL_Types.Vector3[] _Vector3; public bool[] _bool; public int[] _int; public string[] _string; } #endregion #region " Initialization / Startup " public EventQueueManager(ScriptEngine _ScriptEngine) { m_ScriptEngine = _ScriptEngine; // TODO: We need to move from single EventQueueManager to list of it in to share threads bool PrivateRegionThreads = true; // m_ScriptEngine.ScriptConfigSource.GetBoolean("PrivateRegionThreads", false); // Create thread pool list and lock object // Determine from config if threads should be dedicated to regions or shared if (PrivateRegionThreads) { // PRIVATE THREAD POOL PER REGION eventQueueThreads = new List(); eventQueueThreadsLock = new object(); } else { // SHARED THREAD POOL // Crate the static objects if (staticEventQueueThreads == null) staticEventQueueThreads = new List(); if (staticEventQueueThreadsLock == null) staticEventQueueThreadsLock = new object(); // Now reference our locals to them eventQueueThreads = staticEventQueueThreads; eventQueueThreadsLock = staticEventQueueThreadsLock; } ReadConfig(); } public void ReadConfig() { // Refresh config numberOfThreads = m_ScriptEngine.ScriptConfigSource.GetInt("NumberOfScriptThreads", 2); maxFunctionExecutionTimems = m_ScriptEngine.ScriptConfigSource.GetInt("MaxEventExecutionTimeMs", 5000); EnforceMaxExecutionTime = m_ScriptEngine.ScriptConfigSource.GetBoolean("EnforceMaxEventExecutionTime", false); KillScriptOnMaxFunctionExecutionTime = m_ScriptEngine.ScriptConfigSource.GetBoolean("DeactivateScriptOnTimeout", false); EventExecutionMaxQueueSize = m_ScriptEngine.ScriptConfigSource.GetInt("EventExecutionMaxQueueSize", 300); // Now refresh config in all threads lock (eventQueueThreadsLock) { foreach (EventQueueThreadClass EventQueueThread in eventQueueThreads) { EventQueueThread.ReadConfig(); } } } #endregion #region " Shutdown all threads " ~EventQueueManager() { Stop(); } private void Stop() { if (eventQueueThreadsLock != null && eventQueueThreads != null) { // Kill worker threads lock (eventQueueThreadsLock) { foreach (EventQueueThreadClass EventQueueThread in eventQueueThreads) { AbortThreadClass(EventQueueThread); } eventQueueThreads.Clear(); staticGlobalEventQueueThreads.Clear(); } } // Remove all entries from our event queue lock (queueLock) { eventQueue.Clear(); } } #endregion #region " Start / stop script execution threads (ThreadClasses) " private void StartNewThreadClass() { EventQueueThreadClass eqtc = new EventQueueThreadClass(this); eventQueueThreads.Add(eqtc); staticGlobalEventQueueThreads.Add(eqtc); m_ScriptEngine.Log.Debug(m_ScriptEngine.ScriptEngineName, "Started new script execution thread. Current thread count: " + eventQueueThreads.Count); } private void AbortThreadClass(EventQueueThreadClass threadClass) { if (eventQueueThreads.Contains(threadClass)) eventQueueThreads.Remove(threadClass); if (staticGlobalEventQueueThreads.Contains(threadClass)) staticGlobalEventQueueThreads.Remove(threadClass); try { threadClass.Stop(); } catch (Exception ex) { m_ScriptEngine.Log.Error(m_ScriptEngine.ScriptEngineName + ":EventQueueManager", "If you see this, could you please report it to Tedd:"); m_ScriptEngine.Log.Error(m_ScriptEngine.ScriptEngineName + ":EventQueueManager", "Script thread execution timeout kill ended in exception: " + ex.ToString()); } m_ScriptEngine.Log.Debug(m_ScriptEngine.ScriptEngineName, "Killed script execution thread. Remaining thread count: " + eventQueueThreads.Count); } #endregion #region " Mutex locks for queue access " /// /// Try to get a mutex lock on localID /// /// /// public bool TryLock(uint localID) { lock (tryLockLock) { if (objectLocks.Contains(localID) == true) { return false; } else { objectLocks.Add(localID); return true; } } } /// /// Release mutex lock on localID /// /// public void ReleaseLock(uint localID) { lock (tryLockLock) { if (objectLocks.Contains(localID) == true) { objectLocks.Remove(localID); } } } #endregion #region " Add events to execution queue " /// /// Add event to event execution queue /// /// Region object ID /// Name of the function, will be state + "_event_" + FunctionName /// Array of parameters to match event mask public void AddToObjectQueue(uint localID, string FunctionName, Queue_llDetectParams_Struct qParams, params object[] param) { // Determine all scripts in Object and add to their queue //myScriptEngine.m_logger.Verbose(ScriptEngineName, "EventQueueManager Adding localID: " + localID + ", FunctionName: " + FunctionName); // Do we have any scripts in this object at all? If not, return if (m_ScriptEngine.m_ScriptManager.Scripts.ContainsKey(localID) == false) { //Console.WriteLine("Event \String.Empty + FunctionName + "\" for localID: " + localID + ". No scripts found on this localID."); return; } Dictionary.KeyCollection scriptKeys = m_ScriptEngine.m_ScriptManager.GetScriptKeys(localID); foreach (LLUUID itemID in scriptKeys) { // Add to each script in that object // TODO: Some scripts may not subscribe to this event. Should we NOT add it? Does it matter? AddToScriptQueue(localID, itemID, FunctionName, qParams, param); } } /// /// Add event to event execution queue /// /// Region object ID /// Region script ID /// Name of the function, will be state + "_event_" + FunctionName /// Array of parameters to match event mask public void AddToScriptQueue(uint localID, LLUUID itemID, string FunctionName, Queue_llDetectParams_Struct qParams, params object[] param) { lock (queueLock) { if (eventQueue.Count >= EventExecutionMaxQueueSize) { m_ScriptEngine.Log.Error(m_ScriptEngine.ScriptEngineName, "ERROR: Event execution queue item count is at " + eventQueue.Count + ". Config variable \"EventExecutionMaxQueueSize\" is set to " + EventExecutionMaxQueueSize + ", so ignoring new event."); m_ScriptEngine.Log.Error(m_ScriptEngine.ScriptEngineName, "Event ignored: localID: " + localID + ", itemID: " + itemID + ", FunctionName: " + FunctionName); return; } // Create a structure and add data QueueItemStruct QIS = new QueueItemStruct(); QIS.localID = localID; QIS.itemID = itemID; QIS.functionName = FunctionName; QIS.llDetectParams = qParams; QIS.param = param; // Add it to queue eventQueue.Enqueue(QIS); } } #endregion #region " Maintenance thread " /// /// Adjust number of script thread classes. It can start new, but if it needs to stop it will just set number of threads in "ThreadsToExit" and threads will have to exit themselves. /// Called from MaintenanceThread /// public void AdjustNumberOfScriptThreads() { // Is there anything here for us to do? if (eventQueueThreads.Count == numberOfThreads) return; lock (eventQueueThreadsLock) { int diff = numberOfThreads - eventQueueThreads.Count; // Positive number: Start // Negative number: too many are running if (diff > 0) { // We need to add more threads for (int ThreadCount = eventQueueThreads.Count; ThreadCount < numberOfThreads; ThreadCount++) { StartNewThreadClass(); } } if (diff < 0) { // We need to kill some threads lock (ThreadsToExitLock) { ThreadsToExit = Math.Abs(diff); } } } } /// /// Check if any thread class has been executing an event too long /// public void CheckScriptMaxExecTime() { // Iterate through all ScriptThreadClasses and check how long their current function has been executing lock (eventQueueThreadsLock) { foreach (EventQueueThreadClass EventQueueThread in staticGlobalEventQueueThreads) { // Is thread currently executing anything? if (EventQueueThread.InExecution) { // Has execution time expired? if (DateTime.Now.Ticks - EventQueueThread.LastExecutionStarted > maxFunctionExecutionTimens) { // Yes! We need to kill this thread! // Set flag if script should be removed or not EventQueueThread.KillCurrentScript = KillScriptOnMaxFunctionExecutionTime; // Abort this thread AbortThreadClass(EventQueueThread); // We do not need to start another, MaintenenceThread will do that for us //StartNewThreadClass(); } } } } } #endregion /// /// If set to true then threads and stuff should try to make a graceful exit /// public bool PleaseShutdown { get { return _PleaseShutdown; } set { _PleaseShutdown = value; } } private bool _PleaseShutdown = false; } }