123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356 |
- /*
- * 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.Globalization;
- using System.IO;
- using System.Reflection;
- using System.Runtime.Remoting;
- using System.Runtime.Remoting.Lifetime;
- using System.Security.Policy;
- using System.Text;
- using System.Threading;
- using System.Xml;
- using OpenMetaverse;
- using log4net;
- using Nini.Config;
- using Amib.Threading;
- using OpenSim.Framework;
- using OpenSim.Region.CoreModules;
- using OpenSim.Region.Framework.Scenes;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Region.ScriptEngine.Shared;
- using OpenSim.Region.ScriptEngine.Shared.Api;
- using OpenSim.Region.ScriptEngine.Shared.Api.Runtime;
- using OpenSim.Region.ScriptEngine.Shared.ScriptBase;
- using OpenSim.Region.ScriptEngine.Shared.CodeTools;
- using OpenSim.Region.ScriptEngine.Interfaces;
- using System.Diagnostics; //for [DebuggerNonUserCode]
- namespace OpenSim.Region.ScriptEngine.Shared.Instance
- {
- public class ScriptInstance : MarshalByRefObject, IScriptInstance
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- public bool StatePersistedHere { get { return m_AttachedAvatar == UUID.Zero; } }
- /// <summary>
- /// The current work item if an event for this script is running or waiting to run,
- /// </summary>
- /// <remarks>
- /// Null if there is no running or waiting to run event. Must be changed only under an EventQueue lock.
- /// </remarks>
- private IScriptWorkItem m_CurrentWorkItem;
- private IScript m_Script;
- private DetectParams[] m_DetectParams;
- private bool m_TimerQueued;
- private DateTime m_EventStart;
- private bool m_InEvent;
- private string m_assemblyPath;
- private string m_dataPath;
- private string m_CurrentEvent = String.Empty;
- private bool m_InSelfDelete;
- private int m_MaxScriptQueue;
- private bool m_SaveState;
- private int m_ControlEventsInQueue;
- private int m_LastControlLevel;
- private bool m_CollisionInQueue;
- private bool m_StateChangeInProgress;
- // The following is for setting a minimum delay between events
- private double m_minEventDelay;
- private long m_eventDelayTicks;
- private long m_nextEventTimeTicks;
- private bool m_startOnInit = true;
- private UUID m_AttachedAvatar;
- private StateSource m_stateSource;
- private bool m_postOnRez;
- private bool m_startedFromSavedState;
- private UUID m_CurrentStateHash;
- private UUID m_RegionID;
- public int DebugLevel { get; set; }
- public WaitHandle CoopWaitHandle { get; private set; }
- public Stopwatch ExecutionTimer { get; private set; }
- public Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>> LineMap { get; set; }
- private Dictionary<string,IScriptApi> m_Apis = new Dictionary<string,IScriptApi>();
- public Object[] PluginData = new Object[0];
- /// <summary>
- /// Used by llMinEventDelay to suppress events happening any faster than this speed.
- /// This currently restricts all events in one go. Not sure if each event type has
- /// its own check so take the simple route first.
- /// </summary>
- public double MinEventDelay
- {
- get { return m_minEventDelay; }
- set
- {
- if (value > 0.001)
- m_minEventDelay = value;
- else
- m_minEventDelay = 0.0;
- m_eventDelayTicks = (long)(m_minEventDelay * 10000000L);
- m_nextEventTimeTicks = DateTime.Now.Ticks;
- }
- }
- public bool Running
- {
- get { return m_running; }
- set
- {
- m_running = value;
- if (m_running)
- StayStopped = false;
- }
- }
- private bool m_running;
- public bool Suspended
- {
- get { return m_Suspended; }
- set
- {
- // Need to do this inside a lock in order to avoid races with EventProcessor()
- lock (m_Script)
- {
- bool wasSuspended = m_Suspended;
- m_Suspended = value;
- if (wasSuspended && !m_Suspended)
- {
- lock (EventQueue)
- {
- // Need to place ourselves back in a work item if there are events to process
- if (EventQueue.Count > 0 && Running && !ShuttingDown)
- m_CurrentWorkItem = Engine.QueueEventHandler(this);
- }
- }
- }
- }
- }
- private bool m_Suspended;
- public bool ShuttingDown { get; set; }
- public string State { get; set; }
- public bool StayStopped { get; set; }
- public IScriptEngine Engine { get; private set; }
- public UUID AppDomain { get; set; }
- public SceneObjectPart Part { get; private set; }
- public string PrimName { get; private set; }
- public string ScriptName { get; private set; }
- public UUID ItemID { get; private set; }
- public UUID ObjectID { get { return Part.UUID; } }
- public uint LocalID { get { return Part.LocalId; } }
- public UUID RootObjectID { get { return Part.ParentGroup.UUID; } }
- public uint RootLocalID { get { return Part.ParentGroup.LocalId; } }
- public UUID AssetID { get; private set; }
- public Queue EventQueue { get; private set; }
- public long EventsQueued
- {
- get
- {
- lock (EventQueue)
- return EventQueue.Count;
- }
- }
- public long EventsProcessed { get; private set; }
- public int StartParam { get; set; }
- public TaskInventoryItem ScriptTask { get; private set; }
- public DateTime TimeStarted { get; private set; }
- public MetricsCollectorTime ExecutionTime { get; private set; }
- private static readonly int MeasurementWindow = 30 * 1000; // show the *recent* time used by the script, to find currently active scripts
- private bool m_coopTermination;
- private EventWaitHandle m_coopSleepHandle;
- public void ClearQueue()
- {
- m_TimerQueued = false;
- m_StateChangeInProgress = false;
- EventQueue.Clear();
- }
- public ScriptInstance(
- IScriptEngine engine, SceneObjectPart part, TaskInventoryItem item,
- int startParam, bool postOnRez,
- int maxScriptQueue)
- {
- State = "default";
- EventQueue = new Queue(32);
- ExecutionTimer = new Stopwatch();
- Engine = engine;
- Part = part;
- ScriptTask = item;
- // This is currently only here to allow regression tests to get away without specifying any inventory
- // item when they are testing script logic that doesn't require an item.
- if (ScriptTask != null)
- {
- ScriptName = ScriptTask.Name;
- ItemID = ScriptTask.ItemID;
- AssetID = ScriptTask.AssetID;
- }
- PrimName = part.ParentGroup.Name;
- StartParam = startParam;
- m_MaxScriptQueue = maxScriptQueue;
- m_postOnRez = postOnRez;
- m_AttachedAvatar = part.ParentGroup.AttachedAvatar;
- m_RegionID = part.ParentGroup.Scene.RegionInfo.RegionID;
- m_SaveState = StatePersistedHere;
- ExecutionTime = new MetricsCollectorTime(MeasurementWindow, 10);
- // m_log.DebugFormat(
- // "[SCRIPT INSTANCE]: Instantiated script instance {0} (id {1}) in part {2} (id {3}) in object {4} attached avatar {5} in {6}",
- // ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, m_AttachedAvatar, Engine.World.Name);
- }
- /// <summary>
- /// Load the script from an assembly into an AppDomain.
- /// </summary>
- /// <param name='dom'></param>
- /// <param name='assembly'></param>
- /// <param name='dataPath'>
- /// Path for all script associated data (state, etc.). In a multi-region set up
- /// with all scripts loading into the same AppDomain this may not be the same place as the DLL itself.
- /// </param>
- /// <param name='stateSource'></param>
- /// <returns>false if load failed, true if suceeded</returns>
- public bool Load(
- IScript script, EventWaitHandle coopSleepHandle, string assemblyPath,
- string dataPath, StateSource stateSource, bool coopTermination)
- {
- m_Script = script;
- m_coopSleepHandle = coopSleepHandle;
- m_assemblyPath = assemblyPath;
- m_dataPath = dataPath;
- m_stateSource = stateSource;
- m_coopTermination = coopTermination;
- if (m_coopTermination)
- CoopWaitHandle = coopSleepHandle;
- else
- CoopWaitHandle = null;
- ApiManager am = new ApiManager();
- foreach (string api in am.GetApis())
- {
- m_Apis[api] = am.CreateApi(api);
- m_Apis[api].Initialize(Engine, Part, ScriptTask);
- }
- try
- {
- foreach (KeyValuePair<string,IScriptApi> kv in m_Apis)
- {
- m_Script.InitApi(kv.Key, kv.Value);
- }
- }
- catch (Exception e)
- {
- m_log.ErrorFormat(
- "[SCRIPT INSTANCE]: Not starting script {0} (id {1}) in part {2} (id {3}) in object {4} in {5}. Error initializing script instance. Exception {6}{7}",
- ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, Engine.World.Name, e.Message, e.StackTrace);
- return false;
- }
- // For attachments, XEngine saves the state into a .state file when XEngine.SetXMLState() is called.
- string savedState = Path.Combine(m_dataPath, ItemID.ToString() + ".state");
- if (File.Exists(savedState))
- {
- // m_log.DebugFormat(
- // "[SCRIPT INSTANCE]: Found state for script {0} for {1} ({2}) at {3} in {4}",
- // ItemID, savedState, Part.Name, Part.ParentGroup.Name, Part.ParentGroup.Scene.Name);
- string xml = String.Empty;
- try
- {
- FileInfo fi = new FileInfo(savedState);
- int size = (int)fi.Length;
- if (size < 512000)
- {
- using (FileStream fs = File.Open(savedState,
- FileMode.Open, FileAccess.Read, FileShare.None))
- {
- Byte[] data = new Byte[size];
- fs.Read(data, 0, size);
- xml = Encoding.UTF8.GetString(data);
- ScriptSerializer.Deserialize(xml, this);
- AsyncCommandManager.CreateFromData(Engine,
- LocalID, ItemID, ObjectID,
- PluginData);
- // m_log.DebugFormat("[Script] Successfully retrieved state for script {0}.{1}", PrimName, m_ScriptName);
- if (!Running)
- m_startOnInit = false;
- Running = false;
- // we get new rez events on sim restart, too
- // but if there is state, then we fire the change
- // event
- // We loaded state, don't force a re-save
- m_SaveState = false;
- m_startedFromSavedState = true;
- }
- // If this script is in an attachment then we no longer need the state file.
- if (!StatePersistedHere)
- RemoveState();
- }
- // else
- // {
- // m_log.WarnFormat(
- // "[SCRIPT INSTANCE]: Not starting script {0} (id {1}) in part {2} (id {3}) in object {4} in {5}. Unable to load script state file {6}. Memory limit exceeded.",
- // ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, Engine.World.Name, savedState);
- // }
- }
- catch (Exception e)
- {
- m_log.ErrorFormat(
- "[SCRIPT INSTANCE]: Not starting script {0} (id {1}) in part {2} (id {3}) in object {4} in {5}. Unable to load script state file {6}. XML is {7}. Exception {8}{9}",
- ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, Engine.World.Name, savedState, xml, e.Message, e.StackTrace);
- }
- }
- // else
- // {
- // m_log.DebugFormat(
- // "[SCRIPT INSTANCE]: Did not find state for script {0} for {1} ({2}) at {3} in {4}",
- // ItemID, savedState, Part.Name, Part.ParentGroup.Name, Part.ParentGroup.Scene.Name);
- // }
- try
- {
- Part.SetScriptEvents(ItemID, m_Script.GetStateEventFlags(State));
- }
- catch
- {
- m_log.ErrorFormat("[SCRIPT INSTANCE]: failed to SetScriptEvents {0}", ItemID);
- }
- return true;
- }
- public void Init()
- {
- if (ShuttingDown)
- return;
- if (m_startedFromSavedState)
- {
- if (m_startOnInit)
- Start();
- if (m_postOnRez)
- {
- PostEvent(new EventParams("on_rez",
- new Object[] {new LSL_Types.LSLInteger(StartParam)}, new DetectParams[0]));
- }
- if (m_stateSource == StateSource.AttachedRez)
- {
- PostEvent(new EventParams("attach",
- new object[] { new LSL_Types.LSLString(m_AttachedAvatar.ToString()) }, new DetectParams[0]));
- }
- else if (m_stateSource == StateSource.RegionStart)
- {
- //m_log.Debug("[Script] Posted changed(CHANGED_REGION_RESTART) to script");
- PostEvent(new EventParams("changed",
- new Object[] { new LSL_Types.LSLInteger((int)Changed.REGION_RESTART) }, new DetectParams[0]));
- }
- else if (m_stateSource == StateSource.PrimCrossing || m_stateSource == StateSource.Teleporting)
- {
- // CHANGED_REGION
- PostEvent(new EventParams("changed",
- new Object[] { new LSL_Types.LSLInteger((int)Changed.REGION) }, new DetectParams[0]));
- // CHANGED_TELEPORT
- if (m_stateSource == StateSource.Teleporting)
- PostEvent(new EventParams("changed",
- new Object[] { new LSL_Types.LSLInteger((int)Changed.TELEPORT) }, new DetectParams[0]));
- }
- }
- else
- {
- if (m_startOnInit)
- Start();
- PostEvent(new EventParams("state_entry",
- new Object[0], new DetectParams[0]));
- if (m_postOnRez)
- {
- PostEvent(new EventParams("on_rez",
- new Object[] {new LSL_Types.LSLInteger(StartParam)}, new DetectParams[0]));
- }
- if (m_stateSource == StateSource.AttachedRez)
- {
- PostEvent(new EventParams("attach",
- new object[] { new LSL_Types.LSLString(m_AttachedAvatar.ToString()) }, new DetectParams[0]));
- }
- }
- }
- private void ReleaseControlsorPermissions(bool fullpermissions)
- {
- SceneObjectPart part = Engine.World.GetSceneObjectPart(LocalID);
- if (part != null && part.TaskInventory != null)
- {
- int permsMask;
- UUID permsGranter;
- part.TaskInventory.LockItemsForWrite(true);
- if (!part.TaskInventory.TryGetValue(ItemID, out TaskInventoryItem item))
- {
- part.TaskInventory.LockItemsForWrite(false);
- return;
- }
- permsGranter = item.PermsGranter;
- permsMask = item.PermsMask;
- if(fullpermissions)
- {
- item.PermsGranter = UUID.Zero;
- item.PermsMask = 0;
- }
- else
- item.PermsMask = permsMask & ~(ScriptBaseClass.PERMISSION_TAKE_CONTROLS | ScriptBaseClass.PERMISSION_CONTROL_CAMERA);
- part.TaskInventory.LockItemsForWrite(false);
- if ((permsMask & ScriptBaseClass.PERMISSION_TAKE_CONTROLS) != 0)
- {
- ScenePresence presence = Engine.World.GetScenePresence(permsGranter);
- if (presence != null)
- presence.UnRegisterControlEventsToScript(LocalID, ItemID);
- }
- }
- }
- public void DestroyScriptInstance()
- {
- ReleaseControlsorPermissions(false);
- AsyncCommandManager.RemoveScript(Engine, LocalID, ItemID);
- SceneObjectPart part = Engine.World.GetSceneObjectPart(LocalID);
- if (part != null)
- part.RemoveScriptEvents(ItemID);
- }
- public void RemoveState()
- {
- string savedState = Path.Combine(m_dataPath, ItemID.ToString() + ".state");
- // m_log.DebugFormat(
- // "[SCRIPT INSTANCE]: Deleting state {0} for script {1} (id {2}) in part {3} (id {4}) in object {5} in {6}.",
- // savedState, ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, Engine.World.Name);
- try
- {
- File.Delete(savedState);
- }
- catch (Exception e)
- {
- m_log.Warn(
- string.Format(
- "[SCRIPT INSTANCE]: Could not delete script state {0} for script {1} (id {2}) in part {3} (id {4}) in object {5} in {6}. Exception ",
- savedState, ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, Engine.World.Name),
- e);
- }
- }
- public void VarDump(Dictionary<string, object> vars)
- {
- // m_log.Info("Variable dump for script "+ ItemID.ToString());
- // foreach (KeyValuePair<string, object> v in vars)
- // {
- // m_log.Info("Variable: "+v.Key+" = "+v.Value.ToString());
- // }
- }
- public void Start()
- {
- lock (EventQueue)
- {
- if (Running)
- return;
- Running = true;
- TimeStarted = DateTime.Now;
- // Note: we don't reset ExecutionTime. The reason is that runaway scripts are stopped and restarted
- // automatically, and we *do* want to show that they had high CPU in that case. If we had reset
- // ExecutionTime here then runaway scripts, paradoxically, would never show up in the "Top Scripts" dialog.
- if (EventQueue.Count > 0)
- {
- if (m_CurrentWorkItem == null)
- m_CurrentWorkItem = Engine.QueueEventHandler(this);
- // else
- // m_log.Error("[Script] Tried to start a script that was already queued");
- }
- }
- }
- public bool Stop(int timeout, bool clearEventQueue = false)
- {
- if (DebugLevel >= 1)
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Stopping script {0} {1} in {2} {3} with timeout {4} {5} {6}",
- ScriptName, ItemID, PrimName, ObjectID, timeout, m_InSelfDelete, DateTime.Now.Ticks);
- IScriptWorkItem workItem;
- lock (EventQueue)
- {
- if (clearEventQueue)
- ClearQueue();
- if (!Running)
- return true;
- // If we're not running or waiting to run an event then we can safely stop.
- if (m_CurrentWorkItem == null)
- {
- Running = false;
- return true;
- }
- // If we are waiting to run an event then we can try to cancel it.
- if (m_CurrentWorkItem.Cancel())
- {
- m_CurrentWorkItem = null;
- Running = false;
- return true;
- }
- workItem = m_CurrentWorkItem;
- Running = false;
- }
- // Wait for the current event to complete.
- if (!m_InSelfDelete)
- {
- if (!m_coopTermination)
- {
- // If we're not co-operative terminating then try and wait for the event to complete before stopping
- if (workItem.Wait(timeout))
- return true;
- }
- else
- {
- if (DebugLevel >= 1)
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Co-operatively stopping script {0} {1} in {2} {3}",
- ScriptName, ItemID, PrimName, ObjectID);
- // This will terminate the event on next handle check by the script.
- m_coopSleepHandle.Set();
- // For now, we will wait forever since the event should always cleanly terminate once LSL loop
- // checking is implemented. May want to allow a shorter timeout option later.
- if (workItem.Wait(Timeout.Infinite))
- {
- if (DebugLevel >= 1)
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Co-operatively stopped script {0} {1} in {2} {3}",
- ScriptName, ItemID, PrimName, ObjectID);
- return true;
- }
- }
- }
- lock (EventQueue)
- {
- workItem = m_CurrentWorkItem;
- }
- if (workItem == null)
- return true;
- // If the event still hasn't stopped and we the stop isn't the result of script or object removal, then
- // forcibly abort the work item (this aborts the underlying thread).
- // Co-operative termination should never reach this point.
- if (!m_InSelfDelete)
- {
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Aborting unstopped script {0} {1} in prim {2}, localID {3}, timeout was {4} ms",
- ScriptName, ItemID, PrimName, LocalID, timeout);
- workItem.Abort();
- }
- lock (EventQueue)
- {
- m_CurrentWorkItem = null;
- }
- return true;
- }
- [DebuggerNonUserCode] //Prevents the debugger from farting in this function
- public void SetState(string state)
- {
- if (state == State)
- return;
- EventParams lastTimerEv = null;
- lock (EventQueue)
- {
- // Remove all queued events, remembering the last timer event
- while (EventQueue.Count > 0)
- {
- EventParams tempv = (EventParams)EventQueue.Dequeue();
- if (tempv.EventName == "timer") lastTimerEv = tempv;
- }
- // Post events
- PostEvent(new EventParams("state_exit", new Object[0],
- new DetectParams[0]));
- PostEvent(new EventParams("state", new Object[] { state },
- new DetectParams[0]));
- PostEvent(new EventParams("state_entry", new Object[0],
- new DetectParams[0]));
- // Requeue the timer event after the state changing events
- if (lastTimerEv != null) EventQueue.Enqueue(lastTimerEv);
- // This will stop events from being queued and processed
- // until the new state is started
- m_StateChangeInProgress = true;
- }
- throw new EventAbortException();
- }
- /// <summary>
- /// Post an event to this script instance.
- /// </summary>
- /// <remarks>
- /// The request to run the event is sent
- /// </remarks>
- /// <param name="data"></param>
- public void PostEvent(EventParams data)
- {
- // m_log.DebugFormat("[Script] Posted event {2} in state {3} to {0}.{1}",
- // PrimName, ScriptName, data.EventName, State);
- if (!Running)
- return;
- // If min event delay is set then ignore any events untill the time has expired
- // This currently only allows 1 event of any type in the given time period.
- // This may need extending to allow for a time for each individual event type.
- if (m_eventDelayTicks != 0 &&
- data.EventName != "state" && data.EventName != "state_entry" && data.EventName != "state_exit"
- && data.EventName != "run_time_permissions" && data.EventName != "http_request" && data.EventName != "link_message")
- {
- if (DateTime.Now.Ticks < m_nextEventTimeTicks)
- return;
- m_nextEventTimeTicks = DateTime.Now.Ticks + m_eventDelayTicks;
- }
- lock (EventQueue)
- {
- // The only events that persist across state changes are timers
- if (m_StateChangeInProgress && data.EventName != "timer")
- return;
- if (EventQueue.Count >= m_MaxScriptQueue)
- return;
- if (data.EventName == "timer")
- {
- if (m_TimerQueued)
- return;
- m_TimerQueued = true;
- }
- if (data.EventName == "control")
- {
- int held = ((LSL_Types.LSLInteger)data.Params[1]).value;
- // int changed = ((LSL_Types.LSLInteger)data.Params[2]).value;
- // If the last message was a 0 (nothing held)
- // and this one is also nothing held, drop it
- //
- if (m_LastControlLevel == held && held == 0)
- return;
- // If there is one or more queued, then queue
- // only changed ones, else queue unconditionally
- //
- if (m_ControlEventsInQueue > 0)
- {
- if (m_LastControlLevel == held)
- return;
- }
- m_LastControlLevel = held;
- m_ControlEventsInQueue++;
- }
- if (data.EventName == "collision")
- {
- if (m_CollisionInQueue)
- return;
- if (data.DetectParams == null)
- return;
- m_CollisionInQueue = true;
- }
- EventQueue.Enqueue(data);
- if (m_CurrentWorkItem == null)
- {
- m_CurrentWorkItem = Engine.QueueEventHandler(this);
- }
- }
- }
- /// <summary>
- /// Process the next event queued for this script
- /// </summary>
- /// <returns></returns>
- public object EventProcessor()
- {
- // We check here as the thread stopping this instance from running may itself hold the m_Script lock.
- if (!Running)
- return 0;
- lock (m_Script)
- {
- // m_log.DebugFormat("[XEngine]: EventProcessor() invoked for {0}.{1}", PrimName, ScriptName);
- if (Suspended)
- return 0;
- ExecutionTimer.Restart();
- try
- {
- return EventProcessorInt();
- }
- finally
- {
- ExecutionTimer.Stop();
- ExecutionTime.AddSample(ExecutionTimer);
- Part.ParentGroup.Scene.AddScriptExecutionTime(ExecutionTimer.ElapsedTicks);
- }
- }
- }
- private object EventProcessorInt()
- {
- EventParams data = null;
- lock (EventQueue)
- {
- data = (EventParams)EventQueue.Dequeue();
- if (data == null)
- {
- // check if a null event was enqueued or if its really empty
- if (EventQueue.Count > 0 && Running && !ShuttingDown && !m_InSelfDelete)
- {
- m_CurrentWorkItem = Engine.QueueEventHandler(this);
- }
- else
- {
- m_CurrentWorkItem = null;
- }
- return 0;
- }
- if (data.EventName == "timer")
- m_TimerQueued = false;
- if (data.EventName == "control")
- {
- if (m_ControlEventsInQueue > 0)
- m_ControlEventsInQueue--;
- }
- if (data.EventName == "collision")
- m_CollisionInQueue = false;
- }
- if (DebugLevel >= 2)
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Processing event {0} for {1}/{2}({3})/{4}({5}) @ {6}/{7}",
- data.EventName,
- ScriptName,
- Part.Name,
- Part.LocalId,
- Part.ParentGroup.Name,
- Part.ParentGroup.UUID,
- Part.AbsolutePosition,
- Part.ParentGroup.Scene.Name);
- m_DetectParams = data.DetectParams;
- if (data.EventName == "state") // Hardcoded state change
- {
- State = data.Params[0].ToString();
- if (DebugLevel >= 1)
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Changing state to {0} for {1}/{2}({3})/{4}({5}) @ {6}/{7}",
- State,
- ScriptName,
- Part.Name,
- Part.LocalId,
- Part.ParentGroup.Name,
- Part.ParentGroup.UUID,
- Part.AbsolutePosition,
- Part.ParentGroup.Scene.Name);
- AsyncCommandManager.StateChange(Engine,
- LocalID, ItemID);
- // we are effectively in the new state now, so we can resume queueing
- // and processing other non-timer events
- m_StateChangeInProgress = false;
- Part.RemoveScriptTargets(ItemID);
- Part.SetScriptEvents(ItemID, m_Script.GetStateEventFlags(State));
- }
- else
- {
- Exception e = null;
- if (Engine.World.PipeEventsForScript(LocalID) ||
- data.EventName == "control") // Don't freeze avies!
- {
- // m_log.DebugFormat("[Script] Delivered event {2} in state {3} to {0}.{1}",
- // PrimName, ScriptName, data.EventName, State);
- try
- {
- m_CurrentEvent = data.EventName;
- m_EventStart = DateTime.UtcNow;
- m_InEvent = true;
- try
- {
- m_Script.ExecuteEvent(State, data.EventName, data.Params);
- }
- finally
- {
- m_InEvent = false;
- m_CurrentEvent = String.Empty;
- lock (EventQueue)
- m_CurrentWorkItem = null; // no longer in a event that can be canceled
- }
- if (m_SaveState)
- {
- // This will be the very first event we deliver
- // (state_entry) in default state
- //
- SaveState();
- m_SaveState = false;
- }
- }
- catch (Exception exx)
- {
- e = exx;
- }
- if(e != null)
- {
- // m_log.DebugFormat(
- // "[SCRIPT] Exception in script {0} {1}: {2}{3}",
- // ScriptName, ItemID, e.Message, e.StackTrace);
- if ((!(e is TargetInvocationException)
- || (!(e.InnerException is SelfDeleteException)
- && !(e.InnerException is ScriptDeleteException)
- && !(e.InnerException is ScriptCoopStopException)))
- && !(e is ThreadAbortException))
- {
- try
- {
- if(e.InnerException != null && e.InnerException is ScriptException)
- {
- bool toowner = false;
- string text = e.InnerException.Message;
- if(text.StartsWith("(OWNER)"))
- {
- text = text.Substring(7);
- toowner = true;
- }
- text += "(script: " + ScriptName +
- " event: " + data.EventName +
- " primID:" + Part.UUID.ToString() +
- " at " + Part.AbsolutePosition + ")";
- if (text.Length > 1000)
- text = text.Substring(0, 1000);
- if (toowner)
- {
- ScenePresence sp = Engine.World.GetScenePresence(Part.OwnerID);
- if (sp != null && !sp.IsNPC)
- Engine.World.SimChatToAgent(Part.OwnerID, Utils.StringToBytes(text), 0x7FFFFFFF, Part.AbsolutePosition,
- Part.Name, Part.UUID, false);
- }
- else
- Engine.World.SimChat(Utils.StringToBytes(text),
- ChatTypeEnum.DebugChannel, 2147483647,
- Part.AbsolutePosition,
- Part.Name, Part.UUID, false);
- m_log.Debug(string.Format(
- "[SCRIPT ERROR]: {0} (at event {1}, part {2} {3} at {4} in {5}",
- e.InnerException.Message,
- data.EventName,
- PrimName,
- Part.UUID,
- Part.AbsolutePosition,
- Part.ParentGroup.Scene.Name));
- }
- else
- {
- // DISPLAY ERROR INWORLD
- string text = FormatException(e);
- if (text.Length > 1000)
- text = text.Substring(0, 1000);
- Engine.World.SimChat(Utils.StringToBytes(text),
- ChatTypeEnum.DebugChannel, 2147483647,
- Part.AbsolutePosition,
- Part.Name, Part.UUID, false);
- m_log.Debug(string.Format(
- "[SCRIPT ERROR]: Runtime error in script {0} (event {1}), part {2} {3} at {4} in {5} ",
- ScriptName,
- data.EventName,
- PrimName,
- Part.UUID,
- Part.AbsolutePosition,
- Part.ParentGroup.Scene.Name),
- e);
- }
- }
- catch (Exception)
- {
- }
- }
- else if ((e is TargetInvocationException) && (e.InnerException is SelfDeleteException))
- {
- m_InSelfDelete = true;
- Engine.World.DeleteSceneObject(Part.ParentGroup, false);
- }
- else if ((e is TargetInvocationException) && (e.InnerException is ScriptDeleteException))
- {
- m_InSelfDelete = true;
- Part.Inventory.RemoveInventoryItem(ItemID);
- }
- else if ((e is TargetInvocationException) && (e.InnerException is ScriptCoopStopException))
- {
- if (DebugLevel >= 1)
- m_log.DebugFormat(
- "[SCRIPT INSTANCE]: Script {0}.{1} in event {2}, state {3} stopped co-operatively.",
- PrimName, ScriptName, data.EventName, State);
- }
- }
- }
- }
- // If there are more events and we are currently running and not shutting down, then ask the
- // script engine to run the next event.
- lock (EventQueue)
- {
- // Increase processed events counter and prevent wrap;
- if (++EventsProcessed == 1000000)
- EventsProcessed = 100000;
- if ((EventsProcessed % 100000) == 0 && DebugLevel > 0)
- {
- m_log.DebugFormat("[SCRIPT INSTANCE]: Script \"{0}\" (Object \"{1}\" {2} @ {3}.{4}, Item ID {5}, Asset {6}) in event {7}: processed {8:n0} script events",
- ScriptTask.Name,
- Part.ParentGroup.Name, Part.ParentGroup.UUID, Part.ParentGroup.AbsolutePosition, Part.ParentGroup.Scene.Name,
- ScriptTask.ItemID, ScriptTask.AssetID, data.EventName, EventsProcessed);
- }
- if (EventQueue.Count > 0 && Running && !ShuttingDown && !m_InSelfDelete)
- {
- m_CurrentWorkItem = Engine.QueueEventHandler(this);
- }
- else
- {
- m_CurrentWorkItem = null;
- }
- }
- m_DetectParams = null;
- return 0;
- }
- public int EventTime()
- {
- if (!m_InEvent)
- return 0;
- return (DateTime.UtcNow - m_EventStart).Seconds;
- }
- public void ResetScript(int timeout)
- {
- if (m_Script == null)
- return;
- bool running = Running;
- RemoveState();
- ReleaseControlsorPermissions(true);
- Stop(timeout);
- AsyncCommandManager.RemoveScript(Engine, LocalID, ItemID);
- m_TimerQueued = false;
- m_StateChangeInProgress = false;
- EventQueue.Clear();
- m_Script.ResetVars();
- StartParam = 0;
- State = "default";
- SceneObjectPart part = Engine.World.GetSceneObjectPart(LocalID);
- if (part == null)
- return;
- part.CollisionSound = UUID.Zero;
- part.RemoveScriptTargets(ItemID);
- part.SetScriptEvents(ItemID, m_Script.GetStateEventFlags(State));
- if (running)
- Start();
- m_SaveState = StatePersistedHere;
- PostEvent(new EventParams("state_entry",
- new Object[0], new DetectParams[0]));
- }
- [DebuggerNonUserCode] //Stops the VS debugger from farting in this function
- public void ApiResetScript()
- {
- // bool running = Running;
- RemoveState();
- ReleaseControlsorPermissions(true);
- AsyncCommandManager.RemoveScript(Engine, LocalID, ItemID);
- m_TimerQueued = false;
- m_StateChangeInProgress = false;
- EventQueue.Clear();
- m_Script.ResetVars();
- string oldState = State;
- StartParam = 0;
- State = "default";
- SceneObjectPart part = Engine.World.GetSceneObjectPart(LocalID);
- if(part != null)
- {
- part.CollisionSound = UUID.Zero;
- part.RemoveScriptTargets(ItemID);
- part.SetScriptEvents(ItemID, m_Script.GetStateEventFlags(State));
- }
- if (m_CurrentEvent != "state_entry" || oldState != "default")
- {
- m_SaveState = StatePersistedHere;
- PostEvent(new EventParams("state_entry",
- new Object[0], new DetectParams[0]));
- throw new EventAbortException();
- }
- }
- public Dictionary<string, object> GetVars()
- {
- if (m_Script != null)
- return m_Script.GetVars();
- else
- return new Dictionary<string, object>();
- }
- public void SetVars(Dictionary<string, object> vars)
- {
- // foreach (KeyValuePair<string, object> kvp in vars)
- // m_log.DebugFormat("[SCRIPT INSTANCE]: Setting var {0}={1}", kvp.Key, kvp.Value);
- m_Script.SetVars(vars);
- }
- public DetectParams GetDetectParams(int idx)
- {
- if (m_DetectParams == null)
- return null;
- if (idx < 0 || idx >= m_DetectParams.Length)
- return null;
- return m_DetectParams[idx];
- }
- public UUID GetDetectID(int idx)
- {
- if (m_DetectParams == null)
- return UUID.Zero;
- if (idx < 0 || idx >= m_DetectParams.Length)
- return UUID.Zero;
- return m_DetectParams[idx].Key;
- }
- public void SaveState()
- {
- if (!Running && !StayStopped)
- return;
- // We cannot call this inside the EventQueue lock since it will currently take AsyncCommandManager.staticLock.
- // This may already be held by AsyncCommandManager.DoOneCmdHandlerPass() which in turn can take EventQueue
- // lock via ScriptInstance.PostEvent().
- PluginData = AsyncCommandManager.GetSerializationData(Engine, ItemID);
- // We need to lock here to avoid any race with a thread that is removing this script.
- lock (EventQueue)
- {
- // Check again to avoid a race with a thread in Stop()
- if (!Running && !StayStopped)
- return;
- // If we're currently in an event, just tell it to save upon return
- //
- if (m_InEvent)
- {
- m_SaveState = true;
- return;
- }
- // m_log.DebugFormat(
- // "[SCRIPT INSTANCE]: Saving state for script {0} (id {1}) in part {2} (id {3}) in object {4} in {5}",
- // ScriptTask.Name, ScriptTask.ItemID, Part.Name, Part.UUID, Part.ParentGroup.Name, Engine.World.Name);
- string xml = ScriptSerializer.Serialize(this);
- // Compare hash of the state we just just created with the state last written to disk
- // If the state is different, update the disk file.
- UUID hash = UUID.Parse(Utils.MD5String(xml));
- if (hash != m_CurrentStateHash)
- {
- try
- {
- using (FileStream fs = File.Create(Path.Combine(m_dataPath, ItemID.ToString() + ".state")))
- {
- Byte[] buf = Util.UTF8NoBomEncoding.GetBytes(xml);
- fs.Write(buf, 0, buf.Length);
- }
- }
- catch(Exception)
- {
- // m_log.Error("Unable to save xml\n"+e.ToString());
- }
- //if (!File.Exists(Path.Combine(Path.GetDirectoryName(assembly), ItemID.ToString() + ".state")))
- //{
- // throw new Exception("Completed persistence save, but no file was created");
- //}
- m_CurrentStateHash = hash;
- }
- StayStopped = false;
- }
- }
- public IScriptApi GetApi(string name)
- {
- if (m_Apis.ContainsKey(name))
- {
- // m_log.DebugFormat("[SCRIPT INSTANCE]: Found api {0} in {1}@{2}", name, ScriptName, PrimName);
- return m_Apis[name];
- }
- // m_log.DebugFormat("[SCRIPT INSTANCE]: Did not find api {0} in {1}@{2}", name, ScriptName, PrimName);
- return null;
- }
- public override string ToString()
- {
- return String.Format("{0} {1} on {2}", ScriptName, ItemID, PrimName);
- }
- string FormatException(Exception e)
- {
- if (e.InnerException == null) // Not a normal runtime error
- return e.ToString();
- string message = "Runtime error:\n" + e.InnerException.StackTrace;
- string[] lines = message.Split(new char[] {'\n'});
- foreach (string line in lines)
- {
- if (line.Contains("SecondLife.Script"))
- {
- int idx = line.IndexOf(':');
- if (idx != -1)
- {
- string val = line.Substring(idx+1);
- int lineNum = 0;
- if (int.TryParse(val, out lineNum))
- {
- KeyValuePair<int, int> pos =
- Compiler.FindErrorPosition(
- lineNum, 0, LineMap);
- int scriptLine = pos.Key;
- int col = pos.Value;
- if (scriptLine == 0)
- scriptLine++;
- if (col == 0)
- col++;
- message = string.Format("Runtime error:\n" +
- "({0}): {1}", scriptLine - 1,
- e.InnerException.Message);
- return message;
- }
- }
- }
- }
- // m_log.ErrorFormat("Scripting exception:");
- // m_log.ErrorFormat(e.ToString());
- return e.ToString();
- }
- public string GetAssemblyName()
- {
- return m_assemblyPath;
- }
- public string GetXMLState()
- {
- bool run = Running;
- Stop(100);
- Running = run;
- // We should not be doing this, but since we are about to
- // dispose this, it really doesn't make a difference
- // This is meant to work around a Windows only race
- //
- m_InEvent = false;
- // Force an update of the in-memory plugin data
- //
- PluginData = AsyncCommandManager.GetSerializationData(Engine, ItemID);
- return ScriptSerializer.Serialize(this);
- }
- public UUID RegionID
- {
- get { return m_RegionID; }
- }
- public void Suspend()
- {
- Suspended = true;
- }
- public void Resume()
- {
- Suspended = false;
- }
- }
- /// <summary>
- /// Xengine event wait handle.
- /// </summary>
- /// <remarks>
- /// This class exists becase XEngineScriptBase gets a reference to this wait handle. We need to make sure that
- /// when scripts are running in different AppDomains the lease does not expire.
- /// FIXME: Like LSL_Api, etc., this effectively leaks memory since the GC will never collect it. To avoid this,
- /// proper remoting sponsorship needs to be implemented across the board.
- /// </remarks>
- public class XEngineEventWaitHandle : EventWaitHandle
- {
- public XEngineEventWaitHandle(bool initialState, EventResetMode mode) : base(initialState, mode) {}
- public override Object InitializeLifetimeService()
- {
- return null;
- }
- }
- }
|