2008-04-23 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web / HttpContext.jvm.cs
1 //\r
2 // System.Web.HttpContext.cs \r
3 //\r
4 // Author:\r
5 //      Eyal Alaluf (eyala@mainsoft.com)\r
6 //\r
7 \r
8 //\r
9 // Copyright (C) 2005 Mainsoft Co. (http://www.mainsoft.com)\r
10 //\r
11 // Permission is hereby granted, free of charge, to any person obtaining\r
12 // a copy of this software and associated documentation files (the\r
13 // "Software"), to deal in the Software without restriction, including\r
14 // without limitation the rights to use, copy, modify, merge, publish,\r
15 // distribute, sublicense, and/or sell copies of the Software, and to\r
16 // permit persons to whom the Software is furnished to do so, subject to\r
17 // the following conditions:\r
18 // \r
19 // The above copyright notice and this permission notice shall be\r
20 // included in all copies or substantial portions of the Software.\r
21 // \r
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
29 //\r
30 \r
31 using System.Collections;\r
32 using System.Configuration;\r
33 using System.Threading;\r
34 using javax.servlet.http;\r
35 using javax.faces.context;\r
36 using System.Web.J2EE;\r
37 using System.Web.UI;\r
38 using javax.servlet;\r
39 using System.Collections.Specialized;\r
40 using Mainsoft.Web;\r
41 \r
42 namespace System.Web {\r
43         \r
44         public sealed partial class HttpContext {\r
45                 static readonly LocalDataStoreSlot _ContextSlot = Thread.GetNamedDataSlot ("Context");\r
46                 // No remoting support (CallContext) yet in Grasshopper\r
47                 [MonoInternalNote("Context - Use System.Remoting.Messaging.CallContext instead of Thread storage")]\r
48                 public static HttpContext Current\r
49                 {\r
50                         get { return (HttpContext) Thread.GetData (_ContextSlot); }\r
51                         set { Thread.SetData (_ContextSlot, value); }\r
52                 }\r
53 \r
54                 public bool IsDebuggingEnabled { get { return false; } }\r
55 \r
56                 internal bool IsServletRequest {\r
57                         get { return ServletRequest != null; }\r
58                 }\r
59 \r
60                 internal object GetWorkerService(Type t)\r
61                 {\r
62                         IServiceProvider prv = WorkerRequest as IServiceProvider;\r
63                         return prv != null ? prv.GetService(t) : null;\r
64                 }\r
65 \r
66                 internal HttpServlet Servlet {\r
67                         get { return (HttpServlet)GetWorkerService(typeof(HttpServlet)); }\r
68                 }\r
69 \r
70                 internal HttpServletRequest ServletRequest {\r
71                         get { return (HttpServletRequest)GetWorkerService(typeof(HttpServletRequest)); }\r
72                 }\r
73                 \r
74                 internal NameValueCollection RequestParameters {\r
75                         get { return (NameValueCollection) GetWorkerService (typeof (NameValueCollection)); }\r
76                 }\r
77 \r
78                 internal HttpServletResponse ServletResponse {\r
79                         get { return (HttpServletResponse)GetWorkerService(typeof(HttpServletResponse)); }\r
80                 }\r
81 \r
82                 HttpRuntime _httpRuntime = null;\r
83                 internal HttpRuntime HttpRuntimeInstance {\r
84                         get\r
85                         {\r
86                                 if (_httpRuntime == null)\r
87                                         _httpRuntime = (HttpRuntime) AppDomain.CurrentDomain.GetData ("HttpRuntime");\r
88                                 return _httpRuntime;\r
89                         }\r
90                 }\r
91 \r
92                 static Hashtable resourceManagerCache\r
93                 {\r
94                         get\r
95                         {\r
96                                 Hashtable cache = (Hashtable) AppDomain.CurrentDomain.GetData ("ResourceManagerCache");\r
97                                 if (cache == null) {\r
98                                         cache = new Hashtable ();\r
99                                         AppDomain.CurrentDomain.SetData ("ResourceManagerCache", cache);\r
100                                 }\r
101                                 return cache;\r
102                         }\r
103                         set\r
104                         {\r
105                                 AppDomain.CurrentDomain.SetData ("ResourceManagerCache", value);\r
106                         }\r
107                 }\r
108 \r
109                 // Timeout is not supported in GH\r
110                 internal bool CheckIfTimeout (DateTime t)\r
111                 {\r
112                         return false;\r
113                 }\r
114 \r
115                 internal bool TimeoutPossible\r
116                 {\r
117                         get { return true; }\r
118                 }\r
119 \r
120                 internal void BeginTimeoutPossible ()\r
121                 {\r
122                 }\r
123 \r
124                 internal void EndTimeoutPossible ()\r
125                 {\r
126                 }\r
127 \r
128                 internal void SetWorkerRequest (HttpWorkerRequest wr) {\r
129                         WorkerRequest = wr;\r
130                         Request.SetWorkerRequest (wr);\r
131                         Response.SetWorkerRequest (wr);\r
132                 }\r
133 \r
134                 private Page _currentHandlerInternal;\r
135                 internal Page CurrentHandlerInternal\r
136                 {\r
137                         get { return _currentHandlerInternal; }\r
138                         set { _currentHandlerInternal = value; }\r
139                 }\r
140         }\r
141 }\r