Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / System.Core / System.Linq.Parallel.QueryNodes / QueryOrderGuardNode.cs
1 // QueryOrderGuardNode.cs
2 //
3 // Author:
4 //       Jérémie "Garuma" Laval <jeremie.laval@gmail.com>
5 //
6 // Copyright (c) 2010 Jérémie "Garuma" Laval
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be included in
16 // all copies or substantial portions of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 // THE SOFTWARE.
25
26 #if NET_4_0 || MOBILE
27 using System;
28 using System.Collections.Generic;
29
30 namespace System.Linq.Parallel.QueryNodes
31 {
32         internal interface QueryOrderGuardNode : IVisitableNode {
33                 bool EnsureOrder { get; }
34         }
35
36         internal abstract class QueryOrderGuardNode<T> : QueryStreamNode<T, T>, QueryOrderGuardNode
37         {
38                 bool ensureOrder;
39
40                 internal QueryOrderGuardNode (QueryBaseNode<T> parent, bool ensureOrder)
41                         : base (parent, ensureOrder)
42                 {
43                         this.ensureOrder = ensureOrder;
44                 }
45
46                 public bool EnsureOrder {
47                         get {
48                                 return ensureOrder;
49                         }
50                 }
51
52                 internal override IEnumerable<T> GetSequential ()
53                 {
54                         return Parent.GetSequential ();
55                 }
56
57                 public override void Visit (INodeVisitor visitor)
58                 {
59                         visitor.Visit ((QueryOrderGuardNode)this);
60                 }
61         }
62
63         internal class QueryAsUnorderedNode<T> : QueryOrderGuardNode<T>
64         {
65                 internal QueryAsUnorderedNode (QueryBaseNode<T> parent)
66                         : base (parent, false)
67                 {
68
69                 }
70
71                 internal override IList<IEnumerable<T>> GetEnumerables (QueryOptions options)
72                 {
73                         return Parent.GetEnumerables (options);
74                 }
75
76                 internal override IList<IEnumerable<KeyValuePair<long, T>>> GetOrderedEnumerables (QueryOptions options)
77                 {
78                         return Parent.GetOrderedEnumerables (options);
79                 }
80
81         }
82
83         internal class QueryAsOrderedNode<T> : QueryOrderGuardNode<T>
84         {
85                 internal QueryAsOrderedNode (QueryBaseNode<T> parent)
86                         : base (parent, true)
87                 {
88
89                 }
90
91                 internal override IList<IEnumerable<T>> GetEnumerables (QueryOptions options)
92                 {
93                         return Parent.GetEnumerables (options);
94                 }
95
96                 internal override IList<IEnumerable<KeyValuePair<long, T>>> GetOrderedEnumerables (QueryOptions options)
97                 {
98                         return Parent.GetOrderedEnumerables (options);
99                 }
100
101         }
102 }
103 #endif