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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
//------------------------------------------------------------------------------
// <copyright file="RecordManager.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>
//------------------------------------------------------------------------------
namespace System.Data {
using System;
using System.Collections.Generic;
using System.Diagnostics;
internal sealed class RecordManager {
private readonly DataTable table;
private int lastFreeRecord;
private int minimumCapacity = 50;
private int recordCapacity = 0;
private readonly List<int> freeRecordList = new List<int>();
DataRow[] rows;
internal RecordManager(DataTable table) {
if (table == null) {
throw ExceptionBuilder.ArgumentNull("table");
}
this.table = table;
}
private void GrowRecordCapacity() {
if (NewCapacity(recordCapacity) < NormalizedMinimumCapacity(minimumCapacity))
RecordCapacity = NormalizedMinimumCapacity(minimumCapacity);
else
RecordCapacity = NewCapacity(recordCapacity);
// set up internal map : record --> row
DataRow[] newRows = table.NewRowArray(recordCapacity);
if (rows != null) {
Array.Copy(rows, 0, newRows, 0, Math.Min(lastFreeRecord, rows.Length));
}
rows = newRows;
}
internal int LastFreeRecord {
get { return lastFreeRecord; }
}
internal int MinimumCapacity {
get {
return minimumCapacity;
}
set {
if (minimumCapacity != value) {
if (value < 0) {
throw ExceptionBuilder.NegativeMinimumCapacity();
}
minimumCapacity = value;
}
}
}
internal int RecordCapacity {
get {
return recordCapacity;
}
set {
if (recordCapacity != value) {
for (int i = 0; i < table.Columns.Count; i++) {
table.Columns[i].SetCapacity(value);
}
recordCapacity = value;
}
}
}
internal static int NewCapacity(int capacity) {
return (capacity < 128) ? 128 : (capacity + capacity);
}
// Normalization: 64, 256, 1024, 2k, 3k, ....
private int NormalizedMinimumCapacity(int capacity) {
if (capacity < 1024 - 10) {
if (capacity < 256 - 10) {
if ( capacity < 54 )
return 64;
return 256;
}
return 1024;
}
return (((capacity + 10) >> 10) + 1) << 10;
}
internal int NewRecordBase() {
int record;
if (freeRecordList.Count != 0) {
record = freeRecordList[freeRecordList.Count - 1];
freeRecordList.RemoveAt(freeRecordList.Count - 1);
}
else {
if (lastFreeRecord >= recordCapacity) {
GrowRecordCapacity();
}
record = lastFreeRecord;
lastFreeRecord++;
}
Debug.Assert(record >=0 && record < recordCapacity, "NewRecord: Invalid record");
return record;
}
internal void FreeRecord(ref int record) {
Debug.Assert(-1 <= record && record < recordCapacity, "invalid record");
// Debug.Assert(record < lastFreeRecord, "Attempt to Free() <outofbounds> record");
if (-1 != record) {
this[record] = null;
int count = table.columnCollection.Count;
for(int i = 0; i < count; ++i) {
table.columnCollection[i].FreeRecord(record);
}
// if freeing the last record, recycle it
if (lastFreeRecord == record + 1) {
lastFreeRecord--;
}
else if (record < lastFreeRecord) {
// Debug.Assert(-1 == freeRecordList.IndexOf(record), "Attempt to double Free() record");
freeRecordList.Add(record);
}
record = -1;
}
}
internal void Clear(bool clearAll) {
if (clearAll) {
for(int record = 0; record < recordCapacity; ++record) {
rows[record] = null;
}
int count = table.columnCollection.Count;
for(int i = 0; i < count; ++i) {
// SQLBU 415729: Serious performance issue when calling Clear()
// this improves performance by caching the column instead of obtaining it for each row
DataColumn column = table.columnCollection[i];
for(int record = 0; record < recordCapacity; ++record) {
column.FreeRecord(record);
}
}
lastFreeRecord = 0;
freeRecordList.Clear();
}
else { // just clear attached rows
freeRecordList.Capacity = freeRecordList.Count + table.Rows.Count;
for(int record = 0; record < recordCapacity; ++record) {
if (rows[record]!= null && rows[record].rowID != -1) {
int tempRecord = record;
FreeRecord(ref tempRecord);
}
}
}
}
internal DataRow this[int record] {
get {
Debug.Assert(record >= 0 && record < rows.Length, "Invalid record number");
return rows[record];
}
set {
Debug.Assert(record >= 0 && record < rows.Length, "Invalid record number");
rows[record] = value;
}
}
internal void SetKeyValues(int record, DataKey key, object[] keyValues) {
for (int i = 0; i < keyValues.Length; i++) {
key.ColumnsReference[i][record] = keyValues[i];
}
}
// Increases AutoIncrementCurrent
internal int ImportRecord(DataTable src, int record) {
return CopyRecord(src, record, -1);
}
// No impact on AutoIncrementCurrent if over written
internal int CopyRecord(DataTable src, int record, int copy) {
Debug.Assert(src != null, "Can not Merge record without a table");
if (record == -1) {
return copy;
}
int newRecord = -1;
try {
if (copy == -1) {
newRecord = table.NewUninitializedRecord();
}
else {
newRecord = copy;
}
int count = table.Columns.Count;
for (int i = 0; i < count; ++i) {
DataColumn dstColumn = table.Columns[i];
DataColumn srcColumn = src.Columns[dstColumn.ColumnName];
if (null != srcColumn) {
object value = srcColumn[record];
ICloneable cloneableObject = value as ICloneable;
if (null != cloneableObject) {
dstColumn[newRecord] = cloneableObject.Clone();
}
else {
dstColumn[newRecord] = value;
}
}
else if (-1 == copy) {
dstColumn.Init(newRecord);
}
}
}
catch (Exception e){
//
if (Common.ADP.IsCatchableOrSecurityExceptionType(e)) {
if (-1 == copy) {
FreeRecord(ref newRecord);
}
}
throw;
}
return newRecord;
}
internal void SetRowCache(DataRow[] newRows) {
rows = newRows;
lastFreeRecord = rows.Length;
recordCapacity = lastFreeRecord;
}
[Conditional("DEBUG")]
internal void VerifyRecord(int record) {
Debug.Assert((record < lastFreeRecord) && (-1 == freeRecordList.IndexOf(record)), "accesing free record");
Debug.Assert((null == rows[record]) ||
(record == rows[record].oldRecord) ||
(record == rows[record].newRecord) ||
(record == rows[record].tempRecord), "record of a different row");
}
[Conditional("DEBUG")]
internal void VerifyRecord(int record, DataRow row) {
Debug.Assert((record < lastFreeRecord) && (-1 == freeRecordList.IndexOf(record)), "accesing free record");
Debug.Assert((null == rows[record]) || (row == rows[record]), "record of a different row");
}
}
}
|