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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
|
//
// Copyright (C) 2008 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections;
using System.Reflection;
#if !FULL_AOT_RUNTIME
using System.Reflection.Emit;
#endif
namespace System.Data.Common
{
internal abstract class DataContainer {
BitArray null_values;
System.Type _type;
DataColumn _column;
// implementing class protocol
protected internal abstract object GetValue (int index);
internal abstract long GetInt64 (int index);
// used to set the array value to something neutral when the corresponding item is null (in the database sense)
// note: we don't actually ever look at the value written there, but the GC may like us to avoid keeping stale
// values in the array.
protected abstract void ZeroOut (int index);
protected abstract void SetValue (int index, object value);
protected abstract void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field);
protected abstract void DoCopyValue (DataContainer from, int from_index, int to_index);
protected abstract int DoCompareValues (int index1, int index2);
protected abstract void Resize (int length);
internal object this [int index] {
get { return IsNull (index) ? DBNull.Value : GetValue (index); }
set {
if (value == null) {
// Table might not have a default values row to copy from
if (Column.Table.DefaultValuesRowIndex == -1) {
ZeroOut (index);
null_values [index] = true;
} else {
CopyValue (Column.Table.DefaultValuesRowIndex, index);
}
return;
}
bool is_dbnull = value == DBNull.Value;
if (is_dbnull)
ZeroOut (index);
else
SetValue (index, value);
null_values [index] = is_dbnull;
}
}
internal int Capacity {
get { return null_values != null ? null_values.Count : 0; }
set {
int old_capacity = Capacity;
if (value == old_capacity)
return;
if (null_values == null)
null_values = new BitArray (value);
else
null_values.Length = value;
Resize (value);
}
}
internal Type Type {
get { return _type; }
}
protected DataColumn Column {
get { return _column; }
}
internal static DataContainer Create (Type type, DataColumn column)
{
DataContainer container;
switch (Type.GetTypeCode(type)) {
case TypeCode.Int16:
container = new Int16DataContainer ();
break;
case TypeCode.Int32:
container = new Int32DataContainer ();
break;
case TypeCode.Int64:
container = new Int64DataContainer ();
break;
case TypeCode.String:
container = new StringDataContainer ();
break;
case TypeCode.Boolean:
container = new BitDataContainer ();
break;
case TypeCode.Byte:
container = new ByteDataContainer ();
break;
case TypeCode.Char:
container = new CharDataContainer ();
break;
case TypeCode.Double:
container = new DoubleDataContainer ();
break;
case TypeCode.SByte:
container = new SByteDataContainer ();
break;
case TypeCode.Single:
container = new SingleDataContainer ();
break;
case TypeCode.UInt16:
container = new UInt16DataContainer ();
break;
case TypeCode.UInt32:
container = new UInt32DataContainer ();
break;
case TypeCode.UInt64:
container = new UInt64DataContainer ();
break;
case TypeCode.DateTime:
container = new DateTimeDataContainer ();
break;
case TypeCode.Decimal:
container = new DecimalDataContainer ();
break;
default:
container = new ObjectDataContainer ();
break;
}
container._type = type;
container._column = column;
return container;
}
internal static object GetExplicitValue (object value)
{
Type valueType = value.GetType ();
MethodInfo method = valueType.GetMethod ("op_Explicit", new Type[]{valueType});
if (method != null)
return (method.Invoke (value, new object[]{value}));
return null;
}
internal object GetContainerData (object value)
{
object obj;
TypeCode tc;
if (value == null)
return null;
if (_type.IsInstanceOfType (value)) {
return value;
} else if ((tc = Type.GetTypeCode (_type)) == TypeCode.String) {
return (Convert.ToString (value));
} else if (value is IConvertible) {
switch (tc) {
case TypeCode.Int16:
return (Convert.ToInt16 (value));
case TypeCode.Int32:
return (Convert.ToInt32 (value));
case TypeCode.Int64:
return (Convert.ToInt64 (value));
case TypeCode.Boolean:
return (Convert.ToBoolean (value));
case TypeCode.Byte:
return (Convert.ToByte (value));
case TypeCode.Char:
return (Convert.ToChar (value));
case TypeCode.Double:
return (Convert.ToDouble (value));
case TypeCode.SByte:
return (Convert.ToSByte (value));
case TypeCode.Single:
return (Convert.ToSingle (value));
case TypeCode.UInt16:
return (Convert.ToUInt16 (value));
case TypeCode.UInt32:
return (Convert.ToUInt32 (value));
case TypeCode.UInt64:
return (Convert.ToUInt64 (value));
case TypeCode.DateTime:
if (value == DBNull.Value)
return DBNull.Value;
return (Convert.ToDateTime (value));
case TypeCode.Decimal:
return (Convert.ToDecimal (value));
default:
throw new InvalidCastException (string.Format ("Cannot convert from {0} to {1}", value.GetType ().FullName, _type.FullName));
}
} else if ((obj = GetExplicitValue (value)) != null) {
return (obj);
} else {
throw new InvalidCastException ();
}
}
internal bool IsNull (int index)
{
return null_values == null || null_values [index];
}
internal void FillValues (int fromIndex)
{
for (int i = 0; i < Capacity; i++)
CopyValue (fromIndex, i);
}
internal void CopyValue (int from_index, int to_index)
{
CopyValue (this, from_index, to_index);
}
internal void CopyValue (DataContainer from, int from_index, int to_index)
{
DoCopyValue (from, from_index, to_index);
null_values [to_index] = from.null_values [from_index];
}
internal void SetItemFromDataRecord (int index, IDataRecord record, int field)
{
if (record.IsDBNull (field))
this [index] = DBNull.Value;
else if (record is ISafeDataRecord)
SetValueFromSafeDataRecord (index, (ISafeDataRecord) record, field);
else
this [index] = record.GetValue (field);
}
internal int CompareValues (int index1, int index2)
{
bool null1 = IsNull (index1);
bool null2 = IsNull (index2);
if (null1 == null2)
return null1 ? 0 : DoCompareValues (index1, index2);
return null1 ? -1 : 1;
}
}
sealed class BitDataContainer : DataContainer {
BitArray _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = false;
}
protected override void SetValue (int index, object value)
{
_values [index] = (bool) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetBooleanSafe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (bool) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
bool val1 = _values [index1];
bool val2 = _values [index2];
return val1 == val2 ? 0 : val1 ? 1 : -1;
}
protected override void Resize (int size)
{
if (_values == null)
_values = new BitArray (size);
else
_values.Length = size;
}
internal override long GetInt64 (int index)
{
return Convert.ToInt64 (_values [index]);
}
}
sealed class CharDataContainer : DataContainer {
char [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = '\0';
}
protected override void SetValue (int index, object value)
{
_values [index] = (char) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetCharSafe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (char) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
char val1 = _values [index1];
char val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new char [size];
return;
}
char[] tmp = new char [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return Convert.ToInt64 (_values [index]);
}
}
sealed class ByteDataContainer : DataContainer {
byte [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (byte) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetByteSafe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (byte) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
int val1 = _values [index1];
int val2 = _values [index2];
return val1 - val2;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new byte [size];
return;
}
byte[] tmp = new byte [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class SByteDataContainer : DataContainer {
sbyte [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (sbyte) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = (sbyte) record.GetByteSafe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (sbyte) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
int val1 = _values [index1];
int val2 = _values [index2];
return val1 - val2;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new sbyte [size];
return;
}
sbyte[] tmp = new sbyte [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class Int16DataContainer : DataContainer {
short [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (short) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetInt16Safe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (short) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
int val1 = _values [index1];
int val2 = _values [index2];
return val1 - val2;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new short [size];
return;
}
short[] tmp = new short [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class UInt16DataContainer : DataContainer {
ushort [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (ushort) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = (ushort) record.GetInt16Safe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (ushort) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
int val1 = _values [index1];
int val2 = _values [index2];
return val1 - val2;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new ushort [size];
return;
}
ushort[] tmp = new ushort [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class Int32DataContainer : DataContainer {
int [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (int) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetInt32Safe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (int) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
int val1 = _values [index1];
int val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new int [size];
return;
}
int[] tmp = new int [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class UInt32DataContainer : DataContainer {
uint [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (uint) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = (uint) record.GetInt32Safe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (uint) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
uint val1 = _values [index1];
uint val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new uint [size];
return;
}
uint[] tmp = new uint [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class Int64DataContainer : DataContainer {
long [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (long) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetInt64Safe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (long) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
long val1 = _values [index1];
long val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new long [size];
return;
}
long[] tmp = new long [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return _values [index];
}
}
sealed class UInt64DataContainer : DataContainer {
ulong [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (ulong) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = (ulong) record.GetInt64Safe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (ulong) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
ulong val1 = _values [index1];
ulong val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new ulong [size];
return;
}
ulong[] tmp = new ulong [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return Convert.ToInt64 (_values [index]);
}
}
sealed class SingleDataContainer : DataContainer {
float [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (float) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetFloatSafe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (float) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
float val1 = _values [index1];
float val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new float [size];
return;
}
float[] tmp = new float [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return Convert.ToInt64 (_values [index]);
}
}
sealed class DoubleDataContainer : DataContainer {
double [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = 0;
}
protected override void SetValue (int index, object value)
{
_values [index] = (double) GetContainerData (value);
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetDoubleSafe (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = (double) GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
double val1 = _values [index1];
double val2 = _values [index2];
return val1 == val2 ? 0 : val1 < val2 ? -1 : 1;
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new double [size];
return;
}
double[] tmp = new double [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return Convert.ToInt64 (_values[index]);
}
}
class ObjectDataContainer : DataContainer {
object [] _values;
protected internal override object GetValue (int index)
{
return _values [index];
}
protected override void ZeroOut (int index)
{
_values [index] = null;
}
protected override void SetValue (int index, object value)
{
_values [index] = value;
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
_values [index] = record.GetValue (field);
}
protected override void DoCopyValue (DataContainer from, int from_index, int to_index)
{
_values [to_index] = GetContainerData (from.GetValue (from_index));
}
protected override int DoCompareValues (int index1, int index2)
{
object obj1 = _values [index1];
object obj2 = _values [index2];
if (obj1 == obj2)
return 0;
if (obj1 is IComparable) {
try {
return ((IComparable)obj1).CompareTo (obj2);
} catch {
if (obj2 is IComparable) {
obj2 = Convert.ChangeType (obj2, Type.GetTypeCode (obj1.GetType ()));
return ((IComparable)obj1).CompareTo (obj2);
}
}
}
return String.Compare (obj1.ToString (), obj2.ToString ());
}
protected override void Resize (int size)
{
if (_values == null) {
_values = new object [size];
return;
}
object[] tmp = new object [size];
Array.Copy (_values, 0, tmp, 0, _values.Length);
_values = tmp;
}
internal override long GetInt64 (int index)
{
return Convert.ToInt64 (_values [index]);
}
}
sealed class DateTimeDataContainer : ObjectDataContainer {
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
base.SetValue (index, record.GetDateTimeSafe (field));
}
protected override void SetValue (int index, object value)
{
base.SetValue (index, GetContainerData (value));
}
}
sealed class DecimalDataContainer : ObjectDataContainer {
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
base.SetValue (index, record.GetDecimalSafe (field));
}
protected override void SetValue (int index, object value)
{
base.SetValue (index, GetContainerData (value));
}
}
sealed class StringDataContainer : ObjectDataContainer {
private void SetValue (int index, string value)
{
if (value != null && Column.MaxLength >= 0 && Column.MaxLength < value.Length)
throw new ArgumentException ("Cannot set column '" + Column.ColumnName + "' to '" + value + "'. The value violates the MaxLength limit of this column.");
base.SetValue (index, value);
}
protected override void SetValue (int index, object value)
{
SetValue (index, (string) GetContainerData (value));
}
protected override void SetValueFromSafeDataRecord (int index, ISafeDataRecord record, int field)
{
SetValue (index, record.GetStringSafe (field));
}
protected override int DoCompareValues (int index1, int index2)
{
DataTable table = Column.Table;
return String.Compare ((string) this [index1], (string) this [index2], !table.CaseSensitive, table.Locale);
}
}
}
|