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 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
|
'
' ObjectType.vb
'
' Author:
' Mizrahi Rafael (rafim@mainsoft.com)
' Guy Cohen (guyc@mainsoft.com)
'
' Copyright (C) 2002-2006 Mainsoft Corporation.
' Copyright (C) 2004-2006 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.
Imports System
Namespace Microsoft.VisualBasic.CompilerServices
<System.ComponentModel.EditorBrowsable(ComponentModel.EditorBrowsableState.Never)> _
Public NotInheritable Class ObjectType
Public Sub New()
End Sub
Private Shared Function BiggestTypeCode(ByVal obj1 As System.Object, ByVal obj2 As System.Object) As System.TypeCode
Dim type1 As Type = obj1.GetType()
Dim type2 As Type = obj2.GetType()
Dim LTypeFound As TypeCode
Dim TC1 As TypeCode = Type.GetTypeCode(type1)
Dim TC2 As TypeCode = Type.GetTypeCode(type2)
Select Case TC1
Case TypeCode.Boolean
If (TC2 = TypeCode.Byte) Then
LTypeFound = TC1
ElseIf (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC2
End If
Case TypeCode.Byte
If (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC2
End If
Case TypeCode.Int16
If (TC2 = TypeCode.Boolean) Or (TC2 = TypeCode.Byte) Then
LTypeFound = TC1
ElseIf (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC2
End If
Case TypeCode.Int32
If (TC2 = TypeCode.Boolean) Or (TC2 = TypeCode.Byte) Or (TC2 = TypeCode.Int16) Then
LTypeFound = TC1
ElseIf (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC2
End If
Case TypeCode.Int64
If (TC2 = TypeCode.Single) Or (TC2 = TypeCode.Double) Or (TC2 = TypeCode.Decimal) Then
LTypeFound = TC1
ElseIf (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC2
End If
Case TypeCode.Decimal
If (TC2 = TypeCode.Single) Or (TC2 = TypeCode.Double) Then
LTypeFound = TC2
ElseIf (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC1
End If
Case TypeCode.Single
If (TC2 = TypeCode.Single) Or (TC2 = TypeCode.Double) Then
LTypeFound = TC2
ElseIf (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC1
End If
Case TypeCode.Double
If (TC2 = TypeCode.String) Then
LTypeFound = TypeCode.Double
Else
LTypeFound = TC1
End If
Case TypeCode.String
LTypeFound = TypeCode.Double
End Select
Return LTypeFound
End Function
Public Shared Function ObjTst(ByVal o1 As System.Object, ByVal o2 As System.Object, ByVal TextCompare As System.Boolean) As System.Int32
Dim b1 As Byte
Dim b2 As Byte
Dim bool1 As Boolean
Dim bool2 As Boolean
Dim dbl1 As Double
Dim dbl2 As Double
Dim f1 As Single
Dim f2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
Dim dt1 As Date
Dim dt2 As Date
Dim s1 As String
Dim s2 As String
Dim c1 As Char
Dim c2 As Char
' comparing null objects
' if both are null, return 0
' if one is a type, convert the other to its 'null value'
If (o1 Is Nothing) And (o2 Is Nothing) Then
Return 0
End If
If (o1 Is Nothing) Then
o1 = CreateNullObjectType(o2)
End If
If (o2 Is Nothing) Then
o2 = CreateNullObjectType(o1)
End If
'FIXME: Add ElseIf implementation for all types
If (TypeOf o1 Is Double) Or (TypeOf o2 Is Double) Then
dbl1 = Convert.ToDouble(o1)
dbl2 = Convert.ToDouble(o2)
If dbl1 < dbl2 Then
Return -1
End If
If dbl1 > dbl2 Then
Return 1
End If
'If dbl1 = dbl2
Return 0
ElseIf (TypeOf o1 Is Single) Or (TypeOf o2 Is Single) Then
f1 = Convert.ToSingle(o1)
f2 = Convert.ToSingle(o2)
If f1 < f2 Then
Return -1
End If
If f1 > f2 Then
Return 1
End If
'If f1 = f2
Return 0
ElseIf (TypeOf o1 Is Decimal) Or (TypeOf o2 Is Decimal) Then
dec1 = Convert.ToDecimal(o1)
dec2 = Convert.ToDecimal(o2)
If dec1 < dec2 Then
Return -1
End If
If dec1 > dec2 Then
Return 1
End If
'If dec1 = dec2
Return 0
ElseIf (TypeOf o1 Is Long) Or (TypeOf o2 Is Long) Then
l1 = Convert.ToInt64(o1)
l2 = Convert.ToInt64(o2)
If l1 < l2 Then
Return -1
End If
If l1 > l2 Then
Return 1
End If
'If l1 = l2
Return 0
ElseIf (TypeOf o1 Is Integer) Or (TypeOf o2 Is Integer) Then
i1 = Convert.ToInt32(o1)
i2 = Convert.ToInt32(o2)
If i1 < i2 Then
Return -1
End If
If i1 > i2 Then
Return 1
End If
'If i1 = i2
Return 0
ElseIf (TypeOf o1 Is Short) Or (TypeOf o2 Is Short) Then
short1 = Convert.ToInt16(o1)
short2 = Convert.ToInt16(o2)
If short1 < short2 Then
Return -1
End If
If short1 > short2 Then
Return 1
End If
'If short1 = short2
Return 0
ElseIf (TypeOf o1 Is Date) Or (TypeOf o2 Is Date) Then
dt1 = DateType.FromObject(o1)
dt2 = DateType.FromObject(o2)
Return dt1.CompareTo(dt2)
ElseIf (TypeOf o1 Is String) Or (TypeOf o2 Is String) Then
s1 = Convert.ToString(o1)
s2 = Convert.ToString(o2)
Return s1.CompareTo(s2)
ElseIf (TypeOf o1 Is Char) Or (TypeOf o2 Is Char) Then
c1 = Convert.ToChar(o1)
c2 = Convert.ToChar(o2)
Return c1.CompareTo(c2)
ElseIf (TypeOf o1 Is Byte) Or (TypeOf o2 Is Byte) Then
b1 = Convert.ToByte(o1)
b2 = Convert.ToByte(o2)
Return b1.CompareTo(b2)
ElseIf (TypeOf o1 Is Boolean) Or (TypeOf o2 Is Boolean) Then
bool1 = Convert.ToBoolean(o1)
bool2 = Convert.ToBoolean(o2)
Return bool1.CompareTo(bool2)
Else ' Not implemented case
Throw GetCaseNotImplemented()
End If
End Function
Friend Shared Function GetCaseNotImplemented() As System.Exception
Return New NotImplementedException("This case is not handled")
End Function
Friend Shared Function GetCaseNotImplemented(ByVal msg As System.String) As System.Exception
Return New NotImplementedException(msg)
End Function
Public Shared Function PlusObj(ByVal obj As System.Object) As System.Object
Throw New NotImplementedException
End Function
Public Shared Function NegObj(ByVal obj As System.Object) As System.Object
Dim TC1 As TypeCode = Type.GetTypeCode(obj.GetType())
Select Case (TC1)
Case TypeCode.Boolean
'' VB True is anyway -1
Return ((ShortType.FromObject(obj)))
Case TypeCode.Byte
Return (-1 * (ByteType.FromObject(obj)))
Case TypeCode.Double
Return (-1 * (DoubleType.FromObject(obj)))
Case TypeCode.Decimal
Return (-1 * (DecimalType.FromObject(obj)))
Case TypeCode.Int32
Return (-1 * (IntegerType.FromObject(obj)))
Case TypeCode.Int16
Return (-1S * (ShortType.FromObject(obj)))
Case TypeCode.Int64
Return (-1 * (LongType.FromObject(obj)))
Case TypeCode.Single
Return (-1 * (SingleType.FromObject(obj)))
Case TypeCode.String
Dim dbl1 As Double = Convert.ToDouble(obj)
Return (Convert.ToString(-1 * DoubleType.FromObject(obj)))
Case Else
Throw GetCaseNotImplemented()
End Select
End Function
Public Shared Function NotObj(ByVal obj As System.Object) As System.Object
If obj Is Nothing Then
Return Nothing
End If
'Dim type1 As Type = obj.GetType()
' Type.GetTypeCode(type1)
Return Not BooleanType.FromObject(obj)
Throw New InvalidCastException
End Function
Public Shared Function BitAndObj(ByVal obj1 As System.Object, ByVal obj2 As System.Object) As System.Object
Dim dbl1 As Double
Dim dbl2 As Double
Dim sn1 As Single
Dim sn2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
'' FIXME: return typecode should be the second obj's typecode
'' and not int32 all the time
If (obj1 Is Nothing) Then
Return 0
End If
If (obj2 Is Nothing) Then
Return 0
End If
Dim TC1 As TypeCode = Type.GetTypeCode(obj1.GetType())
Dim TC2 As TypeCode = Type.GetTypeCode(obj2.GetType())
'' select the TypeCode to return
Dim LTypeFound As TypeCode = BiggestTypeCode(obj1, obj2)
Select Case (LTypeFound)
Case TypeCode.Boolean
Return ((BooleanType.FromObject(obj1)) And (Convert.ToBoolean(obj2)))
Case TypeCode.Byte
Return ((ByteType.FromObject(obj1)) And (Convert.ToByte(obj2)))
Case TypeCode.Double
If TC1 = TypeCode.Boolean Then
dbl1 = -1 * Convert.ToDouble(obj1)
Else
dbl1 = Convert.ToDouble(obj1)
End If
If TC2 = TypeCode.Boolean Then
dbl2 = -1 * Convert.ToDouble(obj2)
Else
dbl2 = Convert.ToDouble(obj2)
End If
Return (Convert.ToInt64(dbl1) And Convert.ToInt64(dbl2))
Case TypeCode.Decimal
If TC1 = TypeCode.Boolean Then
dec1 = -1 * Convert.ToDecimal(obj1)
Else
dec1 = Convert.ToDecimal(obj1)
End If
If TC2 = TypeCode.Boolean Then
dec2 = -1 * Convert.ToDecimal(obj2)
Else
dec2 = Convert.ToDecimal(obj2)
End If
Return (Convert.ToInt64(dec1) And Convert.ToInt64(dec2))
Case TypeCode.Int32
If TC1 = TypeCode.Boolean Then
i1 = -1 * Convert.ToInt32(obj1)
Else
i1 = Convert.ToInt32(obj1)
End If
If TC2 = TypeCode.Boolean Then
i2 = -1 * Convert.ToInt32(obj2)
Else
i2 = Convert.ToInt32(obj2)
End If
Return (Convert.ToInt32(i1) And Convert.ToInt32(i2))
Case TypeCode.Int16
If TC1 = TypeCode.Boolean Then
short1 = -1S * Convert.ToInt16(obj1)
Else
short1 = Convert.ToInt16(obj1)
End If
If TC2 = TypeCode.Boolean Then
short2 = -1S * Convert.ToInt16(obj2)
Else
short2 = Convert.ToInt16(obj2)
End If
Return (Convert.ToInt16(short1) And Convert.ToInt16(short2))
Case TypeCode.Int64
If TC1 = TypeCode.Boolean Then
l1 = -1 * Convert.ToInt64(obj1)
Else
l1 = Convert.ToInt64(obj1)
End If
If TC2 = TypeCode.Boolean Then
l2 = -1 * Convert.ToInt64(obj2)
Else
l2 = Convert.ToInt64(obj2)
End If
Return (Convert.ToInt64(l1) And Convert.ToInt64(l2))
Case TypeCode.Single
sn1 = Convert.ToSingle(obj1)
sn2 = Convert.ToSingle(obj2)
Return (Convert.ToInt64(sn1) And Convert.ToInt64(sn2))
Case TypeCode.String
If TC1 = TypeCode.Boolean Then
dbl1 = -1 * Convert.ToDouble(obj1)
Else
dbl1 = Convert.ToDouble(obj1)
End If
If TC2 = TypeCode.Boolean Then
dbl2 = -1 * Convert.ToDouble(obj2)
Else
dbl2 = Convert.ToDouble(obj2)
End If
Return (Convert.ToInt64(dbl1) And Convert.ToInt64(dbl2))
Case Else
Throw New InvalidCastException
End Select
End Function
Public Shared Function BitOrObj(ByVal obj1 As System.Object, ByVal obj2 As System.Object) As System.Object
Dim dbl1 As Double
Dim dbl2 As Double
Dim sn1 As Single
Dim sn2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
'' FIXME: return typecode should be the second obj's typecode
'' and not int64 all the time
If (obj1 Is Nothing) Then
Return Convert.ToInt64(obj2)
End If
If (obj2 Is Nothing) Then
Return Convert.ToInt64(obj1)
End If
Dim TC1 As TypeCode = Type.GetTypeCode(obj1.GetType())
Dim TC2 As TypeCode = Type.GetTypeCode(obj2.GetType())
'' select the TypeCode to return
Dim LTypeFound As TypeCode = BiggestTypeCode(obj1, obj2)
Select Case (LTypeFound)
Case TypeCode.Boolean
Return ((BooleanType.FromObject(obj1)) Or (Convert.ToBoolean(obj2)))
Case TypeCode.Byte
Return ((ByteType.FromObject(obj1)) Or (Convert.ToByte(obj2)))
Case TypeCode.Double
If TC1 = TypeCode.Boolean Then
dbl1 = -1 * Convert.ToDouble(obj1)
Else
dbl1 = Convert.ToDouble(obj1)
End If
If TC2 = TypeCode.Boolean Then
dbl2 = -1 * Convert.ToDouble(obj2)
Else
dbl2 = Convert.ToDouble(obj2)
End If
Return (Convert.ToInt64(dbl1) Or Convert.ToInt64(dbl2))
Case TypeCode.Decimal
If TC1 = TypeCode.Boolean Then
dec1 = -1 * Convert.ToDecimal(obj1)
Else
dec1 = Convert.ToDecimal(obj1)
End If
If TC2 = TypeCode.Boolean Then
dec2 = -1 * Convert.ToDecimal(obj2)
Else
dec2 = Convert.ToDecimal(obj2)
End If
Return (Convert.ToInt64(dec1) Or Convert.ToInt64(dec2))
Case TypeCode.Int32
If TC1 = TypeCode.Boolean Then
i1 = -1 * Convert.ToInt32(obj1)
Else
i1 = Convert.ToInt32(obj1)
End If
If TC2 = TypeCode.Boolean Then
i2 = -1 * Convert.ToInt32(obj2)
Else
i2 = Convert.ToInt32(obj2)
End If
Return (Convert.ToInt32(i1) Or Convert.ToInt32(i2))
Case TypeCode.Int16
If TC1 = TypeCode.Boolean Then
short1 = -1S * Convert.ToInt16(obj1)
Else
short1 = Convert.ToInt16(obj1)
End If
If TC2 = TypeCode.Boolean Then
short2 = -1S * Convert.ToInt16(obj2)
Else
short2 = Convert.ToInt16(obj2)
End If
Return (Convert.ToInt16(short1) Or Convert.ToInt16(short2))
Case TypeCode.Int64
If TC1 = TypeCode.Boolean Then
l1 = -1 * Convert.ToInt64(obj1)
Else
l1 = Convert.ToInt64(obj1)
End If
If TC2 = TypeCode.Boolean Then
l2 = -1 * Convert.ToInt64(obj2)
Else
l2 = Convert.ToInt64(obj2)
End If
Return (Convert.ToInt64(l1) Or Convert.ToInt64(l2))
Case TypeCode.Single
sn1 = Convert.ToSingle(obj1)
sn2 = Convert.ToSingle(obj2)
Return (Convert.ToInt64(sn1) Or Convert.ToInt64(sn2))
Case TypeCode.String
If TC1 = TypeCode.Boolean Then
dbl1 = -1 * Convert.ToDouble(obj1)
Else
dbl1 = Convert.ToDouble(obj1)
End If
If TC2 = TypeCode.Boolean Then
dbl2 = -1 * Convert.ToDouble(obj2)
Else
dbl2 = Convert.ToDouble(obj2)
End If
Return (Convert.ToInt64(dbl1) Or Convert.ToInt64(dbl2))
Case Else
Throw New InvalidCastException
End Select
End Function
Public Shared Function BitXorObj(ByVal obj1 As System.Object, ByVal obj2 As System.Object) As System.Object
Dim dbl1 As Double
Dim dbl2 As Double
Dim sn1 As Single
Dim sn2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
'' FIXME: return typecode should be the second obj's typecode
'' and not int64 all the time
If (obj1 Is Nothing) Then
Return Convert.ToInt64(obj2)
End If
If (obj2 Is Nothing) Then
Return Convert.ToInt64(obj1)
End If
Dim TC1 As TypeCode = Type.GetTypeCode(obj1.GetType())
Dim TC2 As TypeCode = Type.GetTypeCode(obj2.GetType())
'' select the TypeCode to return
Dim LTypeFound As TypeCode = BiggestTypeCode(obj1, obj2)
Select Case (LTypeFound)
Case TypeCode.Boolean
Return ((BooleanType.FromObject(obj1)) Xor (Convert.ToBoolean(obj2)))
Case TypeCode.Byte
Return ((ByteType.FromObject(obj1)) Xor (Convert.ToByte(obj2)))
Case TypeCode.Double
If TC1 = TypeCode.Boolean Then
dbl1 = -1 * Convert.ToDouble(obj1)
Else
dbl1 = Convert.ToDouble(obj1)
End If
If TC2 = TypeCode.Boolean Then
dbl2 = -1 * Convert.ToDouble(obj2)
Else
dbl2 = Convert.ToDouble(obj2)
End If
Return (Convert.ToInt64(dbl1) Xor Convert.ToInt64(dbl2))
Case TypeCode.Decimal
If TC1 = TypeCode.Boolean Then
dec1 = -1 * Convert.ToDecimal(obj1)
Else
dec1 = Convert.ToDecimal(obj1)
End If
If TC2 = TypeCode.Boolean Then
dec2 = -1 * Convert.ToDecimal(obj2)
Else
dec2 = Convert.ToDecimal(obj2)
End If
Return (Convert.ToInt64(dec1) Xor Convert.ToInt64(dec2))
Case TypeCode.Int32
If TC1 = TypeCode.Boolean Then
i1 = -1 * Convert.ToInt32(obj1)
Else
i1 = Convert.ToInt32(obj1)
End If
If TC2 = TypeCode.Boolean Then
i2 = -1 * Convert.ToInt32(obj2)
Else
i2 = Convert.ToInt32(obj2)
End If
Return (Convert.ToInt32(i1) Xor Convert.ToInt32(i2))
Case TypeCode.Int16
If TC1 = TypeCode.Boolean Then
short1 = -1S * Convert.ToInt16(obj1)
Else
short1 = Convert.ToInt16(obj1)
End If
If TC2 = TypeCode.Boolean Then
short2 = -1S * Convert.ToInt16(obj2)
Else
short2 = Convert.ToInt16(obj2)
End If
Return (Convert.ToInt16(short1) Xor Convert.ToInt16(short2))
Case TypeCode.Int64
If TC1 = TypeCode.Boolean Then
l1 = -1 * Convert.ToInt64(obj1)
Else
l1 = Convert.ToInt64(obj1)
End If
If TC2 = TypeCode.Boolean Then
l2 = -1 * Convert.ToInt64(obj2)
Else
l2 = Convert.ToInt64(obj2)
End If
Return (Convert.ToInt64(l1) Xor Convert.ToInt64(l2))
Case TypeCode.Single
If TC1 = TypeCode.Boolean Then
sn1 = -1 * Convert.ToSingle(obj1)
Else
sn1 = Convert.ToSingle(obj1)
End If
If TC2 = TypeCode.Boolean Then
sn2 = -1 * Convert.ToSingle(obj2)
Else
sn2 = Convert.ToSingle(obj2)
End If
Return (Convert.ToInt64(sn1) Xor Convert.ToInt64(sn2))
Case TypeCode.String
If TC1 = TypeCode.Boolean Then
dbl1 = -1 * Convert.ToDouble(obj1)
Else
dbl1 = Convert.ToDouble(obj1)
End If
If TC2 = TypeCode.Boolean Then
dbl2 = -1 * Convert.ToDouble(obj2)
Else
dbl2 = Convert.ToDouble(obj2)
End If
Return (Convert.ToInt64(dbl1) Xor Convert.ToInt64(dbl2))
Case Else
Throw New InvalidCastException
End Select
End Function
Public Shared Function AddObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Dim b1 As Byte
Dim b2 As Byte
Dim bool1 As Boolean
Dim bool2 As Boolean
Dim dbl1 As Double
Dim dbl2 As Double
Dim f1 As Single
Dim f2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
Dim s1 As String
Dim s2 As String
' comparing null objects
' if both are null, return 0
' if one is a type, convert the other to its 'null value'
If (o1 Is Nothing) And (o2 Is Nothing) Then
Return 0
End If
If (o1 Is Nothing) Then
o1 = CreateNullObjectType(o2)
End If
If (o2 Is Nothing) Then
o2 = CreateNullObjectType(o1)
End If
'FIXME: Add defense for checking overflow.
'FIXME: Add support for Date
If (TypeOf o1 Is Double) Or (TypeOf o2 Is Double) Then
dbl1 = Convert.ToDouble(o1)
dbl2 = Convert.ToDouble(o2)
Return dbl1 + dbl2
ElseIf (TypeOf o1 Is Single) Or (TypeOf o2 Is Single) Then
f1 = Convert.ToSingle(o1)
f2 = Convert.ToSingle(o2)
Return f1 + f2
ElseIf (TypeOf o1 Is Decimal) Or (TypeOf o2 Is Decimal) Then
dec1 = Convert.ToDecimal(o1)
dec2 = Convert.ToDecimal(o2)
Return dec1 + dec2
ElseIf (TypeOf o1 Is Long) Or (TypeOf o2 Is Long) Then
l1 = Convert.ToInt64(o1)
l2 = Convert.ToInt64(o2)
Return l1 + l2
ElseIf (TypeOf o1 Is Integer) Or (TypeOf o2 Is Integer) Then
i1 = Convert.ToInt32(o1)
i2 = Convert.ToInt32(o2)
Return i1 + i2
ElseIf (TypeOf o1 Is Short) Or (TypeOf o2 Is Short) Then
short1 = Convert.ToInt16(o1)
short2 = Convert.ToInt16(o2)
Return short1 + short2
ElseIf (TypeOf o1 Is Byte) Or (TypeOf o2 Is Byte) Then
b1 = Convert.ToByte(o1)
b2 = Convert.ToByte(o2)
Return b1 + b2
ElseIf (TypeOf o1 Is Boolean) Or (TypeOf o2 Is Boolean) Then
bool1 = Convert.ToBoolean(o1)
bool2 = Convert.ToBoolean(o2)
Return Convert.ToInt16(bool1) + Convert.ToInt16(bool2)
ElseIf ((TypeOf o1 Is String) And (TypeOf o2 Is String)) Or _
((TypeOf o1 Is Char) And (TypeOf o2 Is Char)) Or _
((TypeOf o1 Is String) And (TypeOf o2 Is Char)) Or _
((TypeOf o1 Is Char) And (TypeOf o2 Is String)) Then
' both are String, its a Concat
' both are Char, its a Concat
' one is String and one is Char, its a Concat
s1 = Convert.ToString(o1)
s2 = Convert.ToString(o2)
Return s1 + s2
ElseIf (TypeOf o1 Is String) Or (TypeOf o2 Is String) Then
' one is String, its a numeric Add
s1 = Convert.ToString(o1)
s2 = Convert.ToString(o2)
If s1 Is Nothing OrElse s1.Length = 0 Then s1 = "0"
If s2 Is Nothing OrElse s2.Length = 0 Then s2 = "0"
dbl1 = Convert.ToDouble(s1)
dbl2 = Convert.ToDouble(s2)
Return dbl1 + dbl2
Else ' Not implemented case
Throw GetCaseNotImplemented("Implement me: " + o1.GetType.Name + " " + o2.GetType.Name)
End If
End Function
Public Shared Function SubObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Dim b1 As Byte
Dim b2 As Byte
Dim bool1 As Boolean
Dim bool2 As Boolean
Dim dbl1 As Double
Dim dbl2 As Double
Dim f1 As Single
Dim f2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
Dim s1 As String
Dim s2 As String
' comparing null objects
' if both are null, return 0
' if one is a type, convert the other to its 'null value'
If (o1 Is Nothing) And (o2 Is Nothing) Then
Return 0
End If
If (o1 Is Nothing) Then
o1 = CreateNullObjectType(o2)
End If
If (o2 Is Nothing) Then
o2 = CreateNullObjectType(o1)
End If
'FIXME: Add defense for checking overflow.
If (TypeOf o1 Is Boolean) Then
bool1 = Convert.ToBoolean(o1)
' bool2 = Convert.ToBoolean(o2)
Return ((-1 * (Convert.ToInt32(bool1)) - Convert.ToInt32(o2)))
ElseIf (TypeOf o2 Is Boolean) Then
'bool1 = Convert.ToBoolean(o1)
bool2 = Convert.ToBoolean(o2)
Return ((Convert.ToInt32(o1) - (-1 * Convert.ToInt32(bool2))))
ElseIf (TypeOf o1 Is Double) Or (TypeOf o2 Is Double) Then
dbl1 = Convert.ToDouble(o1)
dbl2 = Convert.ToDouble(o2)
Return dbl1 - dbl2
ElseIf (TypeOf o1 Is Single) Or (TypeOf o2 Is Single) Then
f1 = Convert.ToSingle(o1)
f2 = Convert.ToSingle(o2)
Return f1 - f2
ElseIf (TypeOf o1 Is Decimal) Or (TypeOf o2 Is Decimal) Then
dec1 = Convert.ToDecimal(o1)
dec2 = Convert.ToDecimal(o2)
Return dec1 - dec2
ElseIf (TypeOf o1 Is Long) Or (TypeOf o2 Is Long) Then
l1 = Convert.ToInt64(o1)
l2 = Convert.ToInt64(o2)
Return l1 - l2
ElseIf (TypeOf o1 Is Integer) Or (TypeOf o2 Is Integer) Then
i1 = Convert.ToInt32(o1)
i2 = Convert.ToInt32(o2)
Return i1 - i2
ElseIf (TypeOf o1 Is Short) Or (TypeOf o2 Is Short) Then
short1 = Convert.ToInt16(o1)
short2 = Convert.ToInt16(o2)
Return short1 - short2
ElseIf (TypeOf o1 Is Byte) Or (TypeOf o2 Is Byte) Then
b1 = Convert.ToByte(o1)
b2 = Convert.ToByte(o2)
Return b1 - b2
ElseIf (TypeOf o1 Is String) Or (TypeOf o2 Is String) Then
s1 = Convert.ToString(o1)
s2 = Convert.ToString(o2)
If s1 Is Nothing OrElse s1.Length = 0 Then s1 = "0"
If s2 Is Nothing OrElse s2.Length = 0 Then s2 = "0"
dbl1 = Convert.ToDouble(s1)
dbl2 = Convert.ToDouble(s2)
Return dbl1 - dbl2
Else ' Not implemented case
Throw GetCaseNotImplemented("Implement me: " + o1.GetType.Name + " " + o2.GetType.Name)
End If
End Function
Public Shared Function MulObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Dim b1 As Byte
Dim b2 As Byte
Dim bool1 As Boolean
Dim bool2 As Boolean
Dim dbl1 As Double
Dim dbl2 As Double
Dim f1 As Single
Dim f2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
Dim s1 As String
Dim s2 As String
' comparing null objects
' if both are null, return 0
' if one is a type, convert the other to its 'null value'
If (o1 Is Nothing) And (o2 Is Nothing) Then
Return 0
End If
If (o1 Is Nothing) Then
o1 = CreateNullObjectType(o2)
' multiple of zero and x is zero
Return o1
End If
If (o2 Is Nothing) Then
o2 = CreateNullObjectType(o1)
' multiple of x and zero is zero
Return o2
End If
'FIXME: Add ElseIf implementation for all types.
'FIXME: Add defense for checking overflow.
If (TypeOf o1 Is Double) Or (TypeOf o2 Is Double) Then
dbl1 = Convert.ToDouble(o1)
dbl2 = Convert.ToDouble(o2)
Return dbl1 * dbl2
ElseIf (TypeOf o1 Is Single) Or (TypeOf o2 Is Single) Then
f1 = Convert.ToSingle(o1)
f2 = Convert.ToSingle(o2)
Return f1 * f2
ElseIf (TypeOf o1 Is Decimal) Or (TypeOf o2 Is Decimal) Then
dec1 = Convert.ToDecimal(o1)
dec2 = Convert.ToDecimal(o2)
Return dec1 * dec2
ElseIf (TypeOf o1 Is Long) Or (TypeOf o2 Is Long) Then
l1 = Convert.ToInt64(o1)
l2 = Convert.ToInt64(o2)
Return l1 * l2
ElseIf (TypeOf o1 Is Integer) Or (TypeOf o2 Is Integer) Then
i1 = Convert.ToInt32(o1)
i2 = Convert.ToInt32(o2)
Return i1 * i2
ElseIf (TypeOf o1 Is Short) Or (TypeOf o2 Is Short) Then
short1 = Convert.ToInt16(o1)
short2 = Convert.ToInt16(o2)
Return short1 * short2
ElseIf (TypeOf o1 Is Byte) Or (TypeOf o2 Is Byte) Then
b1 = Convert.ToByte(o1)
b2 = Convert.ToByte(o2)
Return b1 * b2
ElseIf (TypeOf o1 Is Boolean) Or (TypeOf o2 Is Boolean) Then
bool1 = Convert.ToBoolean(o1)
bool2 = Convert.ToBoolean(o2)
Return Convert.ToInt16(bool1) * Convert.ToInt16(bool2)
ElseIf (TypeOf o1 Is String) Or (TypeOf o2 Is String) Then
s1 = Convert.ToString(o1)
s2 = Convert.ToString(o2)
If s1 Is Nothing OrElse s1.Length = 0 Then s1 = "0"
If s2 Is Nothing OrElse s2.Length = 0 Then s2 = "0"
dbl1 = Convert.ToDouble(s1)
dbl2 = Convert.ToDouble(s2)
Return dbl1 * dbl2
Else ' Not implemented case
Throw GetCaseNotImplemented("Implement me: " + o1.GetType.Name + " " + o2.GetType.Name)
End If
End Function
Public Shared Function DivObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Dim b1 As Byte
Dim b2 As Byte
Dim bool1 As Boolean
Dim bool2 As Boolean
Dim dbl1 As Double
Dim dbl2 As Double
Dim f1 As Single
Dim f2 As Single
Dim dec1 As Decimal
Dim dec2 As Decimal
Dim l1 As Long
Dim l2 As Long
Dim i1 As Integer
Dim i2 As Integer
Dim short1 As Short
Dim short2 As Short
Dim s1 As String
Dim s2 As String
' comparing null objects
' if both are null, return 0
' if one is a type, convert the other to its 'null value'
If (o1 Is Nothing) And (o2 Is Nothing) Then
Return 0
End If
'FIXME: Add checks for Nothing
If (o1 Is Nothing) Then
o1 = CreateNullObjectType(o2)
' divide of zero and x is infinite
Throw GetCaseNotImplemented("implement me")
End If
If (o2 Is Nothing) Then
o2 = CreateNullObjectType(o1)
' divide of x and zero is exception
Throw New DivideByZeroException
End If
'FIXME: Add ElseIf implementation for all types.
'FIXME: Add defense for checking overflow.
If (TypeOf o1 Is Double) Or (TypeOf o2 Is Double) Then
dbl1 = Convert.ToDouble(o1)
dbl2 = Convert.ToDouble(o2)
Return dbl1 / dbl2
ElseIf (TypeOf o1 Is Single) Or (TypeOf o2 Is Single) Then
f1 = Convert.ToSingle(o1)
f2 = Convert.ToSingle(o2)
Return f1 / f2
ElseIf (TypeOf o1 Is Decimal) Or (TypeOf o2 Is Decimal) Then
dec1 = Convert.ToDecimal(o1)
dec2 = Convert.ToDecimal(o2)
Return dec1 / dec2
ElseIf (TypeOf o1 Is Long) Or (TypeOf o2 Is Long) Then
l1 = Convert.ToInt64(o1)
l2 = Convert.ToInt64(o2)
Return l1 / l2
ElseIf (TypeOf o1 Is Integer) Or (TypeOf o2 Is Integer) Then
i1 = Convert.ToInt32(o1)
i2 = Convert.ToInt32(o2)
Return i1 / i2
ElseIf (TypeOf o1 Is Short) Or (TypeOf o2 Is Short) Then
short1 = Convert.ToInt16(o1)
short2 = Convert.ToInt16(o2)
Return short1 / short2
ElseIf (TypeOf o1 Is Byte) Or (TypeOf o2 Is Byte) Then
b1 = Convert.ToByte(o1)
b2 = Convert.ToByte(o2)
Return b1 / b2
ElseIf (TypeOf o1 Is Boolean) Or (TypeOf o2 Is Boolean) Then
bool1 = Convert.ToBoolean(o1)
bool2 = Convert.ToBoolean(o2)
Return Convert.ToInt16(bool1) / Convert.ToInt16(bool2)
ElseIf (TypeOf o1 Is String) Or (TypeOf o2 Is String) Then
s1 = Convert.ToString(o1)
s2 = Convert.ToString(o2)
If s1 Is Nothing OrElse s1.Length = 0 Then s1 = "0"
If s2 Is Nothing OrElse s2.Length = 0 Then s2 = "0"
dbl1 = Convert.ToDouble(s1)
dbl2 = Convert.ToDouble(s2)
Return dbl1 / dbl2
Else ' Not implemented case
Throw GetCaseNotImplemented("Implement me: " + o1.GetType.Name + " " + o2.GetType.Name)
End If
End Function
Public Shared Function PowObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Dim dbl1 As Double
Dim dbl2 As Double
' comparing null objects
' if both are null, return 0
' if one is a type, convert the other to its 'null value'
If (o1 Is Nothing) And (o2 Is Nothing) Then
Return 0
End If
If (o1 Is Nothing) Then
o1 = CreateNullObjectType(o2)
End If
If (o2 Is Nothing) Then
o2 = CreateNullObjectType(o1)
End If
'FIXME: Add defense for checking overflow.
dbl1 = Convert.ToDouble(o1)
dbl2 = Convert.ToDouble(o2)
Return Math.Pow(dbl1, dbl2)
End Function
Public Shared Function ShiftLeftObj(ByVal o1 As Object, ByVal amount As Integer) As Object
Throw New NotImplementedException
End Function
Public Shared Function ShiftRightObj(ByVal o1 As Object, ByVal amount As Integer) As Object
Throw New NotImplementedException
End Function
Public Shared Function ModObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Throw New NotImplementedException
End Function
Public Shared Function IDivObj(ByVal o1 As System.Object, ByVal o2 As System.Object) As System.Object
Throw New NotImplementedException
End Function
Public Shared Function XorObj(ByVal obj1 As System.Object, ByVal obj2 As System.Object) As System.Object
Throw New NotImplementedException
End Function
Public Shared Function LikeObj(ByVal vLeft As System.Object, ByVal vRight As System.Object, ByVal CompareOption As Microsoft.VisualBasic.CompareMethod) As System.Boolean
Dim strLeft As String = StringType.FromObject(vLeft)
Dim strRight As String = StringType.FromObject(vRight)
Return StringType.StrLike(strLeft, strRight, CompareOption)
End Function
Public Shared Function StrCatObj(ByVal vLeft As System.Object, ByVal vRight As System.Object) As System.Object
If TypeOf vLeft Is DBNull Then vLeft = ""
If TypeOf vRight Is DBNull Then vRight = ""
Dim strLeft As String = StringType.FromObject(vLeft)
Dim strRight As String = StringType.FromObject(vRight)
Return strLeft & strRight
End Function
Public Shared Function GetObjectValuePrimitive(ByVal o As System.Object) As System.Object
Throw New NotImplementedException
End Function
'creates a real type of a Nothing object
Private Shared Function CreateNullObjectType(ByVal otype As Object) As Object
If TypeOf otype Is Byte Then
Return Convert.ToByte(0)
ElseIf TypeOf otype Is Boolean Then
Return Convert.ToBoolean(False)
ElseIf TypeOf otype Is Long Then
Return Convert.ToInt64(0)
ElseIf TypeOf otype Is Decimal Then
Return Convert.ToDecimal(0)
ElseIf TypeOf otype Is Short Then
Return Convert.ToInt16(0)
ElseIf TypeOf otype Is Integer Then
Return Convert.ToInt32(0)
ElseIf TypeOf otype Is Double Then
Return Convert.ToDouble(0)
ElseIf TypeOf otype Is Single Then
Return Convert.ToSingle(0)
ElseIf TypeOf otype Is String Then
Return Convert.ToString("")
ElseIf TypeOf otype Is Char Then
Return Convert.ToChar(0)
ElseIf TypeOf otype Is Date Then
Return Nothing
Else
Throw GetCaseNotImplemented("Implement me: " + otype.GetType.Name)
End If
End Function
End Class
End Namespace
|