1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
//------------------------------------------------------------------------------
// <copyright file="EnumerableDataTable.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
// <owner current="true" primary="false">Microsoft</owner>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Data;
using System.Linq;
using System.Diagnostics;
namespace System.Data
{
/// <summary>
/// This class represents a combined sort expression build using mutiple sort expressions.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class SortExpressionBuilder<T> : IComparer<List<object>>
{
/**
* This class ensures multiple orderby/thenbys are handled correctly. Its semantics is as follows:
*
* Query 1:
* orderby a
* thenby b
* orderby c
* orderby d
* thenby e
*
* is equivalent to:
*
* Query 2:
* orderby d
* thenby e
* thenby c
* thenby a
* thenby b
*
**/
//Selectors and comparers are mapped using the index in the list.
//E.g: _comparers[i] is used with _selectors[i]
LinkedList<Func<T, object>> _selectors = new LinkedList<Func<T, object>>();
LinkedList<Comparison<object>> _comparers = new LinkedList<Comparison<object>>();
LinkedListNode<Func<T, object>> _currentSelector = null;
LinkedListNode<Comparison<object>> _currentComparer = null;
/// <summary>
/// Adds a sorting selector/comparer in the correct order
/// </summary>
internal void Add(Func<T, object> keySelector, Comparison<object> compare, bool isOrderBy)
{
Debug.Assert(keySelector != null);
Debug.Assert(compare != null);
//Inputs are assumed to be valid. The burden for ensuring it is on the caller.
if (isOrderBy)
{
_currentSelector = _selectors.AddFirst(keySelector);
_currentComparer = _comparers.AddFirst(compare);
}
else
{
//ThenBy can only be called after OrderBy
Debug.Assert(_currentSelector != null);
Debug.Assert(_currentComparer != null);
_currentSelector = _selectors.AddAfter(_currentSelector, keySelector);
_currentComparer = _comparers.AddAfter(_currentComparer, compare);
}
}
/// <summary>
/// Represents a Combined selector of all selectors added thusfar.
/// </summary>
/// <returns>List of 'objects returned by each selector'. This list is the combined-selector</returns>
public List<object> Select(T row)
{
List<object> result = new List<object>();
foreach (Func<T, object> selector in _selectors)
{
result.Add(selector(row));
}
return result;
}
/// <summary>
/// Represents a Comparer (of IComparer) that compares two combined-selectors using
/// provided comparers for each individual selector.
/// Note: Comparison is done in the order it was Added.
/// </summary>
/// <returns>Comparison result of the combined Sort comparer expression</returns>
public int Compare(List<object> a, List<object> b)
{
Debug.Assert(a.Count == Count);
int i = 0;
foreach (Comparison<object> compare in _comparers)
{
int result = compare(a[i], b[i]);
if (result != 0)
{
return result;
}
i++;
}
return 0;
}
internal int Count
{
get
{
Debug.Assert(_selectors.Count == _comparers.Count); //weak now that we have two dimensions
return _selectors.Count;
}
}
/// <summary>
/// Clones the SortexpressionBuilder and returns a new object
/// that points to same comparer and selectors (in the same order).
/// </summary>
/// <returns></returns>
internal SortExpressionBuilder<T> Clone()
{
SortExpressionBuilder<T> builder = new SortExpressionBuilder<T>();
foreach (Func<T, object> selector in _selectors)
{
if (selector == _currentSelector.Value)
{
builder._currentSelector = builder._selectors.AddLast(selector);
}
else
{
builder._selectors.AddLast(selector);
}
}
foreach (Comparison<object> comparer in _comparers)
{
if (comparer == _currentComparer.Value)
{
builder._currentComparer = builder._comparers.AddLast(comparer);
}
else
{
builder._comparers.AddLast(comparer);
}
}
return builder;
}
/// <summary>
/// Clones the SortExpressinBuilder and casts to type TResult.
/// </summary>
internal SortExpressionBuilder<TResult> CloneCast<TResult>()
{
SortExpressionBuilder<TResult> builder = new SortExpressionBuilder<TResult>();
foreach (Func<T, object> selector in _selectors)
{
if (selector == _currentSelector.Value)
{
builder._currentSelector = builder._selectors.AddLast(r => selector((T)(object)r));
}
else
{
builder._selectors.AddLast(r => selector((T)(object)r));
}
}
foreach (Comparison<object> comparer in _comparers)
{
if (comparer == _currentComparer.Value)
{
builder._currentComparer = builder._comparers.AddLast(comparer);
}
else
{
builder._comparers.AddLast(comparer);
}
}
return builder;
}
} //end SortExpressionBuilder<T>
}
|