[bcl] Remove NET_4_0 defines from class libs.
[mono.git] / mcs / class / corlib / System.Threading.Tasks / TaskCompletionQueue.cs
1 //
2 // TaskCompletionQueue.cs
3 //
4 // Authors:
5 //    Jérémie Laval <jeremie dot laval at xamarin dot com>
6 //
7 // Copyright 2011 Xamarin Inc (http://www.xamarin.com).
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26 //
27 //
28
29
30 using System;
31 using System.Threading;
32 using System.Collections.Generic;
33 using System.Collections.Concurrent;
34
35 namespace System.Threading.Tasks
36 {
37         internal struct TaskCompletionQueue<TCompletion> where TCompletion : class
38         {
39                 TCompletion single;
40                 ConcurrentOrderedList<TCompletion> completed;
41
42                 public void Add (TCompletion continuation)
43                 {
44                         if (single == null && Interlocked.CompareExchange (ref single, continuation, null) == null)
45                                 return;
46                         if (completed == null)
47                                 Interlocked.CompareExchange (ref completed, new ConcurrentOrderedList<TCompletion> (), null);
48                         completed.TryAdd (continuation);
49                 }
50
51                 public bool Remove (TCompletion continuation)
52                 {
53                         TCompletion temp = single;
54                         if (temp != null && temp == continuation && Interlocked.CompareExchange (ref single, null, continuation) == continuation)
55                                 return true;
56                         if (completed != null)
57                                 return completed.TryRemove (continuation);
58                         return false;
59                 }
60
61                 public bool HasElements {
62                         get {
63                                 return single != null || (completed != null && completed.Count != 0);
64                         }
65                 }
66
67                 public bool TryGetNextCompletion (out TCompletion continuation)
68                 {
69                         continuation = null;
70
71                         if (single != null && (continuation = Interlocked.Exchange (ref single, null)) != null)
72                                 return true;
73
74                         return completed != null && completed.TryPop (out continuation);
75                 }
76         }
77 }
78