XEngine.cs 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532
  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.Globalization;
  31. using System.IO;
  32. using System.Linq;
  33. using System.Reflection;
  34. using System.Security;
  35. using System.Security.Policy;
  36. using System.Text;
  37. using System.Threading;
  38. using System.Xml;
  39. using OpenMetaverse;
  40. using OpenMetaverse.StructuredData;
  41. using log4net;
  42. using Nini.Config;
  43. using Amib.Threading;
  44. using Mono.Addins;
  45. using OpenSim.Framework;
  46. using OpenSim.Framework.Console;
  47. using OpenSim.Region.Framework.Scenes;
  48. using OpenSim.Region.Framework.Interfaces;
  49. using OpenSim.Region.ScriptEngine.Interfaces;
  50. using OpenSim.Region.ScriptEngine.Shared;
  51. using OpenSim.Region.ScriptEngine.Shared.CodeTools;
  52. using OpenSim.Region.ScriptEngine.Shared.Instance;
  53. using OpenSim.Region.ScriptEngine.Shared.Api;
  54. using OpenSim.Region.ScriptEngine.Shared.Api.Plugins;
  55. using OpenSim.Region.ScriptEngine.Shared.ScriptBase;
  56. using OpenSim.Region.ScriptEngine.XEngine.ScriptBase;
  57. using Timer = OpenSim.Region.ScriptEngine.Shared.Api.Plugins.Timer;
  58. using ScriptCompileQueue = OpenSim.Framework.LocklessQueue<object[]>;
  59. namespace OpenSim.Region.ScriptEngine.XEngine
  60. {
  61. [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "XEngine")]
  62. public class XEngine : INonSharedRegionModule, IScriptModule, IScriptEngine
  63. {
  64. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  65. /// <summary>
  66. /// Control the printing of certain debug messages.
  67. /// </summary>
  68. /// <remarks>
  69. /// If DebugLevel >= 1, then we log every time that a script is started.
  70. /// </remarks>
  71. public int DebugLevel { get; set; }
  72. /// <summary>
  73. /// A parameter to allow us to notify the log if at least one script has a compilation that is not compatible
  74. /// with ScriptStopStrategy.
  75. /// </summary>
  76. public bool HaveNotifiedLogOfScriptStopMismatch { get; private set; }
  77. private SmartThreadPool m_ThreadPool;
  78. private int m_MaxScriptQueue;
  79. private Scene m_Scene;
  80. private IConfig m_ScriptConfig = null;
  81. private IConfigSource m_ConfigSource = null;
  82. private ICompiler m_Compiler;
  83. private int m_MinThreads;
  84. private int m_MaxThreads;
  85. /// <summary>
  86. /// Amount of time to delay before starting.
  87. /// </summary>
  88. private int m_StartDelay;
  89. /// <summary>
  90. /// Are we stopping scripts co-operatively by inserting checks in them at C# compile time (true) or aborting
  91. /// their threads (false)?
  92. /// </summary>
  93. private bool m_coopTermination;
  94. private int m_IdleTimeout;
  95. private int m_StackSize;
  96. private int m_SleepTime;
  97. private int m_SaveTime;
  98. private ThreadPriority m_Prio;
  99. private bool m_Enabled = false;
  100. private bool m_InitialStartup = true;
  101. private int m_ScriptFailCount; // Number of script fails since compile queue was last empty
  102. private string m_ScriptErrorMessage;
  103. private bool m_AppDomainLoading;
  104. private bool m_CompactMemOnLoad;
  105. private Dictionary<UUID,ArrayList> m_ScriptErrors =
  106. new Dictionary<UUID,ArrayList>();
  107. // disable warning: need to keep a reference to XEngine.EventManager
  108. // alive to avoid it being garbage collected
  109. #pragma warning disable 414
  110. private EventManager m_EventManager;
  111. #pragma warning restore 414
  112. private IXmlRpcRouter m_XmlRpcRouter;
  113. private int m_EventLimit;
  114. private bool m_KillTimedOutScripts;
  115. /// <summary>
  116. /// Number of milliseconds we will wait for a script event to complete on script stop before we forcibly abort
  117. /// its thread.
  118. /// </summary>
  119. /// <remarks>
  120. /// It appears that if a script thread is aborted whilst it is holding ReaderWriterLockSlim (possibly the write
  121. /// lock) then the lock is not properly released. This causes mono 2.6, 2.10 and possibly
  122. /// later to crash, sometimes with symptoms such as a leap to 100% script usage and a vm thead dump showing
  123. /// all threads waiting on release of ReaderWriterLockSlim write thread which none of the threads listed
  124. /// actually hold.
  125. ///
  126. /// Pausing for event completion reduces the risk of this happening. However, it may be that aborting threads
  127. /// is not a mono issue per se but rather a risky activity in itself in an AppDomain that is not immediately
  128. /// shutting down.
  129. /// </remarks>
  130. private int m_WaitForEventCompletionOnScriptStop = 1000;
  131. private string m_ScriptEnginesPath = null;
  132. private ExpiringCache<UUID, bool> m_runFlags = new ExpiringCache<UUID, bool>();
  133. /// <summary>
  134. /// Is the entire simulator in the process of shutting down?
  135. /// </summary>
  136. private bool m_SimulatorShuttingDown;
  137. private static List<XEngine> m_ScriptEngines =
  138. new List<XEngine>();
  139. // Maps the local id to the script inventory items in it
  140. private Dictionary<uint, List<UUID> > m_PrimObjects =
  141. new Dictionary<uint, List<UUID> >();
  142. // Maps the UUID above to the script instance
  143. private Dictionary<UUID, IScriptInstance> m_Scripts =
  144. new Dictionary<UUID, IScriptInstance>();
  145. // Maps the asset ID to the assembly
  146. private Dictionary<UUID, string> m_Assemblies =
  147. new Dictionary<UUID, string>();
  148. private Dictionary<string, int> m_AddingAssemblies =
  149. new Dictionary<string, int>();
  150. // This will list AppDomains by script asset
  151. private Dictionary<UUID, AppDomain> m_AppDomains =
  152. new Dictionary<UUID, AppDomain>();
  153. // List the scripts running in each appdomain
  154. private Dictionary<UUID, List<UUID> > m_DomainScripts =
  155. new Dictionary<UUID, List<UUID> >();
  156. private ScriptCompileQueue m_CompileQueue = new ScriptCompileQueue();
  157. IWorkItemResult m_CurrentCompile = null;
  158. private Dictionary<UUID, ScriptCompileInfo> m_CompileDict = new Dictionary<UUID, ScriptCompileInfo>();
  159. private ScriptEngineConsoleCommands m_consoleCommands;
  160. public string ScriptEngineName
  161. {
  162. get { return "XEngine"; }
  163. }
  164. public string ScriptClassName { get; private set; }
  165. public string ScriptBaseClassName { get; private set; }
  166. public ParameterInfo[] ScriptBaseClassParameters { get; private set; }
  167. public string[] ScriptReferencedAssemblies { get; private set; }
  168. public Scene World
  169. {
  170. get { return m_Scene; }
  171. }
  172. public static List<XEngine> ScriptEngines
  173. {
  174. get { return m_ScriptEngines; }
  175. }
  176. public IScriptModule ScriptModule
  177. {
  178. get { return this; }
  179. }
  180. // private struct RezScriptParms
  181. // {
  182. // uint LocalID;
  183. // UUID ItemID;
  184. // string Script;
  185. // }
  186. public IConfig Config
  187. {
  188. get { return m_ScriptConfig; }
  189. }
  190. public string ScriptEnginePath
  191. {
  192. get { return m_ScriptEnginesPath; }
  193. }
  194. public IConfigSource ConfigSource
  195. {
  196. get { return m_ConfigSource; }
  197. }
  198. private class ScriptCompileInfo
  199. {
  200. public List<EventParams> eventList = new List<EventParams>();
  201. }
  202. /// <summary>
  203. /// Event fired after the script engine has finished removing a script.
  204. /// </summary>
  205. public event ScriptRemoved OnScriptRemoved;
  206. /// <summary>
  207. /// Event fired after the script engine has finished removing a script from an object.
  208. /// </summary>
  209. public event ObjectRemoved OnObjectRemoved;
  210. public void Initialise(IConfigSource configSource)
  211. {
  212. if (configSource.Configs["XEngine"] == null)
  213. return;
  214. m_ScriptConfig = configSource.Configs["XEngine"];
  215. m_ConfigSource = configSource;
  216. string rawScriptStopStrategy = m_ScriptConfig.GetString("ScriptStopStrategy", "co-op");
  217. m_log.InfoFormat("[XEngine]: Script stop strategy is {0}", rawScriptStopStrategy);
  218. if (rawScriptStopStrategy == "co-op")
  219. {
  220. m_coopTermination = true;
  221. ScriptClassName = "XEngineScript";
  222. ScriptBaseClassName = typeof(XEngineScriptBase).FullName;
  223. ScriptBaseClassParameters = typeof(XEngineScriptBase).GetConstructor(new Type[] { typeof(WaitHandle) }).GetParameters();
  224. ScriptReferencedAssemblies = new string[] { Path.GetFileName(typeof(XEngineScriptBase).Assembly.Location) };
  225. }
  226. else
  227. {
  228. ScriptClassName = "Script";
  229. ScriptBaseClassName = typeof(ScriptBaseClass).FullName;
  230. }
  231. // Console.WriteLine("ASSEMBLY NAME: {0}", ScriptReferencedAssemblies[0]);
  232. }
  233. public void AddRegion(Scene scene)
  234. {
  235. if (m_ScriptConfig == null)
  236. return;
  237. m_ScriptFailCount = 0;
  238. m_ScriptErrorMessage = String.Empty;
  239. m_Enabled = m_ScriptConfig.GetBoolean("Enabled", true);
  240. if (!m_Enabled)
  241. return;
  242. AppDomain.CurrentDomain.AssemblyResolve +=
  243. OnAssemblyResolve;
  244. m_Scene = scene;
  245. m_log.InfoFormat("[XEngine]: Initializing scripts in region {0}", m_Scene.RegionInfo.RegionName);
  246. m_MinThreads = m_ScriptConfig.GetInt("MinThreads", 2);
  247. m_MaxThreads = m_ScriptConfig.GetInt("MaxThreads", 100);
  248. m_IdleTimeout = m_ScriptConfig.GetInt("IdleTimeout", 60);
  249. string priority = m_ScriptConfig.GetString("Priority", "BelowNormal");
  250. m_StartDelay = m_ScriptConfig.GetInt("StartDelay", 15000);
  251. m_MaxScriptQueue = m_ScriptConfig.GetInt("MaxScriptEventQueue",300);
  252. m_StackSize = m_ScriptConfig.GetInt("ThreadStackSize", 262144);
  253. m_SleepTime = m_ScriptConfig.GetInt("MaintenanceInterval", 10) * 1000;
  254. m_AppDomainLoading = m_ScriptConfig.GetBoolean("AppDomainLoading", false);
  255. m_CompactMemOnLoad = m_ScriptConfig.GetBoolean("CompactMemOnLoad", false);
  256. m_EventLimit = m_ScriptConfig.GetInt("EventLimit", 30);
  257. m_KillTimedOutScripts = m_ScriptConfig.GetBoolean("KillTimedOutScripts", false);
  258. m_SaveTime = m_ScriptConfig.GetInt("SaveInterval", 120) * 1000;
  259. m_WaitForEventCompletionOnScriptStop
  260. = m_ScriptConfig.GetInt("WaitForEventCompletionOnScriptStop", m_WaitForEventCompletionOnScriptStop);
  261. m_ScriptEnginesPath = m_ScriptConfig.GetString("ScriptEnginesPath", "ScriptEngines");
  262. m_Prio = ThreadPriority.BelowNormal;
  263. switch (priority)
  264. {
  265. case "Lowest":
  266. m_Prio = ThreadPriority.Lowest;
  267. break;
  268. case "BelowNormal":
  269. m_Prio = ThreadPriority.BelowNormal;
  270. break;
  271. case "Normal":
  272. m_Prio = ThreadPriority.Normal;
  273. break;
  274. case "AboveNormal":
  275. m_Prio = ThreadPriority.AboveNormal;
  276. break;
  277. case "Highest":
  278. m_Prio = ThreadPriority.Highest;
  279. break;
  280. default:
  281. m_log.ErrorFormat("[XEngine] Invalid thread priority: '{0}'. Assuming BelowNormal", priority);
  282. break;
  283. }
  284. lock (m_ScriptEngines)
  285. {
  286. m_ScriptEngines.Add(this);
  287. }
  288. // Needs to be here so we can queue the scripts that need starting
  289. //
  290. m_Scene.EventManager.OnRezScript += OnRezScript;
  291. // Complete basic setup of the thread pool
  292. //
  293. SetupEngine(m_MinThreads, m_MaxThreads, m_IdleTimeout, m_Prio,
  294. m_MaxScriptQueue, m_StackSize);
  295. m_Scene.StackModuleInterface<IScriptModule>(this);
  296. m_XmlRpcRouter = m_Scene.RequestModuleInterface<IXmlRpcRouter>();
  297. if (m_XmlRpcRouter != null)
  298. {
  299. OnScriptRemoved += m_XmlRpcRouter.ScriptRemoved;
  300. OnObjectRemoved += m_XmlRpcRouter.ObjectRemoved;
  301. }
  302. m_consoleCommands = new ScriptEngineConsoleCommands(this);
  303. m_consoleCommands.RegisterCommands();
  304. MainConsole.Instance.Commands.AddCommand(
  305. "Scripts", false, "xengine status", "xengine status", "Show status information",
  306. "Show status information on the script engine.",
  307. HandleShowStatus);
  308. MainConsole.Instance.Commands.AddCommand(
  309. "Scripts", false, "scripts show", "scripts show [<script-item-uuid>+]", "Show script information",
  310. "Show information on all scripts known to the script engine.\n"
  311. + "If one or more <script-item-uuid>s are given then only information on that script will be shown.",
  312. HandleShowScripts);
  313. MainConsole.Instance.Commands.AddCommand(
  314. "Scripts", false, "show scripts", "show scripts [<script-item-uuid>+]", "Show script information",
  315. "Synonym for scripts show command", HandleShowScripts);
  316. MainConsole.Instance.Commands.AddCommand(
  317. "Scripts", false, "scripts suspend", "scripts suspend [<script-item-uuid>+]", "Suspends all running scripts",
  318. "Suspends all currently running scripts. This only suspends event delivery, it will not suspend a"
  319. + " script that is currently processing an event.\n"
  320. + "Suspended scripts will continue to accumulate events but won't process them.\n"
  321. + "If one or more <script-item-uuid>s are given then only that script will be suspended. Otherwise, all suitable scripts are suspended.",
  322. (module, cmdparams) => HandleScriptsAction(cmdparams, HandleSuspendScript));
  323. MainConsole.Instance.Commands.AddCommand(
  324. "Scripts", false, "scripts resume", "scripts resume [<script-item-uuid>+]", "Resumes all suspended scripts",
  325. "Resumes all currently suspended scripts.\n"
  326. + "Resumed scripts will process all events accumulated whilst suspended.\n"
  327. + "If one or more <script-item-uuid>s are given then only that script will be resumed. Otherwise, all suitable scripts are resumed.",
  328. (module, cmdparams) => HandleScriptsAction(cmdparams, HandleResumeScript));
  329. MainConsole.Instance.Commands.AddCommand(
  330. "Scripts", false, "scripts stop", "scripts stop [<script-item-uuid>+]", "Stops all running scripts",
  331. "Stops all running scripts.\n"
  332. + "If one or more <script-item-uuid>s are given then only that script will be stopped. Otherwise, all suitable scripts are stopped.",
  333. (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStopScript));
  334. MainConsole.Instance.Commands.AddCommand(
  335. "Scripts", false, "scripts start", "scripts start [<script-item-uuid>+]", "Starts all stopped scripts",
  336. "Starts all stopped scripts.\n"
  337. + "If one or more <script-item-uuid>s are given then only that script will be started. Otherwise, all suitable scripts are started.",
  338. (module, cmdparams) => HandleScriptsAction(cmdparams, HandleStartScript));
  339. MainConsole.Instance.Commands.AddCommand(
  340. "Debug", false, "debug scripts log", "debug scripts log <item-id> <log-level>", "Extra debug logging for a particular script.",
  341. "Activates or deactivates extra debug logging for the given script.\n"
  342. + "Level == 0, deactivate extra debug logging.\n"
  343. + "Level >= 1, log state changes.\n"
  344. + "Level >= 2, log event invocations.\n",
  345. HandleDebugScriptLogCommand);
  346. MainConsole.Instance.Commands.AddCommand(
  347. "Debug", false, "debug xengine log", "debug xengine log [<level>]",
  348. "Turn on detailed xengine debugging.",
  349. "If level <= 0, then no extra logging is done.\n"
  350. + "If level >= 1, then we log every time that a script is started.",
  351. HandleDebugLevelCommand);
  352. }
  353. private void HandleDebugScriptLogCommand(string module, string[] args)
  354. {
  355. if (!(MainConsole.Instance.ConsoleScene == null || MainConsole.Instance.ConsoleScene == m_Scene))
  356. return;
  357. if (args.Length != 5)
  358. {
  359. MainConsole.Instance.Output("Usage: debug script log <item-id> <log-level>");
  360. return;
  361. }
  362. UUID itemId;
  363. if (!ConsoleUtil.TryParseConsoleUuid(MainConsole.Instance, args[3], out itemId))
  364. return;
  365. int newLevel;
  366. if (!ConsoleUtil.TryParseConsoleInt(MainConsole.Instance, args[4], out newLevel))
  367. return;
  368. IScriptInstance si;
  369. lock (m_Scripts)
  370. {
  371. // XXX: We can't give the user feedback on a bad item id because this may apply to a different script
  372. // engine
  373. if (!m_Scripts.TryGetValue(itemId, out si))
  374. return;
  375. }
  376. si.DebugLevel = newLevel;
  377. MainConsole.Instance.OutputFormat("Set debug level of {0} {1} to {2}", si.ScriptName, si.ItemID, newLevel);
  378. }
  379. /// <summary>
  380. /// Change debug level
  381. /// </summary>
  382. /// <param name="module"></param>
  383. /// <param name="args"></param>
  384. private void HandleDebugLevelCommand(string module, string[] args)
  385. {
  386. if (args.Length >= 4)
  387. {
  388. int newDebug;
  389. if (ConsoleUtil.TryParseConsoleNaturalInt(MainConsole.Instance, args[3], out newDebug))
  390. {
  391. DebugLevel = newDebug;
  392. MainConsole.Instance.OutputFormat("Debug level set to {0} in XEngine for region {1}", newDebug, m_Scene.Name);
  393. }
  394. }
  395. else if (args.Length == 3)
  396. {
  397. MainConsole.Instance.OutputFormat("Current debug level is {0}", DebugLevel);
  398. }
  399. else
  400. {
  401. MainConsole.Instance.Output("Usage: debug xengine log <level>");
  402. }
  403. }
  404. /// <summary>
  405. /// Parse the raw item id into a script instance from the command params if it's present.
  406. /// </summary>
  407. /// <param name="cmdparams"></param>
  408. /// <param name="instance"></param>
  409. /// <param name="comparer">Basis on which to sort output. Can be null if no sort needs to take place</param>
  410. private void HandleScriptsAction(string[] cmdparams, Action<IScriptInstance> action)
  411. {
  412. HandleScriptsAction<object>(cmdparams, action, null);
  413. }
  414. /// <summary>
  415. /// Parse the raw item id into a script instance from the command params if it's present.
  416. /// </summary>
  417. /// <param name="cmdparams"></param>
  418. /// <param name="instance"></param>
  419. /// <param name="keySelector">Basis on which to sort output. Can be null if no sort needs to take place</param>
  420. private void HandleScriptsAction<TKey>(
  421. string[] cmdparams, Action<IScriptInstance> action, System.Func<IScriptInstance, TKey> keySelector)
  422. {
  423. if (!(MainConsole.Instance.ConsoleScene == null || MainConsole.Instance.ConsoleScene == m_Scene))
  424. return;
  425. lock (m_Scripts)
  426. {
  427. string rawItemId;
  428. UUID itemId = UUID.Zero;
  429. if (cmdparams.Length == 2)
  430. {
  431. IEnumerable<IScriptInstance> scripts = m_Scripts.Values;
  432. if (keySelector != null)
  433. scripts = scripts.OrderBy<IScriptInstance, TKey>(keySelector);
  434. foreach (IScriptInstance instance in scripts)
  435. action(instance);
  436. return;
  437. }
  438. for (int i = 2; i < cmdparams.Length; i++)
  439. {
  440. rawItemId = cmdparams[i];
  441. if (!UUID.TryParse(rawItemId, out itemId))
  442. {
  443. MainConsole.Instance.OutputFormat("ERROR: {0} is not a valid UUID", rawItemId);
  444. continue;
  445. }
  446. if (itemId != UUID.Zero)
  447. {
  448. IScriptInstance instance = GetInstance(itemId);
  449. if (instance == null)
  450. {
  451. // Commented out for now since this will cause false reports on simulators with more than
  452. // one scene where the current command line set region is 'root' (which causes commands to
  453. // go to both regions... (sigh)
  454. // MainConsole.Instance.OutputFormat("Error - No item found with id {0}", itemId);
  455. continue;
  456. }
  457. else
  458. {
  459. action(instance);
  460. }
  461. }
  462. }
  463. }
  464. }
  465. private void HandleShowStatus(string module, string[] cmdparams)
  466. {
  467. if (!(MainConsole.Instance.ConsoleScene == null || MainConsole.Instance.ConsoleScene == m_Scene))
  468. return;
  469. MainConsole.Instance.Output(GetStatusReport());
  470. }
  471. public string GetStatusReport()
  472. {
  473. StringBuilder sb = new StringBuilder();
  474. sb.AppendFormat("Status of XEngine instance for {0}\n", m_Scene.RegionInfo.RegionName);
  475. long scriptsLoaded, eventsQueued = 0, eventsProcessed = 0;
  476. lock (m_Scripts)
  477. {
  478. scriptsLoaded = m_Scripts.Count;
  479. foreach (IScriptInstance si in m_Scripts.Values)
  480. {
  481. eventsQueued += si.EventsQueued;
  482. eventsProcessed += si.EventsProcessed;
  483. }
  484. }
  485. sb.AppendFormat("Scripts loaded : {0}\n", scriptsLoaded);
  486. sb.AppendFormat("Scripts waiting for load : {0}\n", m_CompileQueue.Count);
  487. sb.AppendFormat("Max threads : {0}\n", m_ThreadPool.MaxThreads);
  488. sb.AppendFormat("Min threads : {0}\n", m_ThreadPool.MinThreads);
  489. sb.AppendFormat("Allocated threads : {0}\n", m_ThreadPool.ActiveThreads);
  490. sb.AppendFormat("In use threads : {0}\n", m_ThreadPool.InUseThreads);
  491. sb.AppendFormat("Work items waiting : {0}\n", m_ThreadPool.WaitingCallbacks);
  492. // sb.AppendFormat("Assemblies loaded : {0}\n", m_Assemblies.Count);
  493. sb.AppendFormat("Events queued : {0}\n", eventsQueued);
  494. sb.AppendFormat("Events processed : {0}\n", eventsProcessed);
  495. SensorRepeat sr = AsyncCommandManager.GetSensorRepeatPlugin(this);
  496. sb.AppendFormat("Sensors : {0}\n", sr != null ? sr.SensorsCount : 0);
  497. Dataserver ds = AsyncCommandManager.GetDataserverPlugin(this);
  498. sb.AppendFormat("Dataserver requests : {0}\n", ds != null ? ds.DataserverRequestsCount : 0);
  499. Timer t = AsyncCommandManager.GetTimerPlugin(this);
  500. sb.AppendFormat("Timers : {0}\n", t != null ? t.TimersCount : 0);
  501. Listener l = AsyncCommandManager.GetListenerPlugin(this);
  502. sb.AppendFormat("Listeners : {0}\n", l != null ? l.ListenerCount : 0);
  503. return sb.ToString();
  504. }
  505. public void HandleShowScripts(string module, string[] cmdparams)
  506. {
  507. if (!(MainConsole.Instance.ConsoleScene == null || MainConsole.Instance.ConsoleScene == m_Scene))
  508. return;
  509. if (cmdparams.Length == 2)
  510. {
  511. lock (m_Scripts)
  512. {
  513. MainConsole.Instance.OutputFormat(
  514. "Showing {0} scripts in {1}", m_Scripts.Count, m_Scene.RegionInfo.RegionName);
  515. }
  516. }
  517. HandleScriptsAction<long>(cmdparams, HandleShowScript, si => si.EventsProcessed);
  518. }
  519. private void HandleShowScript(IScriptInstance instance)
  520. {
  521. SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
  522. string status;
  523. if (instance.ShuttingDown)
  524. {
  525. status = "shutting down";
  526. }
  527. else if (instance.Suspended)
  528. {
  529. status = "suspended";
  530. }
  531. else if (!instance.Running)
  532. {
  533. status = "stopped";
  534. }
  535. else
  536. {
  537. status = "running";
  538. }
  539. StringBuilder sb = new StringBuilder();
  540. sb.AppendFormat("Script name : {0}\n", instance.ScriptName);
  541. sb.AppendFormat("Status : {0}\n", status);
  542. sb.AppendFormat("Queued events : {0}\n", instance.EventsQueued);
  543. sb.AppendFormat("Processed events : {0}\n", instance.EventsProcessed);
  544. sb.AppendFormat("Item UUID : {0}\n", instance.ItemID);
  545. sb.AppendFormat("Asset UUID : {0}\n", instance.AssetID);
  546. sb.AppendFormat("Containing part name: {0}\n", instance.PrimName);
  547. sb.AppendFormat("Containing part UUID: {0}\n", instance.ObjectID);
  548. sb.AppendFormat("Position : {0}\n", sop.AbsolutePosition);
  549. MainConsole.Instance.Output(sb.ToString());
  550. }
  551. private void HandleSuspendScript(IScriptInstance instance)
  552. {
  553. if (!instance.Suspended)
  554. {
  555. instance.Suspend();
  556. SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
  557. MainConsole.Instance.OutputFormat(
  558. "Suspended {0}.{1}, item UUID {2}, prim UUID {3} @ {4}",
  559. instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, sop.AbsolutePosition);
  560. }
  561. }
  562. private void HandleResumeScript(IScriptInstance instance)
  563. {
  564. if (instance.Suspended)
  565. {
  566. instance.Resume();
  567. SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
  568. MainConsole.Instance.OutputFormat(
  569. "Resumed {0}.{1}, item UUID {2}, prim UUID {3} @ {4}",
  570. instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, sop.AbsolutePosition);
  571. }
  572. }
  573. private void HandleStartScript(IScriptInstance instance)
  574. {
  575. if (!instance.Running)
  576. {
  577. instance.Start();
  578. SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
  579. MainConsole.Instance.OutputFormat(
  580. "Started {0}.{1}, item UUID {2}, prim UUID {3} @ {4}",
  581. instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, sop.AbsolutePosition);
  582. }
  583. }
  584. private void HandleStopScript(IScriptInstance instance)
  585. {
  586. if (instance.Running)
  587. {
  588. instance.StayStopped = true; // the script was stopped explicitly
  589. instance.Stop(0);
  590. SceneObjectPart sop = m_Scene.GetSceneObjectPart(instance.ObjectID);
  591. MainConsole.Instance.OutputFormat(
  592. "Stopped {0}.{1}, item UUID {2}, prim UUID {3} @ {4}",
  593. instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, sop.AbsolutePosition);
  594. }
  595. }
  596. public void RemoveRegion(Scene scene)
  597. {
  598. if (!m_Enabled)
  599. return;
  600. lock (m_Scripts)
  601. {
  602. m_log.InfoFormat(
  603. "[XEngine]: Shutting down {0} scripts in {1}", m_Scripts.Count, m_Scene.RegionInfo.RegionName);
  604. foreach (IScriptInstance instance in m_Scripts.Values)
  605. {
  606. // Force a final state save
  607. //
  608. try
  609. {
  610. if (instance.StatePersistedHere)
  611. instance.SaveState();
  612. }
  613. catch (Exception e)
  614. {
  615. m_log.Error(
  616. string.Format(
  617. "[XEngine]: Failed final state save for script {0}.{1}, item UUID {2}, prim UUID {3} in {4}. Exception ",
  618. instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, World.Name)
  619. , e);
  620. }
  621. // Clear the event queue and abort the instance thread
  622. //
  623. instance.Stop(0, true);
  624. // Release events, timer, etc
  625. //
  626. instance.DestroyScriptInstance();
  627. // Unload scripts and app domains.
  628. // Must be done explicitly because they have infinite
  629. // lifetime.
  630. // However, don't bother to do this if the simulator is shutting
  631. // down since it takes a long time with many scripts.
  632. if (!m_SimulatorShuttingDown)
  633. {
  634. m_DomainScripts[instance.AppDomain].Remove(instance.ItemID);
  635. if (m_DomainScripts[instance.AppDomain].Count == 0)
  636. {
  637. m_DomainScripts.Remove(instance.AppDomain);
  638. UnloadAppDomain(instance.AppDomain);
  639. }
  640. }
  641. }
  642. m_Scripts.Clear();
  643. m_PrimObjects.Clear();
  644. m_Assemblies.Clear();
  645. m_DomainScripts.Clear();
  646. }
  647. lock (m_ScriptEngines)
  648. {
  649. m_ScriptEngines.Remove(this);
  650. }
  651. }
  652. public void RegionLoaded(Scene scene)
  653. {
  654. if (!m_Enabled)
  655. return;
  656. m_EventManager = new EventManager(this);
  657. m_Compiler = new Compiler(this);
  658. m_Scene.EventManager.OnRemoveScript += OnRemoveScript;
  659. m_Scene.EventManager.OnScriptReset += OnScriptReset;
  660. m_Scene.EventManager.OnStartScript += OnStartScript;
  661. m_Scene.EventManager.OnStopScript += OnStopScript;
  662. m_Scene.EventManager.OnGetScriptRunning += OnGetScriptRunning;
  663. m_Scene.EventManager.OnShutdown += OnShutdown;
  664. // If region ready has been triggered, then the region had no scripts to compile and completed its other
  665. // work.
  666. m_Scene.EventManager.OnRegionReadyStatusChange += s => { if (s.Ready) m_InitialStartup = false; };
  667. if (m_SleepTime > 0)
  668. {
  669. m_ThreadPool.QueueWorkItem(new WorkItemCallback(this.DoMaintenance),
  670. new Object[]{ m_SleepTime });
  671. }
  672. if (m_SaveTime > 0)
  673. {
  674. m_ThreadPool.QueueWorkItem(new WorkItemCallback(this.DoBackup),
  675. new Object[] { m_SaveTime });
  676. }
  677. }
  678. public void StartProcessing()
  679. {
  680. m_ThreadPool.Start();
  681. }
  682. public void Close()
  683. {
  684. if (!m_Enabled)
  685. return;
  686. lock (m_ScriptEngines)
  687. {
  688. if (m_ScriptEngines.Contains(this))
  689. m_ScriptEngines.Remove(this);
  690. }
  691. lock(m_Scripts)
  692. m_ThreadPool.Shutdown();
  693. }
  694. public object DoBackup(object o)
  695. {
  696. Object[] p = (Object[])o;
  697. int saveTime = (int)p[0];
  698. if (saveTime > 0)
  699. System.Threading.Thread.Sleep(saveTime);
  700. // m_log.Debug("[XEngine] Backing up script states");
  701. List<IScriptInstance> instances = new List<IScriptInstance>();
  702. lock (m_Scripts)
  703. {
  704. foreach (IScriptInstance instance in m_Scripts.Values)
  705. {
  706. if (instance.StatePersistedHere)
  707. {
  708. // m_log.DebugFormat(
  709. // "[XEngine]: Adding script {0}.{1}, item UUID {2}, prim UUID {3} in {4} for state persistence",
  710. // instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID, World.Name);
  711. instances.Add(instance);
  712. }
  713. }
  714. }
  715. foreach (IScriptInstance i in instances)
  716. {
  717. try
  718. {
  719. i.SaveState();
  720. }
  721. catch (Exception e)
  722. {
  723. m_log.Error(
  724. string.Format(
  725. "[XEngine]: Failed to save state of script {0}.{1}, item UUID {2}, prim UUID {3} in {4}. Exception ",
  726. i.PrimName, i.ScriptName, i.ItemID, i.ObjectID, World.Name)
  727. , e);
  728. }
  729. }
  730. if (saveTime > 0)
  731. m_ThreadPool.QueueWorkItem(new WorkItemCallback(this.DoBackup),
  732. new Object[] { saveTime });
  733. return 0;
  734. }
  735. public void SaveAllState()
  736. {
  737. DoBackup(new object[] { 0 });
  738. }
  739. public object DoMaintenance(object p)
  740. {
  741. object[] parms = (object[])p;
  742. int sleepTime = (int)parms[0];
  743. foreach (IScriptInstance inst in m_Scripts.Values)
  744. {
  745. if (inst.EventTime() > m_EventLimit)
  746. {
  747. inst.Stop(100);
  748. if (!m_KillTimedOutScripts)
  749. inst.Start();
  750. }
  751. }
  752. System.Threading.Thread.Sleep(sleepTime);
  753. m_ThreadPool.QueueWorkItem(new WorkItemCallback(this.DoMaintenance),
  754. new Object[]{ sleepTime });
  755. return 0;
  756. }
  757. public Type ReplaceableInterface
  758. {
  759. get { return null; }
  760. }
  761. public string Name
  762. {
  763. get { return "XEngine"; }
  764. }
  765. public void OnRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez, string engine, int stateSource)
  766. {
  767. // m_log.DebugFormat(
  768. // "[XEngine]: OnRezScript event triggered for script {0}, startParam {1}, postOnRez {2}, engine {3}, stateSource {4}, script\n{5}",
  769. // itemID, startParam, postOnRez, engine, stateSource, script);
  770. if (script.StartsWith("//MRM:"))
  771. return;
  772. List<IScriptModule> engines = new List<IScriptModule>(m_Scene.RequestModuleInterfaces<IScriptModule>());
  773. List<string> names = new List<string>();
  774. foreach (IScriptModule m in engines)
  775. names.Add(m.ScriptEngineName);
  776. int lineEnd = script.IndexOf('\n');
  777. if (lineEnd > 1)
  778. {
  779. string firstline = script.Substring(0, lineEnd).Trim();
  780. int colon = firstline.IndexOf(':');
  781. if (firstline.Length > 2 && firstline.Substring(0, 2) == "//" && colon != -1)
  782. {
  783. string engineName = firstline.Substring(2, colon - 2);
  784. if (names.Contains(engineName))
  785. {
  786. engine = engineName;
  787. script = "//" + script.Substring(colon + 1);
  788. }
  789. else
  790. {
  791. if (engine == ScriptEngineName)
  792. {
  793. // If we are falling back on XEngine as the default engine, then only complain to the user
  794. // if a script language has been explicitly set and it's one that we recognize or there are
  795. // no non-whitespace characters after the colon.
  796. //
  797. // If the script is
  798. // explicitly not allowed or the script is not in LSL then the user will be informed by a later compiler message.
  799. //
  800. // If the colon ends the line then we'll risk the false positive as this is more likely
  801. // to signal a real scriptengine line where the user wants to use the default compile language.
  802. //
  803. // This avoids the overwhelming number of false positives where we're in this code because
  804. // there's a colon in a comment in the first line of a script for entirely
  805. // unrelated reasons (e.g. vim settings).
  806. //
  807. // TODO: A better fix would be to deprecate simple : detection and look for some less likely
  808. // string to begin the comment (like #! in unix shell scripts).
  809. bool warnRunningInXEngine = false;
  810. string restOfFirstLine = firstline.Substring(colon + 1);
  811. // FIXME: These are hardcoded because they are currently hardcoded in Compiler.cs
  812. if (restOfFirstLine.StartsWith("c#")
  813. || restOfFirstLine.StartsWith("vb")
  814. || restOfFirstLine.StartsWith("lsl")
  815. || restOfFirstLine.Length == 0)
  816. warnRunningInXEngine = true;
  817. if (warnRunningInXEngine)
  818. {
  819. SceneObjectPart part =
  820. m_Scene.GetSceneObjectPart(
  821. localID);
  822. TaskInventoryItem item =
  823. part.Inventory.GetInventoryItem(itemID);
  824. ScenePresence presence =
  825. m_Scene.GetScenePresence(
  826. item.OwnerID);
  827. if (presence != null)
  828. {
  829. presence.ControllingClient.SendAgentAlertMessage(
  830. "Selected engine unavailable. "+
  831. "Running script on "+
  832. ScriptEngineName,
  833. false);
  834. }
  835. }
  836. }
  837. }
  838. }
  839. }
  840. if (engine != ScriptEngineName)
  841. return;
  842. Object[] parms = new Object[]{localID, itemID, script, startParam, postOnRez, (StateSource)stateSource};
  843. if (stateSource == (int)StateSource.ScriptedRez)
  844. {
  845. lock (m_CompileDict)
  846. {
  847. // m_log.DebugFormat("[XENGINE]: Set compile dict for {0}", itemID);
  848. m_CompileDict[itemID] = new ScriptCompileInfo();
  849. }
  850. DoOnRezScript(parms);
  851. }
  852. else
  853. {
  854. lock (m_CompileDict)
  855. m_CompileDict[itemID] = new ScriptCompileInfo();
  856. // m_log.DebugFormat("[XENGINE]: Set compile dict for {0} delayed", itemID);
  857. // This must occur after the m_CompileDict so that an existing compile thread cannot hit the check
  858. // in DoOnRezScript() before m_CompileDict has been updated.
  859. m_CompileQueue.Enqueue(parms);
  860. // m_log.DebugFormat("[XEngine]: Added script {0} to compile queue", itemID);
  861. // NOTE: Although we use a lockless queue, the lock here
  862. // is required. It ensures that there are never two
  863. // compile threads running, which, due to a race
  864. // conndition, might otherwise happen
  865. //
  866. lock (m_CompileQueue)
  867. {
  868. if (m_CurrentCompile == null)
  869. m_CurrentCompile = m_ThreadPool.QueueWorkItem(DoOnRezScriptQueue, null);
  870. }
  871. }
  872. }
  873. public Object DoOnRezScriptQueue(Object dummy)
  874. {
  875. try
  876. {
  877. if (m_InitialStartup)
  878. {
  879. // This delay exists to stop mono problems where script compilation and startup would stop the sim
  880. // working properly for the session.
  881. System.Threading.Thread.Sleep(m_StartDelay);
  882. m_log.InfoFormat("[XEngine]: Performing initial script startup on {0}", m_Scene.Name);
  883. }
  884. object[] o;
  885. int scriptsStarted = 0;
  886. while (m_CompileQueue.Dequeue(out o))
  887. {
  888. try
  889. {
  890. if (DoOnRezScript(o))
  891. {
  892. scriptsStarted++;
  893. if (m_InitialStartup)
  894. if (scriptsStarted % 50 == 0)
  895. m_log.InfoFormat(
  896. "[XEngine]: Started {0} scripts in {1}", scriptsStarted, m_Scene.Name);
  897. }
  898. }
  899. catch (System.Threading.ThreadAbortException) { }
  900. catch (Exception e)
  901. {
  902. m_log.Error(
  903. string.Format(
  904. "[XEngine]: Failure in DoOnRezScriptQueue() for item {0} in {1}. Continuing. Exception ",
  905. o[1], m_Scene.Name),
  906. e);
  907. }
  908. }
  909. if (m_InitialStartup)
  910. m_log.InfoFormat(
  911. "[XEngine]: Completed starting {0} scripts on {1}", scriptsStarted, m_Scene.Name);
  912. }
  913. catch (Exception e)
  914. {
  915. m_log.Error(
  916. string.Format("[XEngine]: Failure in DoOnRezScriptQueue() in {0}. Exception ", m_Scene.Name), e);
  917. }
  918. finally
  919. {
  920. // FIXME: On failure we must trigger this even if the compile queue is not actually empty so that the
  921. // RegionReadyModule is not forever waiting. This event really needs a different name.
  922. m_Scene.EventManager.TriggerEmptyScriptCompileQueue(m_ScriptFailCount,
  923. m_ScriptErrorMessage);
  924. m_ScriptFailCount = 0;
  925. m_InitialStartup = false;
  926. // NOTE: Despite having a lockless queue, this lock is required
  927. // to make sure there is never no compile thread while there
  928. // are still scripts to compile. This could otherwise happen
  929. // due to a race condition
  930. //
  931. lock (m_CompileQueue)
  932. {
  933. m_CurrentCompile = null;
  934. // This is to avoid a situation where the m_CompileQueue while loop above could complete but
  935. // OnRezScript() place a new script on the queue and check m_CurrentCompile = null before we hit
  936. // this section.
  937. if (m_CompileQueue.Count > 0)
  938. m_CurrentCompile = m_ThreadPool.QueueWorkItem(DoOnRezScriptQueue, null);
  939. }
  940. }
  941. return null;
  942. }
  943. private bool DoOnRezScript(object[] parms)
  944. {
  945. Object[] p = parms;
  946. uint localID = (uint)p[0];
  947. UUID itemID = (UUID)p[1];
  948. string script =(string)p[2];
  949. int startParam = (int)p[3];
  950. bool postOnRez = (bool)p[4];
  951. StateSource stateSource = (StateSource)p[5];
  952. // m_log.DebugFormat("[XEngine]: DoOnRezScript called for script {0}", itemID);
  953. lock (m_CompileDict)
  954. {
  955. if (!m_CompileDict.ContainsKey(itemID))
  956. return false;
  957. }
  958. // Get the asset ID of the script, so we can check if we
  959. // already have it.
  960. // We must look for the part outside the m_Scripts lock because GetSceneObjectPart later triggers the
  961. // m_parts lock on SOG. At the same time, a scene object that is being deleted will take the m_parts lock
  962. // and then later on try to take the m_scripts lock in this class when it calls OnRemoveScript()
  963. SceneObjectPart part = m_Scene.GetSceneObjectPart(localID);
  964. if (part == null)
  965. {
  966. m_log.ErrorFormat("[Script]: SceneObjectPart with localID {0} unavailable. Script NOT started.", localID);
  967. m_ScriptErrorMessage += "SceneObjectPart unavailable. Script NOT started.\n";
  968. m_ScriptFailCount++;
  969. lock (m_CompileDict)
  970. m_CompileDict.Remove(itemID);
  971. return false;
  972. }
  973. TaskInventoryItem item = part.Inventory.GetInventoryItem(itemID);
  974. if (item == null)
  975. {
  976. m_ScriptErrorMessage += "Can't find script inventory item.\n";
  977. m_ScriptFailCount++;
  978. lock (m_CompileDict)
  979. m_CompileDict.Remove(itemID);
  980. return false;
  981. }
  982. if (DebugLevel > 0)
  983. m_log.DebugFormat(
  984. "[XEngine]: Loading script {0}.{1}, item UUID {2}, prim UUID {3} @ {4}.{5}",
  985. part.ParentGroup.RootPart.Name, item.Name, itemID, part.UUID,
  986. part.ParentGroup.RootPart.AbsolutePosition, part.ParentGroup.Scene.RegionInfo.RegionName);
  987. UUID assetID = item.AssetID;
  988. ScenePresence presence = m_Scene.GetScenePresence(item.OwnerID);
  989. string assemblyPath = "";
  990. Culture.SetCurrentCulture();
  991. Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>> linemap;
  992. lock (m_ScriptErrors)
  993. {
  994. try
  995. {
  996. lock (m_AddingAssemblies)
  997. {
  998. m_Compiler.PerformScriptCompile(script, assetID.ToString(), item.OwnerID, out assemblyPath, out linemap);
  999. // m_log.DebugFormat(
  1000. // "[XENGINE]: Found assembly path {0} onrez {1} in {2}",
  1001. // assemblyPath, item.ItemID, World.Name);
  1002. if (!m_AddingAssemblies.ContainsKey(assemblyPath)) {
  1003. m_AddingAssemblies[assemblyPath] = 1;
  1004. } else {
  1005. m_AddingAssemblies[assemblyPath]++;
  1006. }
  1007. }
  1008. string[] warnings = m_Compiler.GetWarnings();
  1009. if (warnings != null && warnings.Length != 0)
  1010. {
  1011. foreach (string warning in warnings)
  1012. {
  1013. if (!m_ScriptErrors.ContainsKey(itemID))
  1014. m_ScriptErrors[itemID] = new ArrayList();
  1015. m_ScriptErrors[itemID].Add(warning);
  1016. // try
  1017. // {
  1018. // // DISPLAY WARNING INWORLD
  1019. // string text = "Warning:\n" + warning;
  1020. // if (text.Length > 1000)
  1021. // text = text.Substring(0, 1000);
  1022. // if (!ShowScriptSaveResponse(item.OwnerID,
  1023. // assetID, text, true))
  1024. // {
  1025. // if (presence != null && (!postOnRez))
  1026. // presence.ControllingClient.SendAgentAlertMessage("Script saved with warnings, check debug window!", false);
  1027. //
  1028. // World.SimChat(Utils.StringToBytes(text),
  1029. // ChatTypeEnum.DebugChannel, 2147483647,
  1030. // part.AbsolutePosition,
  1031. // part.Name, part.UUID, false);
  1032. // }
  1033. // }
  1034. // catch (Exception e2) // LEGIT: User Scripting
  1035. // {
  1036. // m_log.Error("[XEngine]: " +
  1037. // "Error displaying warning in-world: " +
  1038. // e2.ToString());
  1039. // m_log.Error("[XEngine]: " +
  1040. // "Warning:\r\n" +
  1041. // warning);
  1042. // }
  1043. }
  1044. }
  1045. }
  1046. catch (Exception e)
  1047. {
  1048. // m_log.ErrorFormat(
  1049. // "[XEngine]: Exception when rezzing script with item ID {0}, {1}{2}",
  1050. // itemID, e.Message, e.StackTrace);
  1051. // try
  1052. // {
  1053. if (!m_ScriptErrors.ContainsKey(itemID))
  1054. m_ScriptErrors[itemID] = new ArrayList();
  1055. // DISPLAY ERROR INWORLD
  1056. // m_ScriptErrorMessage += "Failed to compile script in object: '" + part.ParentGroup.RootPart.Name + "' Script name: '" + item.Name + "' Error message: " + e.Message.ToString();
  1057. //
  1058. m_ScriptFailCount++;
  1059. m_ScriptErrors[itemID].Add(e.Message.ToString());
  1060. // string text = "Error compiling script '" + item.Name + "':\n" + e.Message.ToString();
  1061. // if (text.Length > 1000)
  1062. // text = text.Substring(0, 1000);
  1063. // if (!ShowScriptSaveResponse(item.OwnerID,
  1064. // assetID, text, false))
  1065. // {
  1066. // if (presence != null && (!postOnRez))
  1067. // presence.ControllingClient.SendAgentAlertMessage("Script saved with errors, check debug window!", false);
  1068. // World.SimChat(Utils.StringToBytes(text),
  1069. // ChatTypeEnum.DebugChannel, 2147483647,
  1070. // part.AbsolutePosition,
  1071. // part.Name, part.UUID, false);
  1072. // }
  1073. // }
  1074. // catch (Exception e2) // LEGIT: User Scripting
  1075. // {
  1076. // m_log.Error("[XEngine]: "+
  1077. // "Error displaying error in-world: " +
  1078. // e2.ToString());
  1079. // m_log.Error("[XEngine]: " +
  1080. // "Errormessage: Error compiling script:\r\n" +
  1081. // e.Message.ToString());
  1082. // }
  1083. lock (m_CompileDict)
  1084. m_CompileDict.Remove(itemID);
  1085. return false;
  1086. }
  1087. }
  1088. // optionaly do not load a assembly on top of a lot of to release memory
  1089. // only if logins disable since causes a lot of rubber banding
  1090. if(m_CompactMemOnLoad && !m_Scene.LoginsEnabled)
  1091. GC.Collect(2);
  1092. ScriptInstance instance = null;
  1093. lock (m_Scripts)
  1094. {
  1095. // Create the object record
  1096. if ((!m_Scripts.ContainsKey(itemID)) ||
  1097. (m_Scripts[itemID].AssetID != assetID))
  1098. {
  1099. // UUID appDomain = assetID;
  1100. // if (part.ParentGroup.IsAttachment)
  1101. // appDomain = part.ParentGroup.RootPart.UUID;
  1102. UUID appDomain = part.ParentGroup.RootPart.UUID;
  1103. if (!m_AppDomains.ContainsKey(appDomain))
  1104. {
  1105. try
  1106. {
  1107. AppDomain sandbox;
  1108. if (m_AppDomainLoading)
  1109. {
  1110. AppDomainSetup appSetup = new AppDomainSetup();
  1111. appSetup.PrivateBinPath = Path.Combine(
  1112. m_ScriptEnginesPath,
  1113. m_Scene.RegionInfo.RegionID.ToString());
  1114. Evidence baseEvidence = AppDomain.CurrentDomain.Evidence;
  1115. Evidence evidence = new Evidence(baseEvidence);
  1116. sandbox = AppDomain.CreateDomain(
  1117. m_Scene.RegionInfo.RegionID.ToString(),
  1118. evidence, appSetup);
  1119. sandbox.AssemblyResolve +=
  1120. new ResolveEventHandler(
  1121. AssemblyResolver.OnAssemblyResolve);
  1122. }
  1123. else
  1124. {
  1125. sandbox = AppDomain.CurrentDomain;
  1126. }
  1127. //PolicyLevel sandboxPolicy = PolicyLevel.CreateAppDomainLevel();
  1128. //AllMembershipCondition sandboxMembershipCondition = new AllMembershipCondition();
  1129. //PermissionSet sandboxPermissionSet = sandboxPolicy.GetNamedPermissionSet("Internet");
  1130. //PolicyStatement sandboxPolicyStatement = new PolicyStatement(sandboxPermissionSet);
  1131. //CodeGroup sandboxCodeGroup = new UnionCodeGroup(sandboxMembershipCondition, sandboxPolicyStatement);
  1132. //sandboxPolicy.RootCodeGroup = sandboxCodeGroup;
  1133. //sandbox.SetAppDomainPolicy(sandboxPolicy);
  1134. m_AppDomains[appDomain] = sandbox;
  1135. m_DomainScripts[appDomain] = new List<UUID>();
  1136. }
  1137. catch (Exception e)
  1138. {
  1139. m_log.ErrorFormat("[XEngine] Exception creating app domain:\n {0}", e.ToString());
  1140. m_ScriptErrorMessage += "Exception creating app domain:\n";
  1141. m_ScriptFailCount++;
  1142. lock (m_AddingAssemblies)
  1143. {
  1144. m_AddingAssemblies[assemblyPath]--;
  1145. }
  1146. lock (m_CompileDict)
  1147. m_CompileDict.Remove(itemID);
  1148. return false;
  1149. }
  1150. }
  1151. m_DomainScripts[appDomain].Add(itemID);
  1152. IScript scriptObj = null;
  1153. EventWaitHandle coopSleepHandle;
  1154. bool coopTerminationForThisScript;
  1155. // Set up assembly name to point to the appropriate scriptEngines directory
  1156. AssemblyName assemblyName = new AssemblyName(Path.GetFileNameWithoutExtension(assemblyPath));
  1157. assemblyName.CodeBase = Path.GetDirectoryName(assemblyPath);
  1158. if (m_coopTermination)
  1159. {
  1160. try
  1161. {
  1162. coopSleepHandle = new XEngineEventWaitHandle(false, EventResetMode.AutoReset);
  1163. scriptObj
  1164. = (IScript)m_AppDomains[appDomain].CreateInstanceAndUnwrap(
  1165. assemblyName.FullName,
  1166. "SecondLife.XEngineScript",
  1167. false,
  1168. BindingFlags.Default,
  1169. null,
  1170. new object[] { coopSleepHandle },
  1171. null,
  1172. null);
  1173. coopTerminationForThisScript = true;
  1174. }
  1175. catch (TypeLoadException)
  1176. {
  1177. coopSleepHandle = null;
  1178. try
  1179. {
  1180. scriptObj
  1181. = (IScript)m_AppDomains[appDomain].CreateInstanceAndUnwrap(
  1182. assemblyName.FullName,
  1183. "SecondLife.Script",
  1184. false,
  1185. BindingFlags.Default,
  1186. null,
  1187. null,
  1188. null,
  1189. null);
  1190. }
  1191. catch (Exception e2)
  1192. {
  1193. m_log.Error(
  1194. string.Format(
  1195. "[XENGINE]: Could not load previous SecondLife.Script from assembly {0} in {1}. Not starting. Exception ",
  1196. assemblyName.FullName, World.Name),
  1197. e2);
  1198. lock (m_CompileDict)
  1199. m_CompileDict.Remove(itemID);
  1200. return false;
  1201. }
  1202. coopTerminationForThisScript = false;
  1203. }
  1204. }
  1205. else
  1206. {
  1207. try
  1208. {
  1209. scriptObj
  1210. = (IScript)m_AppDomains[appDomain].CreateInstanceAndUnwrap(
  1211. assemblyName.FullName,
  1212. "SecondLife.Script",
  1213. false,
  1214. BindingFlags.Default,
  1215. null,
  1216. null,
  1217. null,
  1218. null);
  1219. coopSleepHandle = null;
  1220. coopTerminationForThisScript = false;
  1221. }
  1222. catch (TypeLoadException)
  1223. {
  1224. coopSleepHandle = new XEngineEventWaitHandle(false, EventResetMode.AutoReset);
  1225. try
  1226. {
  1227. scriptObj
  1228. = (IScript)m_AppDomains[appDomain].CreateInstanceAndUnwrap(
  1229. assemblyName.FullName,
  1230. "SecondLife.XEngineScript",
  1231. false,
  1232. BindingFlags.Default,
  1233. null,
  1234. new object[] { coopSleepHandle },
  1235. null,
  1236. null);
  1237. }
  1238. catch (Exception e2)
  1239. {
  1240. m_log.Error(
  1241. string.Format(
  1242. "[XENGINE]: Could not load previous SecondLife.XEngineScript from assembly {0} in {1}. Not starting. Exception ",
  1243. assemblyName.FullName, World.Name),
  1244. e2);
  1245. lock (m_CompileDict)
  1246. m_CompileDict.Remove(itemID);
  1247. return false;
  1248. }
  1249. coopTerminationForThisScript = true;
  1250. }
  1251. }
  1252. if (m_coopTermination != coopTerminationForThisScript && !HaveNotifiedLogOfScriptStopMismatch)
  1253. {
  1254. // Notify the log that there is at least one script compile that doesn't match the
  1255. // ScriptStopStrategy. Operator has to manually delete old DLLs - we can't do this on Windows
  1256. // once the assembly has been loaded evne if the instantiation of a class was unsuccessful.
  1257. m_log.WarnFormat(
  1258. "[XEngine]: At least one existing compiled script DLL in {0} has {1} as ScriptStopStrategy whereas config setting is {2}."
  1259. + "\nContinuing with script compiled strategy but to remove this message please set [XEngine] DeleteScriptsOnStartup = true for one simulator session to remove old script DLLs (script state will not be lost).",
  1260. World.Name, coopTerminationForThisScript ? "co-op" : "abort", m_coopTermination ? "co-op" : "abort");
  1261. HaveNotifiedLogOfScriptStopMismatch = true;
  1262. }
  1263. instance = new ScriptInstance(this, part,
  1264. item,
  1265. startParam, postOnRez,
  1266. m_MaxScriptQueue);
  1267. if(!instance.Load(scriptObj, coopSleepHandle, assemblyPath,
  1268. Path.Combine(ScriptEnginePath, World.RegionInfo.RegionID.ToString()), stateSource, coopTerminationForThisScript))
  1269. {
  1270. lock (m_CompileDict)
  1271. m_CompileDict.Remove(itemID);
  1272. return false;
  1273. }
  1274. // if (DebugLevel >= 1)
  1275. // m_log.DebugFormat(
  1276. // "[XEngine] Loaded script {0}.{1}, item UUID {2}, prim UUID {3} @ {4}.{5}",
  1277. // part.ParentGroup.RootPart.Name, item.Name, itemID, part.UUID,
  1278. // part.ParentGroup.RootPart.AbsolutePosition, part.ParentGroup.Scene.RegionInfo.RegionName);
  1279. if (presence != null)
  1280. {
  1281. ShowScriptSaveResponse(item.OwnerID,
  1282. assetID, "Compile successful", true);
  1283. }
  1284. instance.AppDomain = appDomain;
  1285. instance.LineMap = linemap;
  1286. m_Scripts[itemID] = instance;
  1287. }
  1288. }
  1289. lock (m_PrimObjects)
  1290. {
  1291. if (!m_PrimObjects.ContainsKey(localID))
  1292. m_PrimObjects[localID] = new List<UUID>();
  1293. if (!m_PrimObjects[localID].Contains(itemID))
  1294. m_PrimObjects[localID].Add(itemID);
  1295. }
  1296. lock (m_AddingAssemblies)
  1297. {
  1298. if (!m_Assemblies.ContainsKey(assetID))
  1299. m_Assemblies[assetID] = assemblyPath;
  1300. m_AddingAssemblies[assemblyPath]--;
  1301. }
  1302. if (instance != null)
  1303. {
  1304. instance.Init();
  1305. lock (m_CompileDict)
  1306. {
  1307. foreach (EventParams pp in m_CompileDict[itemID].eventList)
  1308. instance.PostEvent(pp);
  1309. }
  1310. }
  1311. lock (m_CompileDict)
  1312. m_CompileDict.Remove(itemID);
  1313. bool runIt;
  1314. if (m_runFlags.TryGetValue(itemID, out runIt))
  1315. {
  1316. if (!runIt)
  1317. StopScript(itemID);
  1318. m_runFlags.Remove(itemID);
  1319. }
  1320. return true;
  1321. }
  1322. public void OnRemoveScript(uint localID, UUID itemID)
  1323. {
  1324. // If it's not yet been compiled, make sure we don't try
  1325. lock (m_CompileDict)
  1326. {
  1327. if (m_CompileDict.ContainsKey(itemID))
  1328. m_CompileDict.Remove(itemID);
  1329. }
  1330. IScriptInstance instance = null;
  1331. lock (m_Scripts)
  1332. {
  1333. // Do we even have it?
  1334. if (!m_Scripts.ContainsKey(itemID))
  1335. return;
  1336. instance = m_Scripts[itemID];
  1337. m_Scripts.Remove(itemID);
  1338. }
  1339. instance.Stop(m_WaitForEventCompletionOnScriptStop, true);
  1340. lock (m_PrimObjects)
  1341. {
  1342. // Remove the script from it's prim
  1343. if (m_PrimObjects.ContainsKey(localID))
  1344. {
  1345. // Remove inventory item record
  1346. if (m_PrimObjects[localID].Contains(itemID))
  1347. m_PrimObjects[localID].Remove(itemID);
  1348. // If there are no more scripts, remove prim
  1349. if (m_PrimObjects[localID].Count == 0)
  1350. m_PrimObjects.Remove(localID);
  1351. }
  1352. }
  1353. if (instance.StatePersistedHere)
  1354. instance.RemoveState();
  1355. instance.DestroyScriptInstance();
  1356. m_DomainScripts[instance.AppDomain].Remove(instance.ItemID);
  1357. if (m_DomainScripts[instance.AppDomain].Count == 0)
  1358. {
  1359. m_DomainScripts.Remove(instance.AppDomain);
  1360. UnloadAppDomain(instance.AppDomain);
  1361. }
  1362. ObjectRemoved handlerObjectRemoved = OnObjectRemoved;
  1363. if (handlerObjectRemoved != null)
  1364. handlerObjectRemoved(instance.ObjectID);
  1365. ScriptRemoved handlerScriptRemoved = OnScriptRemoved;
  1366. if (handlerScriptRemoved != null)
  1367. handlerScriptRemoved(itemID);
  1368. }
  1369. public void OnScriptReset(uint localID, UUID itemID)
  1370. {
  1371. ResetScript(itemID);
  1372. }
  1373. public void OnStartScript(uint localID, UUID itemID)
  1374. {
  1375. StartScript(itemID);
  1376. }
  1377. public void OnStopScript(uint localID, UUID itemID)
  1378. {
  1379. StopScript(itemID);
  1380. }
  1381. private void CleanAssemblies()
  1382. {
  1383. List<UUID> assetIDList = new List<UUID>(m_Assemblies.Keys);
  1384. foreach (IScriptInstance i in m_Scripts.Values)
  1385. {
  1386. if (assetIDList.Contains(i.AssetID))
  1387. assetIDList.Remove(i.AssetID);
  1388. }
  1389. lock (m_AddingAssemblies)
  1390. {
  1391. foreach (UUID assetID in assetIDList)
  1392. {
  1393. // Do not remove assembly files if another instance of the script
  1394. // is currently initialising
  1395. if (!m_AddingAssemblies.ContainsKey(m_Assemblies[assetID])
  1396. || m_AddingAssemblies[m_Assemblies[assetID]] == 0)
  1397. {
  1398. // m_log.DebugFormat("[XEngine] Removing unreferenced assembly {0}", m_Assemblies[assetID]);
  1399. try
  1400. {
  1401. if (File.Exists(m_Assemblies[assetID]))
  1402. File.Delete(m_Assemblies[assetID]);
  1403. if (File.Exists(m_Assemblies[assetID]+".text"))
  1404. File.Delete(m_Assemblies[assetID]+".text");
  1405. if (File.Exists(m_Assemblies[assetID]+".mdb"))
  1406. File.Delete(m_Assemblies[assetID]+".mdb");
  1407. if (File.Exists(m_Assemblies[assetID]+".map"))
  1408. File.Delete(m_Assemblies[assetID]+".map");
  1409. }
  1410. catch (Exception)
  1411. {
  1412. }
  1413. m_Assemblies.Remove(assetID);
  1414. }
  1415. }
  1416. }
  1417. }
  1418. private void UnloadAppDomain(UUID id)
  1419. {
  1420. if (m_AppDomains.ContainsKey(id))
  1421. {
  1422. AppDomain domain = m_AppDomains[id];
  1423. m_AppDomains.Remove(id);
  1424. if (domain != AppDomain.CurrentDomain)
  1425. AppDomain.Unload(domain);
  1426. domain = null;
  1427. // m_log.DebugFormat("[XEngine] Unloaded app domain {0}", id.ToString());
  1428. }
  1429. }
  1430. //
  1431. // Start processing
  1432. //
  1433. private void SetupEngine(int minThreads, int maxThreads,
  1434. int idleTimeout, ThreadPriority threadPriority,
  1435. int maxScriptQueue, int stackSize)
  1436. {
  1437. m_MaxScriptQueue = maxScriptQueue;
  1438. STPStartInfo startInfo = new STPStartInfo();
  1439. startInfo.ThreadPoolName = "XEngine";
  1440. startInfo.IdleTimeout = idleTimeout * 1000; // convert to seconds as stated in .ini
  1441. startInfo.MaxWorkerThreads = maxThreads;
  1442. startInfo.MinWorkerThreads = minThreads;
  1443. startInfo.ThreadPriority = threadPriority;;
  1444. startInfo.MaxStackSize = stackSize;
  1445. startInfo.StartSuspended = true;
  1446. m_ThreadPool = new SmartThreadPool(startInfo);
  1447. }
  1448. //
  1449. // Used by script instances to queue event handler jobs
  1450. //
  1451. public IScriptWorkItem QueueEventHandler(object parms)
  1452. {
  1453. return new XWorkItem(m_ThreadPool.QueueWorkItem(
  1454. new WorkItemCallback(this.ProcessEventHandler),
  1455. parms));
  1456. }
  1457. /// <summary>
  1458. /// Process a previously posted script event.
  1459. /// </summary>
  1460. /// <param name="parms"></param>
  1461. /// <returns></returns>
  1462. private object ProcessEventHandler(object parms)
  1463. {
  1464. Culture.SetCurrentCulture();
  1465. IScriptInstance instance = (ScriptInstance) parms;
  1466. // m_log.DebugFormat("[XEngine]: Processing event for {0}", instance);
  1467. return instance.EventProcessor();
  1468. }
  1469. /// <summary>
  1470. /// Post event to an entire prim
  1471. /// </summary>
  1472. /// <param name="localID"></param>
  1473. /// <param name="p"></param>
  1474. /// <returns></returns>
  1475. public bool PostObjectEvent(uint localID, EventParams p)
  1476. {
  1477. bool result = false;
  1478. List<UUID> uuids = null;
  1479. lock (m_PrimObjects)
  1480. {
  1481. if (!m_PrimObjects.ContainsKey(localID))
  1482. return false;
  1483. uuids = m_PrimObjects[localID];
  1484. foreach (UUID itemID in uuids)
  1485. {
  1486. IScriptInstance instance = null;
  1487. try
  1488. {
  1489. if (m_Scripts.ContainsKey(itemID))
  1490. instance = m_Scripts[itemID];
  1491. }
  1492. catch { /* ignore race conditions */ }
  1493. if (instance != null)
  1494. {
  1495. instance.PostEvent(p);
  1496. result = true;
  1497. }
  1498. else
  1499. {
  1500. lock (m_CompileDict)
  1501. {
  1502. if (m_CompileDict.ContainsKey(itemID))
  1503. {
  1504. m_CompileDict[itemID].eventList.Add(p);
  1505. result = true;
  1506. }
  1507. }
  1508. }
  1509. }
  1510. }
  1511. return result;
  1512. }
  1513. /// <summary>
  1514. /// Post an event to a single script
  1515. /// </summary>
  1516. /// <param name="itemID"></param>
  1517. /// <param name="p"></param>
  1518. /// <returns></returns>
  1519. public bool PostScriptEvent(UUID itemID, EventParams p)
  1520. {
  1521. if (m_Scripts.ContainsKey(itemID))
  1522. {
  1523. IScriptInstance instance = m_Scripts[itemID];
  1524. if (instance != null)
  1525. instance.PostEvent(p);
  1526. return true;
  1527. }
  1528. lock (m_CompileDict)
  1529. {
  1530. if (m_CompileDict.ContainsKey(itemID))
  1531. {
  1532. m_CompileDict[itemID].eventList.Add(p);
  1533. return true;
  1534. }
  1535. }
  1536. return false;
  1537. }
  1538. public bool PostScriptEvent(UUID itemID, string name, Object[] p)
  1539. {
  1540. Object[] lsl_p = new Object[p.Length];
  1541. for (int i = 0; i < p.Length ; i++)
  1542. {
  1543. if (p[i] is int)
  1544. lsl_p[i] = new LSL_Types.LSLInteger((int)p[i]);
  1545. else if (p[i] is string)
  1546. lsl_p[i] = new LSL_Types.LSLString((string)p[i]);
  1547. else if (p[i] is Vector3)
  1548. lsl_p[i] = new LSL_Types.Vector3((Vector3)p[i]);
  1549. else if (p[i] is Quaternion)
  1550. lsl_p[i] = new LSL_Types.Quaternion((Quaternion)p[i]);
  1551. else if (p[i] is float)
  1552. lsl_p[i] = new LSL_Types.LSLFloat((float)p[i]);
  1553. else
  1554. lsl_p[i] = p[i];
  1555. }
  1556. return PostScriptEvent(itemID, new EventParams(name, lsl_p, new DetectParams[0]));
  1557. }
  1558. public bool PostObjectEvent(UUID itemID, string name, Object[] p)
  1559. {
  1560. SceneObjectPart part = m_Scene.GetSceneObjectPart(itemID);
  1561. if (part == null)
  1562. return false;
  1563. Object[] lsl_p = new Object[p.Length];
  1564. for (int i = 0; i < p.Length ; i++)
  1565. {
  1566. if (p[i] is int)
  1567. lsl_p[i] = new LSL_Types.LSLInteger((int)p[i]);
  1568. else if (p[i] is string)
  1569. lsl_p[i] = new LSL_Types.LSLString((string)p[i]);
  1570. else if (p[i] is Vector3)
  1571. lsl_p[i] = new LSL_Types.Vector3((Vector3)p[i]);
  1572. else if (p[i] is Quaternion)
  1573. lsl_p[i] = new LSL_Types.Quaternion((Quaternion)p[i]);
  1574. else if (p[i] is float)
  1575. lsl_p[i] = new LSL_Types.LSLFloat((float)p[i]);
  1576. else
  1577. lsl_p[i] = p[i];
  1578. }
  1579. return PostObjectEvent(part.LocalId, new EventParams(name, lsl_p, new DetectParams[0]));
  1580. }
  1581. public Assembly OnAssemblyResolve(object sender,
  1582. ResolveEventArgs args)
  1583. {
  1584. if (!(sender is System.AppDomain))
  1585. return null;
  1586. string[] pathList = new string[] {"bin", m_ScriptEnginesPath,
  1587. Path.Combine(m_ScriptEnginesPath,
  1588. m_Scene.RegionInfo.RegionID.ToString())};
  1589. string assemblyName = args.Name;
  1590. if (assemblyName.IndexOf(",") != -1)
  1591. assemblyName = args.Name.Substring(0, args.Name.IndexOf(","));
  1592. foreach (string s in pathList)
  1593. {
  1594. string path = Path.Combine(Directory.GetCurrentDirectory(),
  1595. Path.Combine(s, assemblyName))+".dll";
  1596. // Console.WriteLine("[XEngine]: Trying to resolve {0}", path);
  1597. if (File.Exists(path))
  1598. return Assembly.LoadFrom(path);
  1599. }
  1600. return null;
  1601. }
  1602. private IScriptInstance GetInstance(UUID itemID)
  1603. {
  1604. IScriptInstance instance;
  1605. lock (m_Scripts)
  1606. {
  1607. if (!m_Scripts.ContainsKey(itemID))
  1608. return null;
  1609. instance = m_Scripts[itemID];
  1610. }
  1611. return instance;
  1612. }
  1613. public void SetScriptState(UUID itemID, bool running, bool self)
  1614. {
  1615. IScriptInstance instance = GetInstance(itemID);
  1616. if (instance != null)
  1617. {
  1618. if (running)
  1619. instance.Start();
  1620. else
  1621. {
  1622. if(self)
  1623. {
  1624. instance.Running = false;
  1625. throw new EventAbortException();
  1626. }
  1627. else
  1628. instance.Stop(100);
  1629. }
  1630. }
  1631. }
  1632. public bool GetScriptState(UUID itemID)
  1633. {
  1634. IScriptInstance instance = GetInstance(itemID);
  1635. return instance != null && instance.Running;
  1636. }
  1637. public void ApiResetScript(UUID itemID)
  1638. {
  1639. IScriptInstance instance = GetInstance(itemID);
  1640. if (instance != null)
  1641. instance.ApiResetScript();
  1642. // Send the new number of threads that are in use by the thread
  1643. // pool, I believe that by adding them to the locations where the
  1644. // script is changing states that I will catch all changes to the
  1645. // thread pool
  1646. m_Scene.setThreadCount(m_ThreadPool.InUseThreads);
  1647. }
  1648. public void ResetScript(UUID itemID)
  1649. {
  1650. IScriptInstance instance = GetInstance(itemID);
  1651. if (instance != null)
  1652. instance.ResetScript(m_WaitForEventCompletionOnScriptStop);
  1653. // Send the new number of threads that are in use by the thread
  1654. // pool, I believe that by adding them to the locations where the
  1655. // script is changing states that I will catch all changes to the
  1656. // thread pool
  1657. m_Scene.setThreadCount(m_ThreadPool.InUseThreads);
  1658. }
  1659. public void StartScript(UUID itemID)
  1660. {
  1661. IScriptInstance instance = GetInstance(itemID);
  1662. if (instance != null)
  1663. instance.Start();
  1664. else
  1665. m_runFlags.AddOrUpdate(itemID, true, 240);
  1666. // Send the new number of threads that are in use by the thread
  1667. // pool, I believe that by adding them to the locations where the
  1668. // script is changing states that I will catch all changes to the
  1669. // thread pool
  1670. m_Scene.setThreadCount(m_ThreadPool.InUseThreads);
  1671. }
  1672. public void StopScript(UUID itemID)
  1673. {
  1674. IScriptInstance instance = GetInstance(itemID);
  1675. if (instance != null)
  1676. {
  1677. lock (instance.EventQueue)
  1678. instance.StayStopped = true; // the script was stopped explicitly
  1679. instance.Stop(m_WaitForEventCompletionOnScriptStop);
  1680. }
  1681. else
  1682. {
  1683. // m_log.DebugFormat("[XENGINE]: Could not find script with ID {0} to stop in {1}", itemID, World.Name);
  1684. m_runFlags.AddOrUpdate(itemID, false, 240);
  1685. }
  1686. // Send the new number of threads that are in use by the thread
  1687. // pool, I believe that by adding them to the locations where the
  1688. // script is changing states that I will catch all changes to the
  1689. // thread pool
  1690. m_Scene.setThreadCount(m_ThreadPool.InUseThreads);
  1691. }
  1692. public DetectParams GetDetectParams(UUID itemID, int idx)
  1693. {
  1694. IScriptInstance instance = GetInstance(itemID);
  1695. return instance != null ? instance.GetDetectParams(idx) : null;
  1696. }
  1697. public void SetMinEventDelay(UUID itemID, double delay)
  1698. {
  1699. IScriptInstance instance = GetInstance(itemID);
  1700. if (instance != null)
  1701. instance.MinEventDelay = delay;
  1702. }
  1703. public UUID GetDetectID(UUID itemID, int idx)
  1704. {
  1705. IScriptInstance instance = GetInstance(itemID);
  1706. return instance != null ? instance.GetDetectID(idx) : UUID.Zero;
  1707. }
  1708. public void SetState(UUID itemID, string newState)
  1709. {
  1710. IScriptInstance instance = GetInstance(itemID);
  1711. if (instance == null)
  1712. return;
  1713. instance.SetState(newState);
  1714. }
  1715. public int GetStartParameter(UUID itemID)
  1716. {
  1717. IScriptInstance instance = GetInstance(itemID);
  1718. return instance == null ? 0 : instance.StartParam;
  1719. }
  1720. public void OnShutdown()
  1721. {
  1722. m_SimulatorShuttingDown = true;
  1723. List<IScriptInstance> instances = new List<IScriptInstance>();
  1724. lock (m_Scripts)
  1725. {
  1726. foreach (IScriptInstance instance in m_Scripts.Values)
  1727. instances.Add(instance);
  1728. }
  1729. foreach (IScriptInstance i in instances)
  1730. {
  1731. // Stop the script, even forcibly if needed. Then flag
  1732. // it as shutting down and restore the previous run state
  1733. // for serialization, so the scripts don't come back
  1734. // dead after region restart
  1735. //
  1736. bool prevRunning = i.Running;
  1737. i.Stop(50);
  1738. i.ShuttingDown = true;
  1739. i.Running = prevRunning;
  1740. }
  1741. DoBackup(new Object[] {0});
  1742. }
  1743. public IScriptApi GetApi(UUID itemID, string name)
  1744. {
  1745. IScriptInstance instance = GetInstance(itemID);
  1746. return instance == null ? null : instance.GetApi(name);
  1747. }
  1748. public void OnGetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID)
  1749. {
  1750. IScriptInstance instance = GetInstance(itemID);
  1751. if (instance == null)
  1752. return;
  1753. IEventQueue eq = World.RequestModuleInterface<IEventQueue>();
  1754. if (eq == null)
  1755. {
  1756. controllingClient.SendScriptRunningReply(objectID, itemID,
  1757. GetScriptState(itemID));
  1758. }
  1759. else
  1760. {
  1761. eq.Enqueue(eq.ScriptRunningEvent(objectID, itemID, GetScriptState(itemID), true),
  1762. controllingClient.AgentId);
  1763. }
  1764. }
  1765. public string GetXMLState(UUID itemID)
  1766. {
  1767. // m_log.DebugFormat("[XEngine]: Getting XML state for script instance {0}", itemID);
  1768. IScriptInstance instance = GetInstance(itemID);
  1769. if (instance == null)
  1770. {
  1771. // m_log.DebugFormat("[XEngine]: Found no script instance for {0}, returning empty string", itemID);
  1772. return "";
  1773. }
  1774. string xml = instance.GetXMLState();
  1775. XmlDocument sdoc = new XmlDocument();
  1776. sdoc.XmlResolver=null;
  1777. bool loadedState = true;
  1778. try
  1779. {
  1780. sdoc.LoadXml(xml);
  1781. }
  1782. catch (System.Xml.XmlException)
  1783. {
  1784. loadedState = false;
  1785. }
  1786. XmlNodeList rootL = null;
  1787. XmlNode rootNode = null;
  1788. if (loadedState)
  1789. {
  1790. rootL = sdoc.GetElementsByTagName("ScriptState");
  1791. rootNode = rootL[0];
  1792. }
  1793. // Create <State UUID="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx">
  1794. XmlDocument doc = new XmlDocument();
  1795. XmlElement stateData = doc.CreateElement("", "State", "");
  1796. XmlAttribute stateID = doc.CreateAttribute("", "UUID", "");
  1797. stateID.Value = itemID.ToString();
  1798. stateData.Attributes.Append(stateID);
  1799. XmlAttribute assetID = doc.CreateAttribute("", "Asset", "");
  1800. assetID.Value = instance.AssetID.ToString();
  1801. stateData.Attributes.Append(assetID);
  1802. XmlAttribute engineName = doc.CreateAttribute("", "Engine", "");
  1803. engineName.Value = ScriptEngineName;
  1804. stateData.Attributes.Append(engineName);
  1805. doc.AppendChild(stateData);
  1806. XmlNode xmlstate = null;
  1807. // Add <ScriptState>...</ScriptState>
  1808. if (loadedState)
  1809. {
  1810. xmlstate = doc.ImportNode(rootNode, true);
  1811. }
  1812. else
  1813. {
  1814. xmlstate = doc.CreateElement("", "ScriptState", "");
  1815. }
  1816. stateData.AppendChild(xmlstate);
  1817. string assemName = instance.GetAssemblyName();
  1818. string fn = Path.GetFileName(assemName);
  1819. string assem = String.Empty;
  1820. string assemNameText = assemName + ".text";
  1821. if (File.Exists(assemNameText))
  1822. {
  1823. FileInfo tfi = new FileInfo(assemNameText);
  1824. if (tfi != null)
  1825. {
  1826. Byte[] tdata = new Byte[tfi.Length];
  1827. try
  1828. {
  1829. using (FileStream tfs = File.Open(assemNameText,
  1830. FileMode.Open, FileAccess.Read))
  1831. {
  1832. tfs.Read(tdata, 0, tdata.Length);
  1833. }
  1834. assem = Encoding.ASCII.GetString(tdata);
  1835. }
  1836. catch (Exception e)
  1837. {
  1838. m_log.ErrorFormat(
  1839. "[XEngine]: Unable to open script textfile {0}{1}, reason: {2}",
  1840. assemName, ".text", e.Message);
  1841. }
  1842. }
  1843. }
  1844. else
  1845. {
  1846. FileInfo fi = new FileInfo(assemName);
  1847. if (fi != null)
  1848. {
  1849. Byte[] data = new Byte[fi.Length];
  1850. try
  1851. {
  1852. using (FileStream fs = File.Open(assemName, FileMode.Open, FileAccess.Read))
  1853. {
  1854. fs.Read(data, 0, data.Length);
  1855. }
  1856. assem = System.Convert.ToBase64String(data);
  1857. }
  1858. catch (Exception e)
  1859. {
  1860. m_log.ErrorFormat(
  1861. "[XEngine]: Unable to open script assembly {0}, reason: {1}", assemName, e.Message);
  1862. }
  1863. }
  1864. }
  1865. string map = String.Empty;
  1866. if (File.Exists(fn + ".map"))
  1867. {
  1868. using (FileStream mfs = File.Open(fn + ".map", FileMode.Open, FileAccess.Read))
  1869. {
  1870. using (StreamReader msr = new StreamReader(mfs))
  1871. {
  1872. map = msr.ReadToEnd();
  1873. }
  1874. }
  1875. }
  1876. XmlElement assemblyData = doc.CreateElement("", "Assembly", "");
  1877. XmlAttribute assemblyName = doc.CreateAttribute("", "Filename", "");
  1878. assemblyName.Value = fn;
  1879. assemblyData.Attributes.Append(assemblyName);
  1880. assemblyData.InnerText = assem;
  1881. stateData.AppendChild(assemblyData);
  1882. XmlElement mapData = doc.CreateElement("", "LineMap", "");
  1883. XmlAttribute mapName = doc.CreateAttribute("", "Filename", "");
  1884. mapName.Value = fn + ".map";
  1885. mapData.Attributes.Append(mapName);
  1886. mapData.InnerText = map;
  1887. stateData.AppendChild(mapData);
  1888. // m_log.DebugFormat("[XEngine]: Got XML state for {0}", itemID);
  1889. return doc.InnerXml;
  1890. }
  1891. private bool ShowScriptSaveResponse(UUID ownerID, UUID assetID, string text, bool compiled)
  1892. {
  1893. return false;
  1894. }
  1895. public bool SetXMLState(UUID itemID, string xml)
  1896. {
  1897. // m_log.DebugFormat("[XEngine]: Writing state for script item with ID {0}", itemID);
  1898. if (xml == String.Empty)
  1899. return false;
  1900. XmlDocument doc = new XmlDocument();
  1901. doc.XmlResolver=null;
  1902. try
  1903. {
  1904. doc.LoadXml(xml);
  1905. }
  1906. catch (Exception)
  1907. {
  1908. m_log.Error("[XEngine]: Exception decoding XML data from region transfer");
  1909. return false;
  1910. }
  1911. XmlNodeList rootL = doc.GetElementsByTagName("State");
  1912. if (rootL.Count < 1)
  1913. return false;
  1914. XmlElement rootE = (XmlElement)rootL[0];
  1915. if (rootE.GetAttribute("Engine") != ScriptEngineName)
  1916. return false;
  1917. // On rez from inventory, that ID will have changed. It was only
  1918. // advisory anyway. So we don't check it anymore.
  1919. //
  1920. // if (rootE.GetAttribute("UUID") != itemID.ToString())
  1921. // return;
  1922. XmlNodeList stateL = rootE.GetElementsByTagName("ScriptState");
  1923. if (stateL.Count != 1)
  1924. return false;
  1925. XmlElement stateE = (XmlElement)stateL[0];
  1926. if (World.m_trustBinaries)
  1927. {
  1928. XmlNodeList assemL = rootE.GetElementsByTagName("Assembly");
  1929. if (assemL.Count != 1)
  1930. return false;
  1931. XmlElement assemE = (XmlElement)assemL[0];
  1932. string fn = assemE.GetAttribute("Filename");
  1933. string base64 = assemE.InnerText;
  1934. string path = Path.Combine(m_ScriptEnginesPath, World.RegionInfo.RegionID.ToString());
  1935. path = Path.Combine(path, fn);
  1936. if (!File.Exists(path))
  1937. {
  1938. Byte[] filedata = Convert.FromBase64String(base64);
  1939. try
  1940. {
  1941. using (FileStream fs = File.Create(path))
  1942. {
  1943. // m_log.DebugFormat("[XEngine]: Writing assembly file {0}", path);
  1944. fs.Write(filedata, 0, filedata.Length);
  1945. }
  1946. }
  1947. catch (IOException ex)
  1948. {
  1949. // if there already exists a file at that location, it may be locked.
  1950. m_log.ErrorFormat("[XEngine]: Error whilst writing assembly file {0}, {1}", path, ex.Message);
  1951. }
  1952. string textpath = path + ".text";
  1953. try
  1954. {
  1955. using (FileStream fs = File.Create(textpath))
  1956. {
  1957. using (StreamWriter sw = new StreamWriter(fs))
  1958. {
  1959. // m_log.DebugFormat("[XEngine]: Writing .text file {0}", textpath);
  1960. sw.Write(base64);
  1961. }
  1962. }
  1963. }
  1964. catch (IOException ex)
  1965. {
  1966. // if there already exists a file at that location, it may be locked.
  1967. m_log.ErrorFormat("[XEngine]: Error whilst writing .text file {0}, {1}", textpath, ex.Message);
  1968. }
  1969. }
  1970. XmlNodeList mapL = rootE.GetElementsByTagName("LineMap");
  1971. if (mapL.Count > 0)
  1972. {
  1973. XmlElement mapE = (XmlElement)mapL[0];
  1974. string mappath = Path.Combine(m_ScriptEnginesPath, World.RegionInfo.RegionID.ToString());
  1975. mappath = Path.Combine(mappath, mapE.GetAttribute("Filename"));
  1976. try
  1977. {
  1978. using (FileStream mfs = File.Create(mappath))
  1979. {
  1980. using (StreamWriter msw = new StreamWriter(mfs))
  1981. {
  1982. // m_log.DebugFormat("[XEngine]: Writing linemap file {0}", mappath);
  1983. msw.Write(mapE.InnerText);
  1984. }
  1985. }
  1986. }
  1987. catch (IOException ex)
  1988. {
  1989. // if there already exists a file at that location, it may be locked.
  1990. m_log.Error(
  1991. string.Format("[XEngine]: Linemap file {0} could not be written. Exception ", mappath), ex);
  1992. }
  1993. }
  1994. }
  1995. string statepath = Path.Combine(m_ScriptEnginesPath, World.RegionInfo.RegionID.ToString());
  1996. statepath = Path.Combine(statepath, itemID.ToString() + ".state");
  1997. try
  1998. {
  1999. using (FileStream sfs = File.Create(statepath))
  2000. {
  2001. using (StreamWriter ssw = new StreamWriter(sfs))
  2002. {
  2003. // m_log.DebugFormat("[XEngine]: Writing state file {0}", statepath);
  2004. ssw.Write(stateE.OuterXml);
  2005. }
  2006. }
  2007. }
  2008. catch (IOException ex)
  2009. {
  2010. // if there already exists a file at that location, it may be locked.
  2011. m_log.ErrorFormat("[XEngine]: Error whilst writing state file {0}, {1}", statepath, ex.Message);
  2012. }
  2013. // m_log.DebugFormat(
  2014. // "[XEngine]: Wrote state for script item with ID {0} at {1} in {2}", itemID, statepath, m_Scene.Name);
  2015. return true;
  2016. }
  2017. public ArrayList GetScriptErrors(UUID itemID)
  2018. {
  2019. System.Threading.Thread.Sleep(1000);
  2020. lock (m_ScriptErrors)
  2021. {
  2022. if (m_ScriptErrors.ContainsKey(itemID))
  2023. {
  2024. ArrayList ret = m_ScriptErrors[itemID];
  2025. m_ScriptErrors.Remove(itemID);
  2026. return ret;
  2027. }
  2028. return new ArrayList();
  2029. }
  2030. }
  2031. public Dictionary<uint, float> GetObjectScriptsExecutionTimes()
  2032. {
  2033. Dictionary<uint, float> topScripts = new Dictionary<uint, float>();
  2034. lock (m_Scripts)
  2035. {
  2036. foreach (IScriptInstance si in m_Scripts.Values)
  2037. {
  2038. if (!topScripts.ContainsKey(si.LocalID))
  2039. topScripts[si.RootLocalID] = 0;
  2040. topScripts[si.RootLocalID] += GetExectionTime(si);
  2041. }
  2042. }
  2043. return topScripts;
  2044. }
  2045. public float GetScriptExecutionTime(List<UUID> itemIDs)
  2046. {
  2047. if (itemIDs == null|| itemIDs.Count == 0)
  2048. {
  2049. return 0.0f;
  2050. }
  2051. float time = 0.0f;
  2052. IScriptInstance si;
  2053. // Calculate the time for all scripts that this engine is executing
  2054. // Ignore any others
  2055. foreach (UUID id in itemIDs)
  2056. {
  2057. si = GetInstance(id);
  2058. if (si != null && si.Running)
  2059. {
  2060. time += GetExectionTime(si);
  2061. }
  2062. }
  2063. return time;
  2064. }
  2065. private float GetExectionTime(IScriptInstance si)
  2066. {
  2067. return (float)si.ExecutionTime.GetSumTime().TotalMilliseconds;
  2068. }
  2069. public void SuspendScript(UUID itemID)
  2070. {
  2071. // m_log.DebugFormat("[XEngine]: Received request to suspend script with ID {0}", itemID);
  2072. IScriptInstance instance = GetInstance(itemID);
  2073. if (instance != null)
  2074. instance.Suspend();
  2075. // else
  2076. // m_log.DebugFormat("[XEngine]: Could not find script with ID {0} to resume", itemID);
  2077. // Send the new number of threads that are in use by the thread
  2078. // pool, I believe that by adding them to the locations where the
  2079. // script is changing states that I will catch all changes to the
  2080. // thread pool
  2081. m_Scene.setThreadCount(m_ThreadPool.InUseThreads);
  2082. }
  2083. public void ResumeScript(UUID itemID)
  2084. {
  2085. // m_log.DebugFormat("[XEngine]: Received request to resume script with ID {0}", itemID);
  2086. IScriptInstance instance = GetInstance(itemID);
  2087. if (instance != null)
  2088. instance.Resume();
  2089. // else
  2090. // m_log.DebugFormat("[XEngine]: Could not find script with ID {0} to resume", itemID);
  2091. // Send the new number of threads that are in use by the thread
  2092. // pool, I believe that by adding them to the locations where the
  2093. // script is changing states that I will catch all changes to the
  2094. // thread pool
  2095. m_Scene.setThreadCount(m_ThreadPool.InUseThreads);
  2096. }
  2097. public bool HasScript(UUID itemID, out bool running)
  2098. {
  2099. running = true;
  2100. IScriptInstance instance = GetInstance(itemID);
  2101. if (instance == null)
  2102. return false;
  2103. running = instance.Running;
  2104. return true;
  2105. }
  2106. public void SleepScript(UUID itemID, int delay)
  2107. {
  2108. IScriptInstance instance = GetInstance(itemID);
  2109. if (instance == null)
  2110. return;
  2111. instance.ExecutionTimer.Stop();
  2112. try
  2113. {
  2114. if (instance.CoopWaitHandle != null)
  2115. {
  2116. if (instance.CoopWaitHandle.WaitOne(delay))
  2117. throw new ScriptCoopStopException();
  2118. }
  2119. else
  2120. {
  2121. Thread.Sleep(delay);
  2122. }
  2123. }
  2124. finally
  2125. {
  2126. instance.ExecutionTimer.Start();
  2127. }
  2128. }
  2129. }
  2130. }