forked from MiniProfiler/dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfiledDbDataReader.cs
More file actions
486 lines (447 loc) · 12.5 KB
/
ProfiledDbDataReader.cs
File metadata and controls
486 lines (447 loc) · 12.5 KB
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
namespace StackExchange.Profiling.Data
{
/// <summary>
/// The profiled database data reader.
/// </summary>
public class ProfiledDbDataReader : DbDataReader
{
/// <summary>
/// The _reader.
/// </summary>
private readonly DbDataReader _reader;
/// <summary>
/// The _profiler.
/// </summary>
private readonly IDbProfiler _profiler;
/// <summary>
/// Initialises a new instance of the <see cref="ProfiledDbDataReader"/> class.
/// </summary>
/// <param name="reader">The reader.</param>
/// <param name="connection">The connection.</param>
/// <param name="profiler">The profiler.</param>
public ProfiledDbDataReader(DbDataReader reader, DbConnection connection, IDbProfiler profiler)
{
_reader = reader;
if (profiler != null)
{
_profiler = profiler;
}
}
/// <summary>
/// Gets the depth.
/// </summary>
public override int Depth
{
get { return _reader.Depth; }
}
/// <summary>
/// Gets the field count.
/// </summary>
public override int FieldCount
{
get { return _reader.FieldCount; }
}
/// <summary>
/// Gets a value indicating whether has rows.
/// </summary>
public override bool HasRows
{
get { return _reader.HasRows; }
}
/// <summary>
/// Gets a value indicating whether is closed.
/// </summary>
public override bool IsClosed
{
get { return _reader.IsClosed; }
}
/// <summary>
/// Gets the records affected.
/// </summary>
public override int RecordsAffected
{
get { return _reader.RecordsAffected; }
}
public DbDataReader WrappedReader
{
get { return _reader; }
}
/// <summary>
/// The
/// </summary>
/// <param name="name">
/// The name.
/// </param>
/// <returns>
/// The <see cref="object"/>.
/// </returns>
public override object this[string name]
{
get { return _reader[name]; }
}
/// <summary>
/// The
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="object"/>.
/// </returns>
public override object this[int ordinal]
{
get { return _reader[ordinal]; }
}
/// <summary>
/// The close.
/// </summary>
public override void Close()
{
// this can occur when we're not profiling, but we've inherited from ProfiledDbCommand and are returning a
// an unwrapped reader from the base command
if (_reader != null)
{
_reader.Close();
}
if (_profiler != null)
{
_profiler.ReaderFinish(this);
}
}
/// <summary>
/// The get boolean.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="bool"/>.
/// </returns>
public override bool GetBoolean(int ordinal)
{
return _reader.GetBoolean(ordinal);
}
/// <summary>
/// The get byte.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="byte"/>.
/// </returns>
public override byte GetByte(int ordinal)
{
return _reader.GetByte(ordinal);
}
/// <summary>
/// The get bytes.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <param name="dataOffset">
/// The data offset.
/// </param>
/// <param name="buffer">
/// The buffer.
/// </param>
/// <param name="bufferOffset">
/// The buffer offset.
/// </param>
/// <param name="length">
/// The length.
/// </param>
/// <returns>
/// The <see cref="long"/>.
/// </returns>
public override long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)
{
return _reader.GetBytes(ordinal, dataOffset, buffer, bufferOffset, length);
}
/// <summary>
/// The get char.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="char"/>.
/// </returns>
public override char GetChar(int ordinal)
{
return _reader.GetChar(ordinal);
}
/// <summary>
/// The get chars.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <param name="dataOffset">
/// The data offset.
/// </param>
/// <param name="buffer">
/// The buffer.
/// </param>
/// <param name="bufferOffset">
/// The buffer offset.
/// </param>
/// <param name="length">
/// The length.
/// </param>
/// <returns>
/// The <see cref="long"/>.
/// </returns>
public override long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)
{
return _reader.GetChars(ordinal, dataOffset, buffer, bufferOffset, length);
}
/// <summary>
/// The get data type name.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public override string GetDataTypeName(int ordinal)
{
return _reader.GetDataTypeName(ordinal);
}
/// <summary>
/// The get date time.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="DateTime"/>.
/// </returns>
public override DateTime GetDateTime(int ordinal)
{
return _reader.GetDateTime(ordinal);
}
/// <summary>
/// The get decimal.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="decimal"/>.
/// </returns>
public override decimal GetDecimal(int ordinal)
{
return _reader.GetDecimal(ordinal);
}
/// <summary>
/// The get double.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="double"/>.
/// </returns>
public override double GetDouble(int ordinal)
{
return _reader.GetDouble(ordinal);
}
/// <summary>
/// The get enumerator.
/// </summary>
/// <returns>
/// The <see cref="IEnumerator{T}"/>.
/// </returns>
public override System.Collections.IEnumerator GetEnumerator()
{
return ((System.Collections.IEnumerable)_reader).GetEnumerator();
}
/// <summary>
/// The get field type.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="Type"/>.
/// </returns>
public override Type GetFieldType(int ordinal)
{
return _reader.GetFieldType(ordinal);
}
/// <summary>
/// The get float.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="float"/>.
/// </returns>
public override float GetFloat(int ordinal)
{
return _reader.GetFloat(ordinal);
}
/// <summary>
/// get the GUID.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="Guid"/>.
/// </returns>
public override Guid GetGuid(int ordinal)
{
return _reader.GetGuid(ordinal);
}
/// <summary>
/// The get integer.
/// </summary>
/// <param name="ordinal">The ordinal.</param>
/// <returns>The <see cref="short"/>.</returns>
public override short GetInt16(int ordinal)
{
return _reader.GetInt16(ordinal);
}
/// <summary>
/// get a 32 bit integer
/// </summary>
/// <param name="ordinal">The ordinal.</param>
/// <returns>
/// The <see cref="int"/>.
/// </returns>
public override int GetInt32(int ordinal)
{
return _reader.GetInt32(ordinal);
}
/// <summary>
/// get a 64 bit integer (long)
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="long"/>.
/// </returns>
public override long GetInt64(int ordinal)
{
return _reader.GetInt64(ordinal);
}
/// <summary>
/// The get name.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public override string GetName(int ordinal)
{
return _reader.GetName(ordinal);
}
/// <summary>
/// The get ordinal.
/// </summary>
/// <param name="name">
/// The name.
/// </param>
/// <returns>
/// The <see cref="int"/>.
/// </returns>
public override int GetOrdinal(string name)
{
return _reader.GetOrdinal(name);
}
/// <summary>
/// The get schema table.
/// </summary>
/// <returns>
/// The <see cref="DataTable"/>.
/// </returns>
public override DataTable GetSchemaTable()
{
return _reader.GetSchemaTable();
}
/// <summary>
/// The get string.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public override string GetString(int ordinal)
{
return _reader.GetString(ordinal);
}
/// <summary>
/// The get value.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="object"/>.
/// </returns>
public override object GetValue(int ordinal)
{
return _reader.GetValue(ordinal);
}
/// <summary>
/// The get values.
/// </summary>
/// <param name="values">
/// The values.
/// </param>
/// <returns>
/// The <see cref="int"/>.
/// </returns>
public override int GetValues(object[] values)
{
return _reader.GetValues(values);
}
/// <summary>
/// the database value null.
/// </summary>
/// <param name="ordinal">
/// The ordinal.
/// </param>
/// <returns>
/// The <see cref="bool"/>.
/// </returns>
public override bool IsDBNull(int ordinal)
{
return _reader.IsDBNull(ordinal);
}
/// <summary>
/// The next result.
/// </summary>
/// <returns>
/// The <see cref="bool"/>.
/// </returns>
public override bool NextResult()
{
return _reader.NextResult();
}
/// <summary>
/// The read.
/// </summary>
/// <returns>
/// The <see cref="bool"/>.
/// </returns>
public override bool Read()
{
return _reader.Read();
}
}
}