QueryOrderGuardNode.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // QueryOrderGuardNode.cs
  2. //
  3. // Author:
  4. // Jérémie "Garuma" Laval <[email protected]>
  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. #if NET_4_0
  26. using System;
  27. using System.Collections.Generic;
  28. namespace System.Linq.Parallel.QueryNodes
  29. {
  30. internal interface QueryOrderGuardNode : IVisitableNode {
  31. bool EnsureOrder { get; }
  32. }
  33. internal abstract class QueryOrderGuardNode<T> : QueryStreamNode<T, T>, QueryOrderGuardNode
  34. {
  35. bool ensureOrder;
  36. internal QueryOrderGuardNode (QueryBaseNode<T> parent, bool ensureOrder)
  37. : base (parent, ensureOrder)
  38. {
  39. this.ensureOrder = ensureOrder;
  40. }
  41. public bool EnsureOrder {
  42. get {
  43. return ensureOrder;
  44. }
  45. }
  46. internal override IEnumerable<T> GetSequential ()
  47. {
  48. return Parent.GetSequential ();
  49. }
  50. public override void Visit (INodeVisitor visitor)
  51. {
  52. visitor.Visit ((QueryOrderGuardNode)this);
  53. }
  54. }
  55. internal class QueryAsUnorderedNode<T> : QueryOrderGuardNode<T>
  56. {
  57. internal QueryAsUnorderedNode (QueryBaseNode<T> parent)
  58. : base (parent, false)
  59. {
  60. }
  61. internal override IList<IEnumerable<T>> GetEnumerables (QueryOptions options)
  62. {
  63. return Parent.GetEnumerables (options);
  64. }
  65. internal override IList<IEnumerable<KeyValuePair<long, T>>> GetOrderedEnumerables (QueryOptions options)
  66. {
  67. return Parent.GetOrderedEnumerables (options);
  68. }
  69. }
  70. internal class QueryAsOrderedNode<T> : QueryOrderGuardNode<T>
  71. {
  72. internal QueryAsOrderedNode (QueryBaseNode<T> parent)
  73. : base (parent, true)
  74. {
  75. }
  76. internal override IList<IEnumerable<T>> GetEnumerables (QueryOptions options)
  77. {
  78. return Parent.GetEnumerables (options);
  79. }
  80. internal override IList<IEnumerable<KeyValuePair<long, T>>> GetOrderedEnumerables (QueryOptions options)
  81. {
  82. return Parent.GetOrderedEnumerables (options);
  83. }
  84. }
  85. }
  86. #endif