QueryOrderGuardNode.cs 2.7 KB

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