HttpContext.cs :  » 2.6.4-mono-.net-core » System.Web » System » Web » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Web 
System.Web » System » Web » HttpContext.cs
//
// System.Web.HttpContext.cs 
//
// Author:
//  Miguel de Icaza (miguel@novell.com)
//  Gonzalo Paniagua Javier (gonzalo@novell.com)
//      Marek Habersack <mhabersack@novell.com>
//

//
// Copyright (C) 2005-2009 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.Collections;
using System.Configuration;
using System.Globalization;
using System.Runtime.Remoting.Messaging;
using System.Security.Permissions;
using System.Security.Principal;
using System.Threading;
using System.Web.Caching;
using System.Web.Configuration;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.Util;
using System.Reflection;
using System.Collections.Generic;
using System.IO;
using System.Resources;
using System.Web.Compilation;
using System.Web.Profile;
using CustomErrorModeSystem.Web.Configuration.CustomErrorsMode;

namespace System.Web{
  // CAS - no InheritanceDemand here as the class is sealed
  [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  public sealed partial class HttpContext : IServiceProvider
  {
    internal HttpWorkerRequest WorkerRequest;
    HttpApplication app_instance;
    HttpRequest request;
    HttpResponse response;
    HttpSessionState session_state;
    HttpServerUtility server;
    TraceContext trace_context;
    IHttpHandler handler;
    string error_page;
    bool skip_authorization = false;
    IPrincipal user;
    object errors;
    Hashtable items;
    object config_timeout;
    int timeout_possible;
    DateTime time_stamp = DateTime.UtcNow;
    Timer timer;
    Thread thread;
    bool _isProcessingInclude;
    
    [ThreadStatic]
    static ResourceProviderFactory provider_factory;

    [ThreadStatic]
    static DefaultResourceProviderFactory default_provider_factory;
    
    [ThreadStatic]
    static Dictionary <string, IResourceProvider> resource_providers;
    
#if TARGET_JVM
    const string app_global_res_key = "HttpContext.app_global_res_key";
    internal static Assembly AppGlobalResourcesAssembly {
      get { return (Assembly) AppDomain.CurrentDomain.GetData (app_global_res_key); }
      set { AppDomain.CurrentDomain.SetData (app_global_res_key, value); }
    }
#else
    internal static Assembly AppGlobalResourcesAssembly;
#endif
    ProfileBase profile = null;
    LinkedList<IHttpHandler> handlers;

    static DefaultResourceProviderFactory DefaultProviderFactory {
      get {
        if (default_provider_factory == null)
          default_provider_factory = new DefaultResourceProviderFactory ();
        return default_provider_factory;
      }
    }
    
    public HttpContext (HttpWorkerRequest wr)
    {
      WorkerRequest = wr;
      request = new HttpRequest (WorkerRequest, this);
      response = new HttpResponse (WorkerRequest, this);
#if NET_4_0
      SessionStateBehavior = SessionStateBehavior.Default;
#endif
    }

    public HttpContext (HttpRequest request, HttpResponse response)
    {
      this.request = request;
      this.response = response;
      this.request.Context = this;
      this.response.Context = this;
#if NET_4_0
      SessionStateBehavior = SessionStateBehavior.Default;
#endif
    }

    internal bool IsProcessingInclude {
      get { return _isProcessingInclude; }
      set { _isProcessingInclude = value; }
    }

    public Exception [] AllErrors {
      get {
        if (errors == null)
          return null;

        if (errors is Exception){
          Exception [] all = new Exception [1];
          all [0] = (Exception) errors;
          return all;
        } 
        return (Exception []) (((ArrayList) errors).ToArray (typeof (Exception)));
      }
    }

    public HttpApplicationState Application {
      get {
        return HttpApplicationFactory.ApplicationState;
      }
    }

    public HttpApplication ApplicationInstance {
      get {
        return app_instance;
      }

      set {
        app_instance = value;
      }
            
    }

    public Cache Cache {
      get {
        return HttpRuntime.Cache;
      }
    }

    internal Cache InternalCache {
      get {
        return HttpRuntime.InternalCache;
      }
    }
    
    //
    // The "Current" property is set just after we have constructed it with 
    // the 'HttpContext (HttpWorkerRequest)' constructor.
    //
#if !TARGET_JVM // No remoting CallContext support in Grasshopper
    public static HttpContext Current {
      get {
        return (HttpContext) CallContext.GetData ("c");
      }

      set {
        CallContext.SetData ("c", value);
      }
    }
#endif

    public Exception Error {
      get {
        if (errors == null || (errors is Exception))
          return (Exception) errors;
        return (Exception) (((ArrayList) errors) [0]);
      }
    }

    public IHttpHandler Handler {
      get {
        return handler;
      }

      set {
        handler = value;
      }
    }

    public bool IsCustomErrorEnabled {
      get {
        try {
          return IsCustomErrorEnabledUnsafe;
        }
        catch {
          return false;
        }
      }
    }

    internal bool IsCustomErrorEnabledUnsafe {
      get {
        CustomErrorsSection cfg = (CustomErrorsSection) WebConfigurationManager.GetSection ("system.web/customErrors");
        if (cfg.Mode == CustomErrorMode.On)
          return true;

        return (cfg.Mode == CustomErrorMode.RemoteOnly) && !Request.IsLocal;
      }
    }
#if !TARGET_JVM
    public bool IsDebuggingEnabled {
      get { return RuntimeHelpers.DebuggingEnabled; }
    }
#endif
    public IDictionary Items {
      get {
        if (items == null)
          items = new Hashtable ();
        return items;
      }
    }

    public HttpRequest Request {
      get {
        return request;
      }
    }

    public HttpResponse Response {
      get {
        return response;
      }
    }

    public HttpServerUtility Server {
      get {
        if (server == null)
          server = new HttpServerUtility (this);
        return server;
      }
    }

    public HttpSessionState Session {
      get {
        return session_state;
      }
    }

    public bool SkipAuthorization {
      get {
        return skip_authorization;
      }

      [SecurityPermission (SecurityAction.Demand, ControlPrincipal = true)]
      set {
        skip_authorization = value;
      }
    }

    public DateTime Timestamp {
      get {
        return time_stamp.ToLocalTime ();
      }
    }
    
    public TraceContext Trace {
      get {
        if (trace_context == null)
          trace_context = new TraceContext (this);
        return trace_context;
      }
    }

    public IPrincipal User {
      get {
        return user;
      }

      [SecurityPermission (SecurityAction.Demand, ControlPrincipal = true)]
      set {
        user = value;
      }
    }

    internal bool MapRequestHandlerDone {
      get;
      set;
    }
    
    // The two properties below are defined only when the IIS7 integrated mode is used.
    // They are useless under Mono
    public RequestNotification CurrentNotification {
      get { throw new PlatformNotSupportedException ("This property is not supported on Mono.");  }
    }

    public bool IsPostNotification {
      get { throw new PlatformNotSupportedException ("This property is not supported on Mono."); }
    }
    
    internal void PushHandler (IHttpHandler handler)
    {
      if (handler == null)
        return;
      if (handlers == null)
        handlers = new LinkedList <IHttpHandler> ();
      handlers.AddLast (handler);
    }

    internal void PopHandler ()
    {
      if (handlers == null || handlers.Count == 0)
        return;
      handlers.RemoveLast ();
    }
    
    IHttpHandler GetCurrentHandler ()
    {
      if (handlers == null || handlers.Count == 0)
        return null;
      
      return handlers.Last.Value;
    }

    IHttpHandler GetPreviousHandler ()
    {
      if (handlers == null || handlers.Count <= 1)
        return null;
      LinkedListNode <IHttpHandler> previous = handlers.Last.Previous;
      if (previous != null)
        return previous.Value;
      return null;
    }
    
    public IHttpHandler CurrentHandler {
      get { return GetCurrentHandler (); }
    }

    public IHttpHandler PreviousHandler {
      get { return GetPreviousHandler (); }
    }

    internal bool ProfileInitialized {
      get { return profile != null; }
    }

    public ProfileBase Profile {
      get {
        if (profile == null) {
          if (Request.IsAuthenticated)
            profile = ProfileBase.Create (User.Identity.Name);
          else
            profile = ProfileBase.Create (Request.AnonymousID, false);
        }
        return profile;
      }

      internal set {
        profile = value;
      }
    }

    public void AddError (Exception errorInfo)
    {
      if (errors == null){
        errors = errorInfo;
        return;
      }
      ArrayList l;
      if (errors is Exception){
        l = new ArrayList ();
        l.Add (errors);
        errors = l;
      } else 
        l = (ArrayList) errors;
      l.Add (errorInfo);
    }

    internal void ClearError (Exception e)
    {
      if (errors == e)
        errors = null;
    }

    internal bool HasError (Exception e)
    {
      if (errors == e)
        return true;

      return (errors is ArrayList) ?
        ((ArrayList) errors).Contains (e) : false;
    }

    public void ClearError ()
    {
      errors = null;
    }

    [Obsolete ("use WebConfigurationManager.GetWebApplicationSection")]
    public static object GetAppConfig (string name)
    {
      object o = ConfigurationSettings.GetConfig (name);

      return o;
    }

    [Obsolete ("see GetSection")]
    public object GetConfig (string name)
    {
      return GetSection (name);
    }

    public static object GetGlobalResourceObject (string classKey, string resourceKey)
    {
      return GetGlobalResourceObject (classKey, resourceKey, Thread.CurrentThread.CurrentUICulture);
    }

    static bool EnsureProviderFactory ()
    {
      if (resource_providers == null)
        resource_providers = new Dictionary <string, IResourceProvider> ();

      if (provider_factory != null)
        return true;
      
      GlobalizationSection gs = WebConfigurationManager.GetSection ("system.web/globalization") as GlobalizationSection;

      if (gs == null)
        return false;

      String rsfTypeName = gs.ResourceProviderFactoryType;
      bool usingDefault = false;
      if (String.IsNullOrEmpty (rsfTypeName)) {
        usingDefault = true;
        rsfTypeName = typeof (DefaultResourceProviderFactory).AssemblyQualifiedName;
      }
      
      Type rsfType = HttpApplication.LoadType (rsfTypeName, true);
      ResourceProviderFactory rpf = Activator.CreateInstance (rsfType) as ResourceProviderFactory;
      
      if (rpf == null && usingDefault)
        return false;

      provider_factory = rpf;
      if (usingDefault)
        default_provider_factory = rpf as DefaultResourceProviderFactory;
      
      return true;
    }
    
    internal static IResourceProvider GetResourceProvider (string virtualPath, bool isLocal)
    {
      if (!EnsureProviderFactory ())
        return null;

      // TODO: check if it makes sense to cache the providers and, if yes, maybe
      // we should expire the entries (or just store them in InternalCache?)
      IResourceProvider rp = null;
      if (!resource_providers.TryGetValue (virtualPath, out rp)) {
        if (isLocal)
          rp = provider_factory.CreateLocalResourceProvider (virtualPath);
        else
          rp = provider_factory.CreateGlobalResourceProvider (virtualPath);
        
        if (rp == null) {
          if (isLocal)
            rp = DefaultProviderFactory.CreateLocalResourceProvider (virtualPath);
          else
            rp = DefaultProviderFactory.CreateGlobalResourceProvider (virtualPath);

          if (rp == null)
            return null;
        }
        
        resource_providers.Add (virtualPath, rp);
      }

      return rp;
    }

    static object GetGlobalObjectFromFactory (string classKey, string resourceKey, CultureInfo culture)
    {
      // FIXME: Retention of data
      IResourceProvider rp = GetResourceProvider (classKey, false);
      if (rp == null)
        return null;
      
      return rp.GetObject (resourceKey, culture);
    }
    
    public static object GetGlobalResourceObject (string classKey, string resourceKey, CultureInfo culture)
    {
      return GetGlobalObjectFromFactory ("Resources." + classKey, resourceKey, culture);
    }

    public static object GetLocalResourceObject (string virtualPath, string resourceKey)
    {
      return GetLocalResourceObject (virtualPath, resourceKey, Thread.CurrentThread.CurrentUICulture);
    }

    static object GetLocalObjectFromFactory (string virtualPath, string resourceKey, CultureInfo culture)
    {
      IResourceProvider rp = GetResourceProvider (virtualPath, true);
      if (rp == null)
        return null;
      
      return rp.GetObject (resourceKey, culture);
    }
    
    public static object GetLocalResourceObject (string virtualPath, string resourceKey, CultureInfo culture)
    {
      if (!VirtualPathUtility.IsAbsolute (virtualPath))
        throw new ArgumentException ("The specified virtualPath was not rooted.");

      return GetLocalObjectFromFactory (virtualPath, resourceKey, culture);
    }

    public object GetSection (string name)
    {
      return WebConfigurationManager.GetSection (name);
    }

    object IServiceProvider.GetService (Type service)
    {
      if (service == typeof (HttpWorkerRequest))
        return WorkerRequest;

      //
      // We return everything out of properties in case
      // they are dynamically computed in some form in the future.
      //
      if (service == typeof (HttpApplication))
        return ApplicationInstance;

      if (service == typeof (HttpRequest))
        return Request;

      if (service == typeof (HttpResponse))
        return Response;

      if (service == typeof (HttpSessionState))
        return Session;

      if (service == typeof (HttpApplicationState))
        return Application;

      if (service == typeof (IPrincipal))
        return User;

      if (service == typeof (Cache))
        return Cache;

      if (service == typeof (HttpContext))
        return Current;

      if (service == typeof (IHttpHandler))
        return Handler;

      if (service == typeof (HttpServerUtility))
        return Server;
      
      if (service == typeof (TraceContext))
        return Trace;
      
      return null;
    }

    public void RemapHandler (IHttpHandler handler)
    {
      if (MapRequestHandlerDone)
        throw new InvalidOperationException ("The RemapHandler method was called after the MapRequestHandler event occurred.");
      Handler = handler;
    }
    
    public void RewritePath (string path)
    {
      RewritePath (path, true);
    }

    public void RewritePath (string filePath, string pathInfo, string queryString)
    {
      RewritePath (filePath, pathInfo, queryString, false);
    }

    public void RewritePath (string path, bool rebaseClientPath)
    {
      int qmark = path.IndexOf ('?');
      if (qmark != -1)
        RewritePath (path.Substring (0, qmark), String.Empty, path.Substring (qmark + 1), rebaseClientPath);
      else
        RewritePath (path, null, null, rebaseClientPath);
    }

    public void RewritePath (string filePath, string pathInfo, string queryString, bool setClientFilePath)
    {
      if (filePath == null)
        throw new ArgumentNullException ("filePath");
      if (!VirtualPathUtility.IsValidVirtualPath (filePath))
        throw new HttpException ("'" + HttpUtility.HtmlEncode (filePath) + "' is not a valid virtual path.");

      bool pathRelative = VirtualPathUtility.IsAppRelative (filePath);
      bool pathAbsolute = pathRelative ? false : VirtualPathUtility.IsAbsolute (filePath);
      HttpRequest req = Request;
      if (req == null)
        return;
      
      if (pathRelative || pathAbsolute) {
        if (pathRelative)
          filePath = VirtualPathUtility.ToAbsolute (filePath);
      } else
        filePath = VirtualPathUtility.AppendTrailingSlash (req.BaseVirtualDir) + filePath;
      
      if (!StrUtils.StartsWith (filePath, HttpRuntime.AppDomainAppVirtualPath))
        throw new HttpException (404, "The virtual path '" + HttpUtility.HtmlEncode (filePath) + "' maps to another application.", filePath);

      req.SetCurrentExePath (filePath);
      req.SetFilePath (filePath);

      if (setClientFilePath)
        req.ClientFilePath = filePath;
      
      // A null pathInfo or queryString is ignored and previous values remain untouched
      if (pathInfo != null)
        req.SetPathInfo (pathInfo);

      if (queryString != null)
        req.QueryStringRaw = queryString;
    }

#if NET_4_0
    public void SetSessionStateBehavior (SessionStateBehavior sessionStateBehavior)
    {
      SessionStateBehavior = sessionStateBehavior;
    }
#endif
    
#region internals
    internal void SetSession (HttpSessionState state)
    {
      session_state = state;
    }

    // URL of a page used for error redirection.
    internal string ErrorPage {
      get {
        return error_page;
      }

      set {
        error_page = value;
      }
    }

    internal TimeSpan ConfigTimeout {
      get {
        if (config_timeout == null) {
          HttpRuntimeSection section = (HttpRuntimeSection)WebConfigurationManager.GetSection ("system.web/httpRuntime");
          config_timeout = section.ExecutionTimeout;
        }

        return (TimeSpan) config_timeout;
      }

      set {
        config_timeout = value;
#if !TARGET_J2EE
        if (timer != null) {
          TimeSpan remaining = value - (DateTime.UtcNow - time_stamp);
          long remaining_ms = Math.Max ((long)remaining.TotalMilliseconds, 0);

          // See http://msdn2.microsoft.com/en-us/library/7hs7492w.aspx
          if (remaining_ms > 4294967294)
            remaining_ms = 4294967294;
          
          timer.Change (remaining_ms, (long)Timeout.Infinite);
        }
#endif
      }
    }

#if NET_4_0
    internal SessionStateBehavior SessionStateBehavior {
      get;
      private set;
    }
#endif
    
#if !TARGET_J2EE
    void TimeoutReached(object state) {
      HttpRuntime.QueuePendingRequest (false);
      if (Interlocked.CompareExchange (ref timeout_possible, 0, 0) == 0) {
        timer.Change(2000, 0);
        return;      
      }
      StopTimeoutTimer();
      
      thread.Abort (new StepTimeout ());
    }
    
    internal void StartTimeoutTimer() {
      thread = Thread.CurrentThread;
      timer = new Timer (TimeoutReached, null, (int)ConfigTimeout.TotalMilliseconds, Timeout.Infinite);
    }
    
    internal void StopTimeoutTimer() {
      if(timer != null) {
        timer.Dispose ();
        timer = null;
      }
    }

    internal bool TimeoutPossible {
      get { return (Interlocked.CompareExchange (ref timeout_possible, 1, 1) == 1); }
    }

    internal void BeginTimeoutPossible ()
    {
      timeout_possible = 1;
    }

    internal void EndTimeoutPossible ()
    {
      Interlocked.CompareExchange (ref timeout_possible, 0, 1);
    }
#endif
#endregion
  }
  
  class StepTimeout
  {
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.