dd91330355ed355081c3778ece51e449cb73c7ef
[mono.git] / mcs / class / corlib / System.Threading / WaitHandle.cs
1 //
2 // System.Threading.WaitHandle.cs
3 //
4 // Author:
5 //      Dick Porter (dick@ximian.com)
6 //      Gonzalo Paniagua Javier (gonzalo@ximian.com
7 //
8 // (C) 2002,2003 Ximian, Inc.   (http://www.ximian.com)
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Reflection;
33 using System.Runtime.CompilerServices;
34 using System.Runtime.Remoting.Contexts;
35 using System.Security.Permissions;
36 using System.Runtime.InteropServices;
37 using Microsoft.Win32.SafeHandles;
38 using System.Runtime.ConstrainedExecution;
39
40 namespace System.Threading
41 {
42         [StructLayout (LayoutKind.Sequential)]
43         public abstract partial class WaitHandle
44                 : MarshalByRefObject, IDisposable
45         {
46                 protected static readonly IntPtr InvalidHandle = (IntPtr) (-1);
47
48                 internal const int MaxWaitHandles = 64;
49
50                 static int WaitMultiple(WaitHandle[] waitHandles, int millisecondsTimeout, bool exitContext, bool WaitAll)
51                 {
52                         int release_last = -1;
53
54                         try {
55 #if !DISABLE_REMOTING
56                                 if (exitContext)
57                                         SynchronizationAttribute.ExitContext ();
58 #endif
59
60                                 for (int i = 0; i < waitHandles.Length; ++i) {
61                                         try {
62                                         } finally {
63                                                 /* we have to put it in a finally block, to avoid having a ThreadAbortException
64                                                  * between the return from DangerousAddRef and the assignement to release_last */
65                                                 bool release = false;
66                                                 waitHandles [i].SafeWaitHandle.DangerousAddRef (ref release);
67                                                 release_last = i;
68                                         }
69                                 }
70
71                                 if (WaitAll)
72                                         return WaitAll_internal (waitHandles, millisecondsTimeout);
73                                 else
74                                         return WaitAny_internal (waitHandles, millisecondsTimeout);
75                         } finally {
76                                 for (int i = release_last; i >= 0; --i) {
77                                         waitHandles [i].SafeWaitHandle.DangerousRelease ();
78                                 }
79
80 #if !DISABLE_REMOTING
81                                 if (exitContext)
82                                         SynchronizationAttribute.EnterContext ();
83 #endif
84                         }
85                 }
86
87                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
88                 private static extern int WaitAll_internal(WaitHandle[] handles, int ms);
89
90                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
91                 private static extern int WaitAny_internal(WaitHandle[] handles, int ms);
92
93                 static int WaitOneNative (SafeHandle waitableSafeHandle, uint millisecondsTimeout, bool hasThreadAffinity, bool exitContext)
94                 {
95                         bool release = false;
96                         try {
97 #if !DISABLE_REMOTING
98                                 if (exitContext)
99                                         SynchronizationAttribute.ExitContext ();
100 #endif
101
102                                 waitableSafeHandle.DangerousAddRef (ref release);
103
104                                 return WaitOne_internal (waitableSafeHandle.DangerousGetHandle (), (int) millisecondsTimeout);
105                         } finally {
106                                 if (release)
107                                         waitableSafeHandle.DangerousRelease ();
108
109 #if !DISABLE_REMOTING
110                                 if (exitContext)
111                                         SynchronizationAttribute.EnterContext ();
112 #endif
113                         }
114                 }
115
116                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
117                 static extern int WaitOne_internal(IntPtr handle, int ms);
118
119                 static int SignalAndWaitOne (SafeWaitHandle waitHandleToSignal,SafeWaitHandle waitHandleToWaitOn, int millisecondsTimeout, bool hasThreadAffinity,  bool exitContext)
120                 {
121                         bool releaseHandleToSignal = false, releaseHandleToWaitOn = false;
122                         try {
123                                 waitHandleToSignal.DangerousAddRef (ref releaseHandleToSignal);
124                                 waitHandleToWaitOn.DangerousAddRef (ref releaseHandleToWaitOn);
125
126                                 return SignalAndWait_Internal (waitHandleToSignal.DangerousGetHandle (), waitHandleToWaitOn.DangerousGetHandle (), millisecondsTimeout);
127                         } finally {
128                                 if (releaseHandleToSignal)
129                                         waitHandleToSignal.DangerousRelease ();
130                                 if (releaseHandleToWaitOn)
131                                         waitHandleToWaitOn.DangerousRelease ();
132                         }
133                 }
134
135                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
136                 static extern int SignalAndWait_Internal (IntPtr toSignal, IntPtr toWaitOn, int ms);
137         }
138 }