2007-12-16 Igor Zelmanovich <igorz@mainsoft.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 vmw.@internal.j2ee;\r
36 using javax.faces.context;\r
37 using System.Web.J2EE;\r
38 using System.Web.UI;\r
39 using javax.servlet;\r
40 using System.Collections.Specialized;\r
41 using Mainsoft.Web;\r
42 \r
43 namespace System.Web {\r
44         \r
45         public sealed partial class HttpContext : IHttpExtendedContext\r
46         {\r
47                 static readonly LocalDataStoreSlot _ContextSlot = Thread.GetNamedDataSlot ("Context");\r
48                 //string _PortletNamespace;\r
49                 // No remoting support (CallContext) yet in Grasshopper\r
50                 [MonoInternalNote("Context - Use System.Remoting.Messaging.CallContext instead of Thread storage")]\r
51                 public static HttpContext Current\r
52                 {\r
53                         get { return (HttpContext) Thread.GetData (_ContextSlot); }\r
54                         set { Thread.SetData (_ContextSlot, value); }\r
55                 }\r
56 \r
57                 public bool IsDebuggingEnabled { get { return false; } }\r
58 \r
59                 internal object GetWorkerService(Type t)\r
60                 {\r
61                         IServiceProvider prv = WorkerRequest as IServiceProvider;\r
62                         return prv != null ? prv.GetService(t) : null;\r
63                 }\r
64 \r
65                 internal HttpServlet Servlet {\r
66                         get { return (HttpServlet)GetWorkerService(typeof(HttpServlet)); }\r
67                 }\r
68 \r
69                 internal HttpServletRequest ServletRequest {\r
70                         get { return (HttpServletRequest)GetWorkerService(typeof(HttpServletRequest)); }\r
71                 }\r
72                 \r
73                 internal NameValueCollection RequestParameters {\r
74                         get { return (NameValueCollection) GetWorkerService (typeof (NameValueCollection)); }\r
75                 }\r
76 \r
77                 internal HttpServletResponse ServletResponse {\r
78                         get { return (HttpServletResponse)GetWorkerService(typeof(HttpServletResponse)); }\r
79                 }\r
80 \r
81                 //static readonly Type typeOfFacesContext = typeof (FacesContext);\r
82                 //internal FacesContext FacesContext {\r
83                 //    get {\r
84                 //        FacesContext faces = (FacesContext) GetWorkerService (typeOfFacesContext);\r
85                 //        return faces ?? javax.faces.context.FacesContext.getCurrentInstance ();\r
86                 //    }\r
87                 //}\r
88 \r
89                 HttpRuntime _httpRuntime = null;\r
90                 internal HttpRuntime HttpRuntimeInstance {\r
91                         get\r
92                         {\r
93                                 if (_httpRuntime == null)\r
94                                         _httpRuntime = (HttpRuntime) AppDomain.CurrentDomain.GetData ("HttpRuntime");\r
95                                 return _httpRuntime;\r
96                         }\r
97                 }\r
98 \r
99                 // Timeout is not supported in GH\r
100                 internal bool CheckIfTimeout (DateTime t)\r
101                 {\r
102                         return false;\r
103                 }\r
104 \r
105                 internal bool TimeoutPossible\r
106                 {\r
107                         get { return true; }\r
108                 }\r
109 \r
110                 //internal bool IsActionRequest {\r
111                 //    get {\r
112                 //        FacesContext faces = FacesContext;\r
113                 //        return faces != null && !faces.getRenderResponse ();\r
114                 //    }\r
115                 //}\r
116                 //internal bool IsServletRequest {\r
117                 //    get {\r
118                 //        return ServletRequest!=null;\r
119                 //    }\r
120                 //}\r
121 \r
122                 //internal bool IsFacesRequest {\r
123                 //    get {\r
124                 //        return FacesContext != null;\r
125                 //    }\r
126                 //}\r
127 \r
128                 //internal string PortletNamespace\r
129                 //{\r
130                 //    get {\r
131                 //        if (_PortletNamespace == null) {\r
132                 //            FacesContext faces = null;\r
133 \r
134                 //            //kostat: BUGBUG: complete\r
135                 //            //string usePortletNamespace = J2EEUtils.GetInitParameterByHierarchy (Context.Servlet.getServletConfig (), "mainsoft.use.portlet.namespace");\r
136                 //            //if (usePortletNamespace == null || Boolean.Parse (usePortletNamespace))\r
137                 //                faces = FacesContext;\r
138 \r
139                 //            if (faces != null) {\r
140                 //                _PortletNamespace = faces.getExternalContext ().encodeNamespace (String.Empty);\r
141                 //            }\r
142                                         \r
143                 //            _PortletNamespace = _PortletNamespace ?? String.Empty;\r
144                 //        }\r
145                 //        return _PortletNamespace;\r
146                 //    }\r
147                 //}\r
148 \r
149                 internal void BeginTimeoutPossible ()\r
150                 {\r
151                 }\r
152 \r
153                 internal void EndTimeoutPossible ()\r
154                 {\r
155                 }\r
156 \r
157                 internal void SetWorkerRequest (HttpWorkerRequest wr) {\r
158                         WorkerRequest = wr;\r
159                         Request.SetWorkerRequest (wr);\r
160                         Response.SetWorkerRequest (wr);\r
161                 }\r
162 \r
163                 #region IHttpExtendedContext Members\r
164 \r
165                 bool IHttpExtendedContext.IsProcessingInclude {\r
166                         get { return IsProcessingInclude; }\r
167                 }\r
168 \r
169                 #endregion\r
170         }\r
171 }\r