QueryOrderGuardNode.cs 2.8 KB

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