// // System.Web.HttpApplicationFactory // // Author: // Gonzalo Paniagua Javier (gonzalo@ximian.com) // // (c) 2002,2003 Ximian, Inc. (http://www.ximian.com) // (c) Copyright 2004 Novell, Inc. (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System; using System.Collections; using System.IO; using System.Reflection; using System.Web.UI; using System.Web.SessionState; using System.Web.Configuration; #if !TARGET_J2EE using System.Web.Compilation; #else using vmw.common; #endif namespace System.Web { class HttpApplicationFactory { // Initialized in InitType #if TARGET_J2EE static HttpApplicationFactory theFactory { get { HttpApplicationFactory factory = (HttpApplicationFactory)AppDomain.CurrentDomain.GetData("HttpApplicationFactory"); if (factory == null) { lock(typeof(HttpApplicationFactory)) { factory = (HttpApplicationFactory)AppDomain.CurrentDomain.GetData("HttpApplicationFactory"); if (factory == null) { factory = new HttpApplicationFactory(); System.Threading.Thread.Sleep(1); AppDomain.CurrentDomain.SetData("HttpApplicationFactory", factory); } } } return factory; } } #else static HttpApplicationFactory theFactory = new HttpApplicationFactory(); #endif static MethodInfo session_end; bool needs_init = true; bool app_start_needed = true; Type app_type; HttpApplicationState app_state; Hashtable app_event_handlers; #if !TARGET_JVM FileSystemWatcher app_file_watcher; FileSystemWatcher bin_watcher; #endif Stack available = new Stack (); Stack available_for_end = new Stack (); // Watch this thing out when getting an instance IHttpHandler custom_application; bool IsEventHandler (MethodInfo m) { int pos = m.Name.IndexOf ('_'); if (pos == -1 || (m.Name.Length - 1) <= pos) return false; if (m.ReturnType != typeof (void)) return false; ParameterInfo [] pi = m.GetParameters (); int length = pi.Length; if (length == 0) return true; if (length != 2) return false; if (pi [0].ParameterType != typeof (object) || pi [1].ParameterType != typeof (EventArgs)) return false; return true; } void AddEvent (MethodInfo method, Hashtable appTypeEventHandlers) { string name = method.Name.Replace ("_On", "_"); if (appTypeEventHandlers [name] == null) { appTypeEventHandlers [name] = method; return; } MethodInfo old_method = appTypeEventHandlers [name] as MethodInfo; ArrayList list; if (old_method != null){ list = new ArrayList (4); list.Add (old_method); appTypeEventHandlers [name] = list; } else list = appTypeEventHandlers [name] as ArrayList; list.Add (method); } Hashtable GetApplicationTypeEvents (Type type) { lock (this) { if (app_event_handlers != null) return app_event_handlers; app_event_handlers = new Hashtable (); BindingFlags flags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static; MethodInfo [] methods = type.GetMethods (flags); foreach (MethodInfo m in methods) { if (m.DeclaringType != typeof (HttpApplication) && IsEventHandler (m)) AddEvent (m, app_event_handlers); } } return app_event_handlers; } Hashtable GetApplicationTypeEvents (HttpApplication app) { lock (this) { if (app_event_handlers != null) return app_event_handlers; return GetApplicationTypeEvents (app.GetType ()); } } bool FireEvent (string method_name, object target, object [] args) { Hashtable possibleEvents = GetApplicationTypeEvents ((HttpApplication) target); MethodInfo method = possibleEvents [method_name] as MethodInfo; if (method == null) return false; if (method.GetParameters ().Length == 0) args = null; method.Invoke (target, args); return true; } HttpApplication FireOnAppStart (HttpContext context) { HttpApplication app = (HttpApplication) Activator.CreateInstance (app_type, true); context.ApplicationInstance = app; app.SetContext (context); object [] args = new object [] {app, EventArgs.Empty}; FireEvent ("Application_Start", app, args); return app; } void FireOnAppEnd () { if (app_type == null) return; // we didn't even get an application HttpApplication app = (HttpApplication) Activator.CreateInstance (app_type, true); FireEvent ("Application_End", app, new object [] {new object (), EventArgs.Empty}); app.Dispose (); } // // This is invoked by HttpRuntime.Dispose, when we unload an AppDomain // To reproduce this in action, touch "global.asax" while XSP is running. // public static void Dispose () { theFactory.FireOnAppEnd (); } #if !TARGET_JVM static FileSystemWatcher CreateWatcher (string file, FileSystemEventHandler hnd) { FileSystemWatcher watcher = new FileSystemWatcher (); watcher.Path = Path.GetFullPath (Path.GetDirectoryName (file)); watcher.Filter = Path.GetFileName (file); watcher.Changed += hnd; watcher.Created += hnd; watcher.Deleted += hnd; watcher.EnableRaisingEvents = true; return watcher; } void OnAppFileChanged (object sender, FileSystemEventArgs args) { if (bin_watcher != null) bin_watcher.EnableRaisingEvents = false; if (app_file_watcher != null) app_file_watcher.EnableRaisingEvents = false; HttpRuntime.UnloadAppDomain (); } #endif internal static void AttachEvents (HttpApplication app) { HttpApplicationFactory factory = theFactory; Hashtable possibleEvents = factory.GetApplicationTypeEvents (app); foreach (string key in possibleEvents.Keys) { int pos = key.IndexOf ('_'); string moduleName = key.Substring (0, pos); object target; if (moduleName == "Application") { target = app; } else { target = app.Modules [moduleName]; if (target == null) continue; } string eventName = key.Substring (pos + 1); EventInfo evt = target.GetType ().GetEvent (eventName); if (evt == null) continue; string usualName = moduleName + "_" + eventName; object methodData = possibleEvents [usualName]; if (methodData != null && eventName == "End" && moduleName == "Session") { lock (factory) { if (session_end == null) session_end = (MethodInfo) methodData; } continue; } if (methodData == null) continue; if (methodData is MethodInfo) { factory.AddHandler (evt, target, app, (MethodInfo) methodData); continue; } ArrayList list = (ArrayList) methodData; foreach (MethodInfo method in list) factory.AddHandler (evt, target, app, method); } } void AddHandler (EventInfo evt, object target, HttpApplication app, MethodInfo method) { int length = method.GetParameters ().Length; if (length == 0) { NoParamsInvoker npi = new NoParamsInvoker (app, method.Name); evt.AddEventHandler (target, npi.FakeDelegate); } else { evt.AddEventHandler (target, Delegate.CreateDelegate ( typeof (EventHandler), app, method.Name)); } } internal static void InvokeSessionEnd (object state) { HttpApplicationFactory factory = theFactory; MethodInfo method = null; HttpApplication app = null; lock (factory.available_for_end) { method = session_end; if (method == null) return; app = GetApplicationForSessionEnd (); } app.SetSession ((HttpSessionState) state); try { method.Invoke (app, new object [] {app, EventArgs.Empty}); } catch (Exception e) { // Ignore } RecycleForSessionEnd (app); } static HttpStaticObjectsCollection MakeStaticCollection (ArrayList list) { if (list == null || list.Count == 0) return null; HttpStaticObjectsCollection coll = new HttpStaticObjectsCollection (); foreach (ObjectTagBuilder tag in list) { coll.Add (tag); } return coll; } internal static HttpApplicationState ApplicationState { #if TARGET_J2EE get { HttpApplicationFactory factory = theFactory; if (factory.app_state == null) factory.app_state = new HttpApplicationState (null, null); return factory.app_state; } #else get { if (theFactory.app_state == null) { HttpStaticObjectsCollection app = MakeStaticCollection (GlobalAsaxCompiler.ApplicationObjects); HttpStaticObjectsCollection ses = MakeStaticCollection (GlobalAsaxCompiler.SessionObjects); theFactory.app_state = new HttpApplicationState (app, ses); } return theFactory.app_state; } #endif } public static void SetCustomApplication (IHttpHandler customApplication) { theFactory.custom_application = customApplication; } internal static Type AppType { get { return theFactory.app_type; } } void InitType (HttpContext context) { lock (this) { if (!needs_init) return; string physical_app_path = context.Request.PhysicalApplicationPath; string app_file; app_file = Path.Combine (physical_app_path, "Global.asax"); if (!File.Exists (app_file)) app_file = Path.Combine (physical_app_path, "global.asax"); #if !CONFIGURATION_2_0 WebConfigurationSettings.Init (context); #endif if (File.Exists (app_file)) { #if TARGET_J2EE app_type = System.Web.J2EE.PageMapper.GetObjectType(app_file); #else app_type = ApplicationFileParser.GetCompiledApplicationType (app_file, context); if (app_type == null) { string msg = String.Format ("Error compiling application file ({0}).", app_file); throw new ApplicationException (msg); } app_file_watcher = CreateWatcher (app_file, new FileSystemEventHandler (OnAppFileChanged)); #endif } else { app_type = typeof (System.Web.HttpApplication); app_state = new HttpApplicationState (); } needs_init = false; // // Now init the settings // } } // // Multiple-threads might hit this one on startup, and we have // to delay-initialize until we have the HttpContext // internal static HttpApplication GetApplication (HttpContext context) { HttpApplicationFactory factory = theFactory; HttpApplication app = null; if (factory.needs_init){ if (context == null) return null; factory.InitType (context); lock (factory) { if (factory.app_start_needed) { #if !TARGET_JVM string bin = HttpRuntime.BinDirectory; if (Directory.Exists (bin)) bin = Path.Combine (bin, "*.dll"); // We watch bin or bin/*.dll if the directory exists factory.bin_watcher = CreateWatcher (bin, new FileSystemEventHandler (factory.OnAppFileChanged)); #endif app = factory.FireOnAppStart (context); factory.app_start_needed = false; return app; } } } lock (factory.available) { if (factory.available.Count > 0) { app = (HttpApplication) factory.available.Pop (); app.RequestCompleted = false; return app; } } return (HttpApplication) Activator.CreateInstance (factory.app_type, true); } // The lock is in InvokeSessionEnd static HttpApplication GetApplicationForSessionEnd () { HttpApplicationFactory factory = theFactory; if (factory.available_for_end.Count > 0) return (HttpApplication) factory.available_for_end.Pop (); HttpApplication app = (HttpApplication) Activator.CreateInstance (factory.app_type, true); app.InitOnce (false); return app; } internal static void RecycleForSessionEnd (HttpApplication app) { HttpApplicationFactory factory = theFactory; lock (factory.available_for_end) { if (factory.available_for_end.Count < 32) factory.available_for_end.Push (app); else app.Dispose (); } } internal static void Recycle (HttpApplication app) { HttpApplicationFactory factory = theFactory; lock (factory.available) { if (factory.available.Count < 32) factory.available.Push (app); else app.Dispose (); } } internal static bool ContextAvailable { get { return theFactory != null && theFactory.app_start_needed && theFactory.needs_init; } } } }