742c30644add915175118d6cee8fbf605ebe5b83
[mono.git] / mcs / class / corlib / System.Threading / ExecutionContext.cs
1 // 
2 // System.Threading.ExecutionContext.cs
3 //
4 // Authors:
5 //      Lluis Sanchez (lluis@novell.com)
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System.Runtime.InteropServices;
31 using System.Runtime.Serialization;
32 using System.Security;
33 using System.Security.Permissions;
34 using System.Runtime.Remoting.Messaging;
35
36 namespace System.Threading {
37         [Serializable]
38         public sealed class ExecutionContext : ISerializable
39 #if NET_4_0
40                 , IDisposable
41 #endif
42         {
43 #if !MOONLIGHT
44                 private SecurityContext _sc;
45 #endif
46                 private LogicalCallContext _lcc;
47                 private bool _suppressFlow;
48                 private bool _capture;
49
50                 internal ExecutionContext ()
51                 {
52                 }
53
54                 internal ExecutionContext (ExecutionContext ec)
55                 {
56 #if !MOONLIGHT
57                         if (ec._sc != null)
58                                 _sc = new SecurityContext (ec._sc);
59 #endif
60                         _suppressFlow = ec._suppressFlow;
61                         _capture = true;
62                 }
63                 
64                 [MonoTODO]
65                 internal ExecutionContext (SerializationInfo info, StreamingContext context)
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 public static ExecutionContext Capture ()
71                 {
72                         return Capture (true);
73                 }
74                 
75                 internal static ExecutionContext Capture (bool captureSyncContext)
76                 {
77                         ExecutionContext ec = Thread.CurrentThread.ExecutionContext;
78                         if (ec.FlowSuppressed)
79                                 return null;
80
81                         ExecutionContext capture = new ExecutionContext (ec);
82 #if !MOONLIGHT
83                         if (SecurityManager.SecurityEnabled)
84                                 capture.SecurityContext = SecurityContext.Capture ();
85 #endif
86 #if !MONOTOUCH
87                         capture.LogicalCallContext = CallContext.CreateLogicalCallContext (false);
88 #endif
89                         return capture;
90                 }
91                 
92                 public ExecutionContext CreateCopy ()
93                 {
94                         if (!_capture)
95                                 throw new InvalidOperationException ();
96
97                         return new ExecutionContext (this);
98                 }
99                 
100 #if NET_4_0
101                 public void Dispose ()
102                 {
103                         if (_sc != null)
104                                 _sc.Dispose ();
105                 }
106 #endif
107
108                 [MonoTODO]
109                 [ReflectionPermission (SecurityAction.Demand, MemberAccess = true)]
110                 public void GetObjectData (SerializationInfo info, StreamingContext context)
111                 {
112                         if (info == null)
113                                 throw new ArgumentNullException ("info");
114                         throw new NotImplementedException ();
115                 }
116                 
117                 // internal stuff
118
119                 internal LogicalCallContext LogicalCallContext {
120                         get {
121                                 if (_lcc == null)
122                                         return new LogicalCallContext ();
123                                 return _lcc;
124                         }
125                         set {
126                                 _lcc = value;
127                         }
128                 }
129
130 #if !MOONLIGHT
131                 internal SecurityContext SecurityContext {
132                         get {
133                                 if (_sc == null)
134                                         _sc = new SecurityContext ();
135                                 return _sc;
136                         }
137                         set { _sc = value; }
138                 }
139 #endif
140                 internal bool FlowSuppressed {
141                         get { return _suppressFlow; }
142                         set { _suppressFlow = value; }
143                 }
144
145                 // Note: Previous to version 2.0 only the CompressedStack and (sometimes!) the WindowsIdentity
146                 // were propagated to new threads. This is why ExecutionContext is internal in before NET_2_0.
147                 // It also means that all newer context classes should be here (i.e. inside the #if NET_2_0).
148
149                 public static bool IsFlowSuppressed ()
150                 {
151                         return Thread.CurrentThread.ExecutionContext.FlowSuppressed;
152                 }
153
154                 public static void RestoreFlow ()
155                 {
156                         ExecutionContext ec = Thread.CurrentThread.ExecutionContext;
157                         if (!ec.FlowSuppressed)
158                                 throw new InvalidOperationException ();
159
160                         ec.FlowSuppressed = false;
161                 }
162
163 #if !MOONLIGHT
164                 [MonoTODO ("only the SecurityContext is considered")]
165                 [SecurityPermission (SecurityAction.LinkDemand, Infrastructure = true)]
166                 public static void Run (ExecutionContext executionContext, ContextCallback callback, object state)
167                 {
168                         if (executionContext == null) {
169                                 throw new InvalidOperationException (Locale.GetText (
170                                         "Null ExecutionContext"));
171                         }
172
173                         // FIXME: supporting more than one context should be done with executionContextSwitcher
174                         // and will requires a rewrite of this method
175                         var callContextCallBack = new ContextCallback (new Action<object> ((ostate) => {
176                                 var originalCallContext = CallContext.CreateLogicalCallContext (true);
177                                 try {
178                                         CallContext.SetCurrentCallContext (executionContext.LogicalCallContext);
179                                         callback (ostate);
180                                 } finally {
181                                         CallContext.SetCurrentCallContext (originalCallContext);
182                                 }
183                         }));
184                         SecurityContext.Run (executionContext.SecurityContext, callContextCallBack, state);
185                 }
186
187                 public static AsyncFlowControl SuppressFlow ()
188                 {
189                         Thread t = Thread.CurrentThread;
190                         t.ExecutionContext.FlowSuppressed = true;
191                         return new AsyncFlowControl (t, AsyncFlowControlType.Execution);
192                 }
193 #endif
194         }
195 }