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 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281
|
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using System.Linq.Expressions;
using System.Diagnostics;
using System.Data;
namespace System.Data.Linq.SqlClient {
using System.Data.Linq.Mapping;
using System.Data.Linq.Provider;
using System.Diagnostics.CodeAnalysis;
internal enum SqlNodeType {
Add,
Alias,
AliasRef,
And,
Assign,
Avg,
Between,
BitAnd,
BitNot,
BitOr,
BitXor,
Block,
ClientArray,
ClientCase,
ClientParameter,
ClientQuery,
ClrLength,
Coalesce,
Column,
ColumnRef,
Concat,
Convert,
Count,
Delete,
DiscriminatedType,
DiscriminatorOf,
Div,
DoNotVisit,
Element,
ExprSet,
EQ,
EQ2V,
Exists,
FunctionCall,
In,
IncludeScope,
IsNotNull,
IsNull,
LE,
Lift,
Link,
Like,
LongCount,
LT,
GE,
Grouping,
GT,
Insert,
Join,
JoinedCollection,
Max,
MethodCall,
Member,
MemberAssign,
Min,
Mod,
Mul,
Multiset,
NE,
NE2V,
Negate,
New,
Not,
Not2V,
Nop,
Or,
OptionalValue,
OuterJoinedValue,
Parameter,
Property,
Row,
RowNumber,
ScalarSubSelect,
SearchedCase,
Select,
SharedExpression,
SharedExpressionRef,
SimpleCase,
SimpleExpression,
Stddev,
StoredProcedureCall,
Sub,
Sum,
Table,
TableValuedFunctionCall,
Treat,
TypeCase,
Union,
Update,
UserColumn,
UserQuery,
UserRow,
Variable,
Value,
ValueOf
}
[System.Diagnostics.DebuggerDisplay("text = {Text}, \r\nsource = {SourceExpression}")]
internal abstract class SqlNode {
private SqlNodeType nodeType;
private Expression sourceExpression;
internal SqlNode(SqlNodeType nodeType, Expression sourceExpression) {
this.nodeType = nodeType;
this.sourceExpression = sourceExpression;
}
internal Expression SourceExpression {
get { return this.sourceExpression; }
}
internal void ClearSourceExpression() {
this.sourceExpression = null;
}
internal SqlNodeType NodeType {
get { return this.nodeType; }
}
#if DEBUG
private static DbFormatter formatter;
internal static DbFormatter Formatter {
get { return formatter; }
set { formatter = value; }
}
internal string Text {
get {
if (Formatter == null)
return "SqlNode.Formatter is not assigned";
return SqlNode.Formatter.Format(this, true);
}
}
#endif
}
internal abstract class SqlExpression : SqlNode {
private Type clrType;
internal SqlExpression(SqlNodeType nodeType, Type clrType, Expression sourceExpression)
: base(nodeType, sourceExpression) {
this.clrType = clrType;
}
internal Type ClrType {
get { return this.clrType; }
}
// note: changing the CLR type of a node is potentially dangerous
internal void SetClrType(Type type) {
this.clrType = type;
}
internal abstract ProviderType SqlType { get; }
/// <summary>
/// Drill down looking for a constant root expression, returning true if found.
/// </summary>
internal bool IsConstantColumn {
get {
if (this.NodeType == SqlNodeType.Column) {
SqlColumn col = (SqlColumn)this;
if (col.Expression != null) {
return col.Expression.IsConstantColumn;
}
}
else if (this.NodeType == SqlNodeType.ColumnRef) {
return ((SqlColumnRef)this).Column.IsConstantColumn;
}
else if (this.NodeType == SqlNodeType.OptionalValue) {
return ((SqlOptionalValue)this).Value.IsConstantColumn;
}
else if (this.NodeType == SqlNodeType.Value ||
this.NodeType == SqlNodeType.Parameter) {
return true;
}
return false;
}
}
}
/// <summary>
/// A SqlExpression with a simple implementation of ClrType and SqlType.
/// </summary>
internal abstract class SqlSimpleTypeExpression : SqlExpression {
private ProviderType sqlType;
internal SqlSimpleTypeExpression(SqlNodeType nodeType, Type clrType, ProviderType sqlType, Expression sourceExpression)
: base(nodeType, clrType, sourceExpression) {
this.sqlType = sqlType;
}
internal override ProviderType SqlType {
get { return this.sqlType; }
}
internal void SetSqlType(ProviderType type) {
this.sqlType = type;
}
}
internal class SqlDiscriminatorOf : SqlSimpleTypeExpression {
SqlExpression obj;
internal SqlDiscriminatorOf(SqlExpression obj, Type clrType, ProviderType sqlType, Expression sourceExpression)
: base(SqlNodeType.DiscriminatorOf, clrType, sqlType, sourceExpression) {
this.obj = obj;
}
internal SqlExpression Object {
get { return this.obj; }
set { this.obj = value; }
}
}
/// <summary>
/// Represents a dynamic CLR type that is chosen based on a discriminator expression.
/// </summary>
internal class SqlDiscriminatedType : SqlExpression {
private ProviderType sqlType;
private SqlExpression discriminator;
private MetaType targetType;
internal SqlDiscriminatedType(ProviderType sqlType, SqlExpression discriminator, MetaType targetType, Expression sourceExpression)
: base(SqlNodeType.DiscriminatedType,
typeof(Type),
sourceExpression) {
if (discriminator == null)
throw Error.ArgumentNull("discriminator");
this.discriminator = discriminator;
this.targetType = targetType;
this.sqlType = sqlType;
}
internal override ProviderType SqlType {
get { return this.sqlType; }
}
internal SqlExpression Discriminator {
get { return this.discriminator; }
set { this.discriminator = value; }
}
internal MetaType TargetType {
get { return this.targetType; }
}
}
internal abstract class SqlStatement : SqlNode {
internal SqlStatement(SqlNodeType nodeType, Expression sourceExpression)
: base(nodeType, sourceExpression) {
}
}
internal abstract class SqlSource : SqlNode {
internal SqlSource(SqlNodeType nt, Expression sourceExpression)
: base(nt, sourceExpression) {
}
}
internal class SqlSelect : SqlStatement {
private SqlExpression top;
private bool isPercent;
private bool isDistinct;
private SqlExpression selection;
private SqlRow row;
private SqlSource from;
private SqlExpression where;
private List<SqlExpression> groupBy;
private SqlExpression having;
private List<SqlOrderExpression> orderBy;
private SqlOrderingType orderingType;
private bool squelch;
internal SqlSelect(SqlExpression selection, SqlSource from, Expression sourceExpression)
: base(SqlNodeType.Select, sourceExpression) {
this.Row = new SqlRow(sourceExpression);
this.Selection = selection;
this.From = from;
this.groupBy = new List<SqlExpression>();
this.orderBy = new List<SqlOrderExpression>();
this.orderingType = SqlOrderingType.Default;
}
internal SqlExpression Top {
get { return this.top; }
set { this.top = value; }
}
internal bool IsPercent {
get { return this.isPercent; }
set { this.isPercent = value; }
}
internal bool IsDistinct {
get { return this.isDistinct; }
set { this.isDistinct = value; }
}
internal SqlExpression Selection {
get { return this.selection; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.selection = value;
}
}
internal SqlRow Row {
get { return this.row; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.row = value;
}
}
internal SqlSource From {
get { return this.from; }
set { this.from = value; }
}
internal SqlExpression Where {
get { return this.where; }
set {
if (value != null && TypeSystem.GetNonNullableType(value.ClrType) != typeof(bool)) {
throw Error.ArgumentWrongType("value", "bool", value.ClrType);
}
this.where = value;
}
}
internal List<SqlExpression> GroupBy {
get { return this.groupBy; }
}
internal SqlExpression Having {
get { return this.having; }
set {
if (value != null && TypeSystem.GetNonNullableType(value.ClrType) != typeof(bool)) {
throw Error.ArgumentWrongType("value", "bool", value.ClrType);
}
this.having = value;
}
}
internal List<SqlOrderExpression> OrderBy {
get { return this.orderBy; }
}
internal SqlOrderingType OrderingType {
get { return this.orderingType; }
set { this.orderingType = value; }
}
internal bool DoNotOutput {
get { return this.squelch; }
set { this.squelch = value; }
}
}
internal enum SqlOrderingType {
Default,
Never,
Blocked,
Always
}
internal class SqlTable : SqlNode {
private MetaTable table;
private MetaType rowType;
private ProviderType sqlRowType;
private List<SqlColumn> columns;
internal SqlTable(MetaTable table, MetaType rowType, ProviderType sqlRowType, Expression sourceExpression)
: base(SqlNodeType.Table, sourceExpression) {
this.table = table;
this.rowType = rowType;
this.sqlRowType = sqlRowType;
this.columns = new List<SqlColumn>();
}
internal MetaTable MetaTable {
get { return this.table; }
}
internal string Name {
get { return this.table.TableName; }
}
internal List<SqlColumn> Columns {
get { return this.columns; }
}
internal MetaType RowType {
get { return this.rowType; }
}
internal ProviderType SqlRowType {
get { return this.sqlRowType; }
}
internal SqlColumn Find(string columnName) {
foreach (SqlColumn c in this.Columns) {
if (c.Name == columnName)
return c;
}
return null;
}
}
internal class SqlUserQuery : SqlNode {
private string queryText;
private SqlExpression projection;
private List<SqlExpression> args;
private List<SqlUserColumn> columns;
internal SqlUserQuery(SqlNodeType nt, SqlExpression projection, IEnumerable<SqlExpression> args, Expression source)
: base(nt, source) {
this.Projection = projection;
this.args = (args != null) ? new List<SqlExpression>(args) : new List<SqlExpression>();
this.columns = new List<SqlUserColumn>();
}
internal SqlUserQuery(string queryText, SqlExpression projection, IEnumerable<SqlExpression> args, Expression source)
: base(SqlNodeType.UserQuery, source) {
this.queryText = queryText;
this.Projection = projection;
this.args = (args != null) ? new List<SqlExpression>(args) : new List<SqlExpression>();
this.columns = new List<SqlUserColumn>();
}
internal string QueryText {
get { return this.queryText; }
}
internal SqlExpression Projection {
get { return this.projection; }
set {
if (this.projection != null && this.projection.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.projection.ClrType, value.ClrType);
this.projection = value;
}
}
internal List<SqlExpression> Arguments {
get { return this.args; }
}
internal List<SqlUserColumn> Columns {
get { return this.columns; }
}
internal SqlUserColumn Find(string name) {
foreach (SqlUserColumn c in this.Columns) {
if (c.Name == name)
return c;
}
return null;
}
}
internal class SqlStoredProcedureCall : SqlUserQuery {
private MetaFunction function;
internal SqlStoredProcedureCall(MetaFunction function, SqlExpression projection, IEnumerable<SqlExpression> args, Expression source)
: base(SqlNodeType.StoredProcedureCall, projection, args, source) {
if (function == null)
throw Error.ArgumentNull("function");
this.function = function;
}
internal MetaFunction Function {
get { return this.function; }
}
}
internal class SqlUserRow : SqlSimpleTypeExpression {
private SqlUserQuery query;
private MetaType rowType;
internal SqlUserRow(MetaType rowType, ProviderType sqlType, SqlUserQuery query, Expression source)
: base(SqlNodeType.UserRow, rowType.Type, sqlType, source) {
this.Query = query;
this.rowType = rowType;
}
internal MetaType RowType {
get { return this.rowType; }
}
internal SqlUserQuery Query {
get { return this.query; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (value.Projection != null && value.Projection.ClrType != this.ClrType)
throw Error.ArgumentWrongType("value", this.ClrType, value.Projection.ClrType);
this.query = value;
}
}
}
internal class SqlUserColumn : SqlSimpleTypeExpression {
private SqlUserQuery query;
private string name;
private bool isRequired;
internal SqlUserColumn(Type clrType, ProviderType sqlType, SqlUserQuery query, string name, bool isRequired, Expression source)
: base(SqlNodeType.UserColumn, clrType, sqlType, source) {
this.Query = query;
this.name = name;
this.isRequired = isRequired;
}
internal SqlUserQuery Query {
get { return this.query; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.query != null && this.query != value)
throw Error.ArgumentWrongValue("value");
this.query = value;
}
}
internal string Name {
get { return this.name; }
}
internal bool IsRequired {
get { return this.isRequired; }
}
}
internal class SqlAlias : SqlSource {
private string name;
private SqlNode node;
internal SqlAlias(SqlNode node)
: base(SqlNodeType.Alias, node.SourceExpression) {
this.Node = node;
}
internal string Name {
get { return this.name; }
set { this.name = value; }
}
internal SqlNode Node {
get { return this.node; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (!(value is SqlExpression || value is SqlSelect || value is SqlTable || value is SqlUnion))
throw Error.UnexpectedNode(value.NodeType);
this.node = value;
}
}
}
internal class SqlAliasRef : SqlExpression {
private SqlAlias alias;
internal SqlAliasRef(SqlAlias alias)
: base(SqlNodeType.AliasRef, GetClrType(alias.Node), alias.SourceExpression) {
if (alias == null)
throw Error.ArgumentNull("alias");
this.alias = alias;
}
internal SqlAlias Alias {
get { return this.alias; }
}
internal override ProviderType SqlType {
get { return GetSqlType(this.alias.Node); }
}
private static Type GetClrType(SqlNode node) {
SqlTableValuedFunctionCall tvf = node as SqlTableValuedFunctionCall;
if (tvf != null)
return tvf.RowType.Type;
SqlExpression exp = node as SqlExpression;
if (exp != null) {
if (TypeSystem.IsSequenceType(exp.ClrType))
return TypeSystem.GetElementType(exp.ClrType);
return exp.ClrType;
}
SqlSelect sel = node as SqlSelect;
if (sel != null)
return sel.Selection.ClrType;
SqlTable tab = node as SqlTable;
if (tab != null)
return tab.RowType.Type;
SqlUnion su = node as SqlUnion;
if (su != null)
return su.GetClrType();
throw Error.UnexpectedNode(node.NodeType);
}
private static ProviderType GetSqlType(SqlNode node) {
SqlExpression exp = node as SqlExpression;
if (exp != null)
return exp.SqlType;
SqlSelect sel = node as SqlSelect;
if (sel != null)
return sel.Selection.SqlType;
SqlTable tab = node as SqlTable;
if (tab != null)
return tab.SqlRowType;
SqlUnion su = node as SqlUnion;
if (su != null)
return su.GetSqlType();
throw Error.UnexpectedNode(node.NodeType);
}
}
internal class SqlJoin : SqlSource {
private SqlJoinType joinType;
private SqlSource left;
private SqlSource right;
private SqlExpression condition;
internal SqlJoin(SqlJoinType type, SqlSource left, SqlSource right, SqlExpression cond, Expression sourceExpression)
: base(SqlNodeType.Join, sourceExpression) {
this.JoinType = type;
this.Left = left;
this.Right = right;
this.Condition = cond;
}
internal SqlJoinType JoinType {
get { return this.joinType; }
set { this.joinType = value; }
}
internal SqlSource Left {
get { return this.left; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.left = value;
}
}
internal SqlSource Right {
get { return this.right; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.right = value;
}
}
internal SqlExpression Condition {
get { return this.condition; }
set { this.condition = value; }
}
}
internal enum SqlJoinType {
Cross,
Inner,
LeftOuter,
CrossApply,
OuterApply
}
internal class SqlUnion : SqlNode {
private SqlNode left;
private SqlNode right;
private bool all;
internal SqlUnion(SqlNode left, SqlNode right, bool all)
: base(SqlNodeType.Union, right.SourceExpression) {
this.Left = left;
this.Right = right;
this.All = all;
}
internal SqlNode Left {
get { return this.left; }
set {
Validate(value);
this.left = value;
}
}
internal SqlNode Right {
get { return this.right; }
set {
Validate(value);
this.right = value;
}
}
internal bool All {
get { return this.all; }
set { this.all = value; }
}
[SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic", Justification="Unknown reason.")]
private void Validate(SqlNode node) {
if (node == null)
throw Error.ArgumentNull("node");
if (!(node is SqlExpression || node is SqlSelect || node is SqlUnion))
throw Error.UnexpectedNode(node.NodeType);
}
internal Type GetClrType() {
SqlExpression exp = this.Left as SqlExpression;
if (exp != null)
return exp.ClrType;
SqlSelect sel = this.Left as SqlSelect;
if (sel != null)
return sel.Selection.ClrType;
throw Error.CouldNotGetClrType();
}
internal ProviderType GetSqlType() {
SqlExpression exp = this.Left as SqlExpression;
if (exp != null)
return exp.SqlType;
SqlSelect sel = this.Left as SqlSelect;
if (sel != null)
return sel.Selection.SqlType;
throw Error.CouldNotGetSqlType();
}
}
internal class SqlNop : SqlSimpleTypeExpression {
internal SqlNop(Type clrType, ProviderType sqlType, Expression sourceExpression)
: base(SqlNodeType.Nop, clrType, sqlType, sourceExpression) {
}
}
internal class SqlLift : SqlExpression {
internal SqlExpression liftedExpression;
internal SqlLift(Type type, SqlExpression liftedExpression, Expression sourceExpression)
: base(SqlNodeType.Lift, type, sourceExpression) {
if (liftedExpression == null)
throw Error.ArgumentNull("liftedExpression");
this.liftedExpression = liftedExpression;
}
internal SqlExpression Expression {
get { return this.liftedExpression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.liftedExpression = value;
}
}
internal override ProviderType SqlType {
get { return this.liftedExpression.SqlType; }
}
}
internal enum SqlOrderType {
Ascending,
Descending
}
internal class SqlOrderExpression : IEquatable<SqlOrderExpression> {
private SqlOrderType orderType;
private SqlExpression expression;
internal SqlOrderExpression(SqlOrderType type, SqlExpression expr) {
this.OrderType = type;
this.Expression = expr;
}
internal SqlOrderType OrderType {
get { return this.orderType; }
set { this.orderType = value; }
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.expression != null && !this.expression.ClrType.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.expression.ClrType, value.ClrType);
this.expression = value;
}
}
public override bool Equals(object obj) {
if (this.EqualsTo(obj as SqlOrderExpression))
return true;
return base.Equals(obj);
}
public bool Equals(SqlOrderExpression other) {
if (this.EqualsTo(other))
return true;
return base.Equals(other);
}
private bool EqualsTo(SqlOrderExpression other) {
if (other == null)
return false;
if (object.ReferenceEquals(this, other))
return true;
if (this.OrderType != other.OrderType)
return false;
if (!this.Expression.SqlType.Equals(other.Expression.SqlType))
return false;
SqlColumn col1 = SqlOrderExpression.UnwrapColumn(this.Expression);
SqlColumn col2 = SqlOrderExpression.UnwrapColumn(other.Expression);
if (col1 == null || col2 == null)
return false;
return col1 == col2;
}
public override int GetHashCode() {
SqlColumn col = SqlOrderExpression.UnwrapColumn(this.Expression);
if (col != null)
return col.GetHashCode();
return base.GetHashCode();
}
private static SqlColumn UnwrapColumn(SqlExpression expr) {
System.Diagnostics.Debug.Assert(expr != null);
SqlUnary exprAsUnary = expr as SqlUnary;
if (exprAsUnary != null) {
expr = exprAsUnary.Operand;
}
SqlColumn exprAsColumn = expr as SqlColumn;
if (exprAsColumn != null) {
return exprAsColumn;
}
SqlColumnRef exprAsColumnRef = expr as SqlColumnRef;
if (exprAsColumnRef != null) {
return exprAsColumnRef.GetRootColumn();
}
//
// For all other types return null to revert to default behavior for Equals()
// and GetHashCode()
//
return null;
}
}
internal class SqlRowNumber : SqlSimpleTypeExpression {
private List<SqlOrderExpression> orderBy;
internal List<SqlOrderExpression> OrderBy {
get { return orderBy; }
}
internal SqlRowNumber(Type clrType, ProviderType sqlType, List<SqlOrderExpression> orderByList, Expression sourceExpression)
: base(SqlNodeType.RowNumber, clrType, sqlType, sourceExpression) {
if (orderByList == null) {
throw Error.ArgumentNull("orderByList");
}
this.orderBy = orderByList;
}
}
internal class SqlUnary : SqlSimpleTypeExpression {
private SqlExpression operand;
private MethodInfo method;
[SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification="These issues are related to our use of if-then and case statements for node types, which adds to the complexity count however when reviewed they are easy to navigate and understand.")]
internal SqlUnary(SqlNodeType nt, Type clrType, ProviderType sqlType, SqlExpression expr, Expression sourceExpression)
: this(nt, clrType, sqlType, expr, null, sourceExpression) {
}
internal SqlUnary(SqlNodeType nt, Type clrType, ProviderType sqlType, SqlExpression expr, MethodInfo method, Expression sourceExpression)
: base(nt, clrType, sqlType, sourceExpression) {
switch (nt) {
case SqlNodeType.Not:
case SqlNodeType.Not2V:
case SqlNodeType.Negate:
case SqlNodeType.BitNot:
case SqlNodeType.IsNull:
case SqlNodeType.IsNotNull:
case SqlNodeType.Count:
case SqlNodeType.LongCount:
case SqlNodeType.Max:
case SqlNodeType.Min:
case SqlNodeType.Sum:
case SqlNodeType.Avg:
case SqlNodeType.Stddev:
case SqlNodeType.Convert:
case SqlNodeType.ValueOf:
case SqlNodeType.Treat:
case SqlNodeType.OuterJoinedValue:
case SqlNodeType.ClrLength:
break;
default:
throw Error.UnexpectedNode(nt);
}
this.Operand = expr;
this.method = method;
}
internal SqlExpression Operand {
get { return this.operand; }
set {
if (value == null && (this.NodeType != SqlNodeType.Count && this.NodeType != SqlNodeType.LongCount))
throw Error.ArgumentNull("value");
this.operand = value;
}
}
internal MethodInfo Method {
get { return this.method; }
}
}
internal class SqlBinary : SqlSimpleTypeExpression {
private SqlExpression left;
private SqlExpression right;
private MethodInfo method;
[SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification = "These issues are related to our use of if-then and case statements for node types, which adds to the complexity count however when reviewed they are easy to navigate and understand.")]
internal SqlBinary(SqlNodeType nt, Type clrType, ProviderType sqlType, SqlExpression left, SqlExpression right)
: this(nt, clrType, sqlType, left, right, null) {
}
internal SqlBinary(SqlNodeType nt, Type clrType, ProviderType sqlType, SqlExpression left, SqlExpression right, MethodInfo method)
: base(nt, clrType, sqlType, right.SourceExpression) {
switch (nt) {
case SqlNodeType.Add:
case SqlNodeType.Sub:
case SqlNodeType.Mul:
case SqlNodeType.Div:
case SqlNodeType.Mod:
case SqlNodeType.BitAnd:
case SqlNodeType.BitOr:
case SqlNodeType.BitXor:
case SqlNodeType.And:
case SqlNodeType.Or:
case SqlNodeType.GE:
case SqlNodeType.GT:
case SqlNodeType.LE:
case SqlNodeType.LT:
case SqlNodeType.EQ:
case SqlNodeType.NE:
case SqlNodeType.EQ2V:
case SqlNodeType.NE2V:
case SqlNodeType.Concat:
case SqlNodeType.Coalesce:
break;
default:
throw Error.UnexpectedNode(nt);
}
this.Left = left;
this.Right = right;
this.method = method;
}
internal SqlExpression Left {
get { return this.left; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.left = value;
}
}
internal SqlExpression Right {
get { return this.right; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.right = value;
}
}
internal MethodInfo Method {
get { return this.method; }
}
}
internal class SqlBetween : SqlSimpleTypeExpression {
SqlExpression expression;
SqlExpression start;
SqlExpression end;
internal SqlBetween(Type clrType, ProviderType sqlType, SqlExpression expr, SqlExpression start, SqlExpression end, Expression source)
: base(SqlNodeType.Between, clrType, sqlType, source) {
this.expression = expr;
this.start = start;
this.end = end;
}
internal SqlExpression Expression {
get { return this.expression; }
set { this.expression = value; }
}
internal SqlExpression Start {
get { return this.start; }
set { this.start = value; }
}
internal SqlExpression End {
get { return this.end; }
set { this.end = value; }
}
}
internal class SqlIn : SqlSimpleTypeExpression {
private SqlExpression expression;
private List<SqlExpression> values;
internal SqlIn(Type clrType, ProviderType sqlType, SqlExpression expression, IEnumerable<SqlExpression> values, Expression sourceExpression)
:base(SqlNodeType.In, clrType, sqlType, sourceExpression) {
this.expression = expression;
this.values = values != null ? new List<SqlExpression>(values) : new List<SqlExpression>(0);
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null) {
throw Error.ArgumentNull("value");
}
this.expression = value;
}
}
internal List<SqlExpression> Values {
get { return this.values; }
}
}
internal class SqlLike : SqlSimpleTypeExpression {
private SqlExpression expression;
private SqlExpression pattern;
private SqlExpression escape;
internal SqlLike(Type clrType, ProviderType sqlType, SqlExpression expr, SqlExpression pattern, SqlExpression escape, Expression source)
: base(SqlNodeType.Like, clrType, sqlType, source) {
if (expr == null)
throw Error.ArgumentNull("expr");
if (pattern == null)
throw Error.ArgumentNull("pattern");
this.Expression = expr;
this.Pattern = pattern;
this.Escape = escape;
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (value.ClrType != typeof(string))
throw Error.ArgumentWrongType("value", "string", value.ClrType);
this.expression = value;
}
}
internal SqlExpression Pattern {
get { return this.pattern; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (value.ClrType != typeof(string))
throw Error.ArgumentWrongType("value", "string", value.ClrType);
this.pattern = value;
}
}
internal SqlExpression Escape {
get { return this.escape; }
set {
if (value != null && value.ClrType != typeof(string))
throw Error.ArgumentWrongType("value", "string", value.ClrType);
this.escape = value;
}
}
}
internal class SqlWhen {
private SqlExpression matchExpression;
private SqlExpression valueExpression;
internal SqlWhen(SqlExpression match, SqlExpression value) {
// 'match' may be null when this when represents the ELSE condition.
if (value == null)
throw Error.ArgumentNull("value");
this.Match = match;
this.Value = value;
}
internal SqlExpression Match {
get { return this.matchExpression; }
set {
if (this.matchExpression != null && value != null && this.matchExpression.ClrType != value.ClrType
// Exception: bool types, because predicates can have type bool or bool?
&& !TypeSystem.GetNonNullableType(this.matchExpression.ClrType).Equals(typeof(bool))
&& !TypeSystem.GetNonNullableType(value.ClrType).Equals(typeof(bool)))
throw Error.ArgumentWrongType("value", this.matchExpression.ClrType, value.ClrType);
this.matchExpression = value;
}
}
internal SqlExpression Value {
get { return this.valueExpression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.valueExpression != null && !this.valueExpression.ClrType.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.valueExpression.ClrType, value.ClrType);
this.valueExpression = value;
}
}
}
/*
* Searched CASE function:
* CASE
* WHEN BooleanExpression THEN resultExpression
* [ ...n ]
* [
* ELSE elseResultExpression
* ]
* END
*/
internal class SqlSearchedCase : SqlExpression {
private List<SqlWhen> whens;
private SqlExpression @else;
internal SqlSearchedCase(Type clrType, IEnumerable<SqlWhen> whens, SqlExpression @else, Expression sourceExpression)
: base(SqlNodeType.SearchedCase, clrType, sourceExpression) {
if (whens == null)
throw Error.ArgumentNull("whens");
this.whens = new List<SqlWhen>(whens);
if (this.whens.Count == 0)
throw Error.ArgumentOutOfRange("whens");
this.Else = @else;
}
internal List<SqlWhen> Whens {
get { return this.whens; }
}
internal SqlExpression Else {
get { return this.@else; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.@else != null && !this.@else.ClrType.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.@else.ClrType, value.ClrType);
this.@else = value;
}
}
internal override ProviderType SqlType {
get { return this.whens[0].Value.SqlType; }
}
}
/*
* Simple CASE function:
* CASE inputExpression
* WHEN whenExpression THEN resultExpression
* [ ...n ]
* [
* ELSE elseResultExpression
* ]
* END
*/
internal class SqlSimpleCase : SqlExpression {
private SqlExpression expression;
private List<SqlWhen> whens = new List<SqlWhen>();
internal SqlSimpleCase(Type clrType, SqlExpression expr, IEnumerable<SqlWhen> whens, Expression sourceExpression)
: base(SqlNodeType.SimpleCase, clrType, sourceExpression) {
this.Expression = expr;
if (whens == null)
throw Error.ArgumentNull("whens");
this.whens.AddRange(whens);
if (this.whens.Count == 0)
throw Error.ArgumentOutOfRange("whens");
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.expression != null && this.expression.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.expression.ClrType, value.ClrType);
this.expression = value;
}
}
internal List<SqlWhen> Whens {
get { return this.whens; }
}
internal override ProviderType SqlType {
get { return this.whens[0].Value.SqlType; }
}
}
/// <summary>
/// A case statement that must be evaluated on the client. For example, a case statement
/// that contains values of LINK, Element, or Multi-set are not directly handleable by
/// SQL.
///
/// CASE inputExpression
/// WHEN whenExpression THEN resultExpression
/// [ ...n ]
/// END
/// </summary>
internal class SqlClientCase : SqlExpression {
private SqlExpression expression;
private List<SqlClientWhen> whens = new List<SqlClientWhen>();
internal SqlClientCase(Type clrType, SqlExpression expr, IEnumerable<SqlClientWhen> whens, Expression sourceExpression)
: base(SqlNodeType.ClientCase, clrType, sourceExpression) {
this.Expression = expr;
if (whens == null)
throw Error.ArgumentNull("whens");
this.whens.AddRange(whens);
if (this.whens.Count == 0)
throw Error.ArgumentOutOfRange("whens");
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.expression != null && this.expression.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.expression.ClrType, value.ClrType);
this.expression = value;
}
}
internal List<SqlClientWhen> Whens {
get { return this.whens; }
}
internal override ProviderType SqlType {
get { return this.whens[0].Value.SqlType; }
}
}
/// <summary>
/// A single WHEN clause for ClientCase.
/// </summary>
internal class SqlClientWhen {
private SqlExpression matchExpression;
private SqlExpression matchValue;
internal SqlClientWhen(SqlExpression match, SqlExpression value) {
// 'match' may be null when this when represents the ELSE condition.
if (value == null)
throw Error.ArgumentNull("value");
this.Match = match;
this.Value = value;
}
internal SqlExpression Match {
get { return this.matchExpression; }
set {
if (this.matchExpression != null && value != null && this.matchExpression.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.matchExpression.ClrType, value.ClrType);
this.matchExpression = value;
}
}
internal SqlExpression Value {
get { return this.matchValue; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.matchValue != null && this.matchValue.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.matchValue.ClrType, value.ClrType);
this.matchValue = value;
}
}
}
/// <summary>
/// Represents the construction of an object in abstract 'super sql'.
/// The type may be polymorphic. A discriminator field is used to determine
/// which type in a hierarchy should be instantiated.
/// In the common degenerate case where the inheritance hierarchy is 1-deep
/// the discriminator will be a constant SqlValue and there will be one
/// type-case-when corresponding to that type.
/// </summary>
internal class SqlTypeCase : SqlExpression {
private MetaType rowType;
private SqlExpression discriminator;
private List<SqlTypeCaseWhen> whens = new List<SqlTypeCaseWhen>();
ProviderType sqlType;
internal SqlTypeCase(Type clrType, ProviderType sqlType, MetaType rowType, SqlExpression discriminator, IEnumerable<SqlTypeCaseWhen> whens, Expression sourceExpression)
: base(SqlNodeType.TypeCase, clrType, sourceExpression) {
this.Discriminator = discriminator;
if (whens == null)
throw Error.ArgumentNull("whens");
this.whens.AddRange(whens);
if (this.whens.Count == 0)
throw Error.ArgumentOutOfRange("whens");
this.sqlType = sqlType;
this.rowType = rowType;
}
internal SqlExpression Discriminator {
get { return this.discriminator; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.discriminator != null && this.discriminator.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.discriminator.ClrType, value.ClrType);
this.discriminator = value;
}
}
internal List<SqlTypeCaseWhen> Whens {
get { return this.whens; }
}
internal override ProviderType SqlType {
get { return sqlType; }
}
internal MetaType RowType {
get { return this.rowType; }
}
}
/// <summary>
/// Represents one choice of object instantiation type in a type case.
/// When 'match' is the same as type case Discriminator then the corresponding
/// type binding is the one used for instantiation.
/// </summary>
internal class SqlTypeCaseWhen {
private SqlExpression match;
private SqlExpression @new;
internal SqlTypeCaseWhen(SqlExpression match, SqlExpression typeBinding) {
this.Match = match;
this.TypeBinding = typeBinding;
}
internal SqlExpression Match {
get { return this.match; }
set {
if (this.match != null && value != null && this.match.ClrType != value.ClrType)
throw Error.ArgumentWrongType("value", this.match.ClrType, value.ClrType);
this.match = value;
}
}
internal SqlExpression TypeBinding {
get { return this.@new; }
set { this.@new = value; }
}
}
internal class SqlValue : SqlSimpleTypeExpression {
private object value;
private bool isClient;
internal SqlValue(Type clrType, ProviderType sqlType, object value, bool isClientSpecified, Expression sourceExpression)
: base(SqlNodeType.Value, clrType, sqlType, sourceExpression) {
this.value = value;
this.isClient = isClientSpecified;
}
internal object Value {
get { return this.value; }
}
internal bool IsClientSpecified {
get { return this.isClient; }
}
}
internal class SqlParameter : SqlSimpleTypeExpression {
private string name;
private System.Data.ParameterDirection direction;
internal SqlParameter(Type clrType, ProviderType sqlType, string name, Expression sourceExpression)
: base(SqlNodeType.Parameter, clrType, sqlType, sourceExpression) {
if (name == null)
throw Error.ArgumentNull("name");
if (typeof(Type).IsAssignableFrom(clrType))
throw Error.ArgumentWrongValue("clrType");
this.name = name;
this.direction = System.Data.ParameterDirection.Input;
}
internal string Name {
get { return this.name; }
}
internal System.Data.ParameterDirection Direction {
get { return this.direction; }
set { this.direction = value; }
}
}
internal class SqlVariable : SqlSimpleTypeExpression {
private string name;
internal SqlVariable(Type clrType, ProviderType sqlType, string name, Expression sourceExpression)
: base(SqlNodeType.Variable, clrType, sqlType, sourceExpression) {
if (name == null)
throw Error.ArgumentNull("name");
this.name = name;
}
internal string Name {
get { return this.name; }
}
}
internal class SqlMember : SqlSimpleTypeExpression {
private SqlExpression expression;
private MemberInfo member;
internal SqlMember(Type clrType, ProviderType sqlType, SqlExpression expr, MemberInfo member)
: base(SqlNodeType.Member, clrType, sqlType, expr.SourceExpression) {
this.member = member;
this.Expression = expr;
}
internal MemberInfo Member {
get { return this.member; }
}
internal SqlExpression Expression {
get {
return this.expression;
}
set {
if (value == null)
throw Error.ArgumentNull("value");
if (!this.member.ReflectedType.IsAssignableFrom(value.ClrType) &&
!value.ClrType.IsAssignableFrom(this.member.ReflectedType))
throw Error.MemberAccessIllegal(this.member, this.member.ReflectedType, value.ClrType);
this.expression = value;
}
}
}
internal class SqlColumn : SqlExpression {
private SqlAlias alias;
private string name;
private int ordinal;
private MetaDataMember member;
private SqlExpression expression;
private ProviderType sqlType;
internal SqlColumn(Type clrType, ProviderType sqlType, string name, MetaDataMember member, SqlExpression expr, Expression sourceExpression)
: base(SqlNodeType.Column, clrType, sourceExpression) {
if (typeof(Type).IsAssignableFrom(clrType))
throw Error.ArgumentWrongValue("clrType");
this.Name = name;
this.member = member;
this.Expression = expr;
this.Ordinal = -1;
if (sqlType == null)
throw Error.ArgumentNull("sqlType");
this.sqlType = sqlType;
System.Diagnostics.Debug.Assert(sqlType.CanBeColumn);
}
internal SqlColumn(string name, SqlExpression expr)
: this(expr.ClrType, expr.SqlType, name, null, expr, expr.SourceExpression) {
System.Diagnostics.Debug.Assert(expr != null);
}
internal SqlAlias Alias {
get { return this.alias; }
set { this.alias = value; }
}
internal string Name {
get { return this.name; }
set { this.name = value; }
}
internal int Ordinal {
get { return this.ordinal; }
set { this.ordinal = value; }
}
internal MetaDataMember MetaMember {
get { return this.member; }
}
/// <summary>
/// Set the column's Expression. This can change the type of the column.
/// </summary>
internal SqlExpression Expression {
get {
return this.expression;
}
set {
if (value != null) {
if (!this.ClrType.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.ClrType, value.ClrType);
SqlColumnRef cref = value as SqlColumnRef;
if (cref != null && cref.Column == this)
throw Error.ColumnCannotReferToItself();
}
this.expression = value;
}
}
internal override ProviderType SqlType {
get {
if (this.expression != null)
return this.expression.SqlType;
return this.sqlType;
}
}
}
internal class SqlColumnRef : SqlExpression {
private SqlColumn column;
internal SqlColumnRef(SqlColumn col)
: base(SqlNodeType.ColumnRef, col.ClrType, col.SourceExpression) {
this.column = col;
}
internal SqlColumn Column {
get { return this.column; }
}
internal override ProviderType SqlType {
get { return this.column.SqlType; }
}
public override bool Equals(object obj) {
SqlColumnRef cref = obj as SqlColumnRef;
return cref != null && cref.Column == this.column;
}
public override int GetHashCode() {
return this.column.GetHashCode();
}
internal SqlColumn GetRootColumn() {
SqlColumn c = this.column;
while (c.Expression != null && c.Expression.NodeType == SqlNodeType.ColumnRef) {
c = ((SqlColumnRef)c.Expression).Column;
}
return c;
}
}
internal class SqlRow : SqlNode {
private List<SqlColumn> columns;
internal SqlRow(Expression sourceExpression)
: base(SqlNodeType.Row, sourceExpression) {
this.columns = new List<SqlColumn>();
}
internal List<SqlColumn> Columns {
get { return this.columns; }
}
internal SqlColumn Find(string name) {
foreach (SqlColumn c in this.columns) {
if (name == c.Name)
return c;
}
return null;
}
}
internal class SqlMemberAssign : SqlNode {
private MemberInfo member;
private SqlExpression expression;
internal SqlMemberAssign(MemberInfo member, SqlExpression expr)
: base(SqlNodeType.MemberAssign, expr.SourceExpression) {
if (member == null)
throw Error.ArgumentNull("member");
this.member = member;
this.Expression = expr;
}
internal MemberInfo Member {
get { return this.member; }
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.expression = value;
}
}
}
internal class SqlGrouping : SqlSimpleTypeExpression {
private SqlExpression key;
private SqlExpression group;
internal SqlGrouping(Type clrType, ProviderType sqlType, SqlExpression key, SqlExpression group, Expression sourceExpression)
: base(SqlNodeType.Grouping, clrType, sqlType, sourceExpression) {
if (key == null) throw Error.ArgumentNull("key");
if (group == null) throw Error.ArgumentNull("group");
this.key = key;
this.group = group;
}
internal SqlExpression Key {
get { return this.key; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (!this.key.ClrType.IsAssignableFrom(value.ClrType)
&& !value.ClrType.IsAssignableFrom(this.key.ClrType))
throw Error.ArgumentWrongType("value", this.key.ClrType, value.ClrType);
this.key = value;
}
}
internal SqlExpression Group {
get { return this.group; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (value.ClrType != this.group.ClrType)
throw Error.ArgumentWrongType("value", this.group.ClrType, value.ClrType);
this.group = value;
}
}
}
internal class SqlNew : SqlSimpleTypeExpression {
private MetaType metaType;
private ConstructorInfo constructor;
private List<SqlExpression> args;
private List<MemberInfo> argMembers;
private List<SqlMemberAssign> members;
internal SqlNew(MetaType metaType, ProviderType sqlType, ConstructorInfo cons, IEnumerable<SqlExpression> args, IEnumerable<MemberInfo> argMembers, IEnumerable<SqlMemberAssign> members, Expression sourceExpression)
: base(SqlNodeType.New, metaType.Type, sqlType, sourceExpression) {
this.metaType = metaType;
if (cons == null && metaType.Type.IsClass) { // structs do not need to have a constructor
throw Error.ArgumentNull("cons");
}
this.constructor = cons;
this.args = new List<SqlExpression>();
this.argMembers = new List<MemberInfo>();
this.members = new List<SqlMemberAssign>();
if (args != null) {
this.args.AddRange(args);
}
if (argMembers != null) {
this.argMembers.AddRange(argMembers);
}
if (members != null) {
this.members.AddRange(members);
}
}
internal MetaType MetaType {
get { return this.metaType; }
}
internal ConstructorInfo Constructor {
get { return this.constructor; }
}
internal List<SqlExpression> Args {
get { return this.args; }
}
internal List<MemberInfo> ArgMembers {
get { return this.argMembers; }
}
internal List<SqlMemberAssign> Members {
get { return this.members; }
}
internal SqlExpression Find(MemberInfo mi) {
for (int i = 0, n = this.argMembers.Count; i < n; i++) {
MemberInfo argmi = this.argMembers[i];
if (argmi.Name == mi.Name) {
return this.args[i];
}
}
foreach (SqlMemberAssign ma in this.Members) {
if (ma.Member.Name == mi.Name) {
return ma.Expression;
}
}
return null;
}
}
internal class SqlMethodCall : SqlSimpleTypeExpression {
private MethodInfo method;
private SqlExpression obj;
private List<SqlExpression> arguments;
internal SqlMethodCall(Type clrType, ProviderType sqlType, MethodInfo method, SqlExpression obj, IEnumerable<SqlExpression> args, Expression sourceExpression)
: base(SqlNodeType.MethodCall, clrType, sqlType, sourceExpression) {
if (method == null)
throw Error.ArgumentNull("method");
this.method = method;
this.Object = obj;
this.arguments = new List<SqlExpression>();
if (args != null)
this.arguments.AddRange(args);
}
internal MethodInfo Method {
get { return this.method; }
}
internal SqlExpression Object {
get { return this.obj; }
set {
if (value == null && !this.method.IsStatic)
throw Error.ArgumentNull("value");
if (value != null && !this.method.DeclaringType.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.method.DeclaringType, value.ClrType);
this.obj = value;
}
}
internal List<SqlExpression> Arguments {
get { return this.arguments; }
}
}
internal class SqlIncludeScope : SqlNode {
SqlNode child;
internal SqlIncludeScope(SqlNode child, Expression sourceExpression)
: base(SqlNodeType.IncludeScope, sourceExpression) {
this.child = child;
}
internal SqlNode Child {
get {return this.child;}
set {this.child = value;}
}
}
internal class SqlClientArray : SqlSimpleTypeExpression {
private List<SqlExpression> expressions;
internal SqlClientArray(Type clrType, ProviderType sqlType, SqlExpression[ ] exprs, Expression sourceExpression)
: base(SqlNodeType.ClientArray, clrType, sqlType, sourceExpression) {
this.expressions = new List<SqlExpression>();
if (exprs != null)
this.Expressions.AddRange(exprs);
}
internal List<SqlExpression> Expressions {
get { return this.expressions; }
}
}
internal class SqlLink : SqlSimpleTypeExpression {
private MetaType rowType;
private SqlExpression expression;
private MetaDataMember member;
private List<SqlExpression> keyExpressions;
private SqlExpression expansion;
private object id;
internal SqlLink(object id, MetaType rowType, Type clrType, ProviderType sqlType, SqlExpression expression, MetaDataMember member, IEnumerable<SqlExpression> keyExpressions, SqlExpression expansion, Expression sourceExpression)
: base(SqlNodeType.Link, clrType, sqlType, sourceExpression) {
this.id = id;
this.rowType = rowType;
this.expansion = expansion;
this.expression = expression;
this.member = member;
this.keyExpressions = new List<SqlExpression>();
if (keyExpressions != null)
this.keyExpressions.AddRange(keyExpressions);
}
internal MetaType RowType {
get { return this.rowType; }
}
internal SqlExpression Expansion {
get { return this.expansion; }
set { this.expansion = value; }
}
internal SqlExpression Expression {
get { return this.expression; }
set { this.expression = value; }
}
internal MetaDataMember Member {
get { return this.member; }
}
internal List<SqlExpression> KeyExpressions {
get { return this.keyExpressions; }
}
internal object Id {
get { return this.id; }
}
}
internal class SqlExprSet : SqlExpression {
private List<SqlExpression> expressions;
internal SqlExprSet(Type clrType, IEnumerable <SqlExpression> exprs, Expression sourceExpression)
: base(SqlNodeType.ExprSet, clrType, sourceExpression) {
this.expressions = new List<SqlExpression>(exprs);
}
internal List<SqlExpression> Expressions {
get { return this.expressions; }
}
/// <summary>
/// Get the first non-set expression of the set by drilling
/// down the left expressions.
/// </summary>
internal SqlExpression GetFirstExpression() {
SqlExpression expr = expressions[0];
while (expr is SqlExprSet) {
expr = ((SqlExprSet)expr).Expressions[0];
}
return expr;
}
internal override ProviderType SqlType {
get { return this.expressions[0].SqlType; }
}
}
internal class SqlSubSelect : SqlSimpleTypeExpression {
private SqlSelect select;
internal SqlSubSelect(SqlNodeType nt , Type clrType, ProviderType sqlType , SqlSelect select)
: base(nt, clrType, sqlType, select.SourceExpression) {
switch (nt) {
case SqlNodeType.Multiset:
case SqlNodeType.ScalarSubSelect:
case SqlNodeType.Element:
case SqlNodeType.Exists:
break;
default:
throw Error.UnexpectedNode(nt);
}
this.Select = select;
}
internal SqlSelect Select {
get { return this.select; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.select = value;
}
}
}
internal class SqlClientQuery : SqlSimpleTypeExpression {
private SqlSubSelect query;
private List<SqlExpression> arguments;
private List<SqlParameter> parameters;
int ordinal;
internal SqlClientQuery(SqlSubSelect subquery)
: base(SqlNodeType.ClientQuery, subquery.ClrType, subquery.SqlType, subquery.SourceExpression) {
this.query = subquery;
this.arguments = new List<SqlExpression>();
this.parameters = new List<SqlParameter>();
}
internal SqlSubSelect Query {
get { return this.query; }
set {
if (value == null || (this.query != null && this.query.ClrType != value.ClrType))
throw Error.ArgumentWrongType(value, this.query.ClrType, value.ClrType);
this.query = value;
}
}
internal List<SqlExpression> Arguments {
get { return this.arguments; }
}
internal List<SqlParameter> Parameters {
get { return this.parameters; }
}
internal int Ordinal {
get { return this.ordinal; }
set { this.ordinal = value; }
}
}
internal class SqlJoinedCollection : SqlSimpleTypeExpression {
private SqlExpression expression;
private SqlExpression count;
internal SqlJoinedCollection(Type clrType, ProviderType sqlType, SqlExpression expression, SqlExpression count, Expression sourceExpression)
: base(SqlNodeType.JoinedCollection, clrType, sqlType, sourceExpression) {
this.expression = expression;
this.count = count;
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null || this.expression != null && this.expression.ClrType != value.ClrType)
throw Error.ArgumentWrongType(value, this.expression.ClrType, value.ClrType);
this.expression = value;
}
}
internal SqlExpression Count {
get { return this.count; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (value.ClrType != typeof(int))
throw Error.ArgumentWrongType(value, typeof(int), value.ClrType);
this.count = value;
}
}
}
internal class SqlUpdate : SqlStatement {
private SqlSelect select;
private List<SqlAssign> assignments;
internal SqlUpdate(SqlSelect select, IEnumerable<SqlAssign> assignments, Expression sourceExpression)
: base(SqlNodeType.Update, sourceExpression) {
this.Select = select;
this.assignments = new List<SqlAssign>(assignments);
}
internal SqlSelect Select {
get { return this.select; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.select = value;
}
}
internal List<SqlAssign> Assignments {
get { return this.assignments; }
}
}
internal class SqlInsert : SqlStatement {
private SqlTable table;
private SqlRow row;
private SqlExpression expression;
private SqlColumn outputKey;
private bool outputToLocal;
internal SqlInsert(SqlTable table, SqlExpression expr, Expression sourceExpression)
: base(SqlNodeType.Insert, sourceExpression) {
this.Table = table;
this.Expression = expr;
this.Row = new SqlRow(sourceExpression);
}
internal SqlTable Table {
get { return this.table; }
set {
if (value == null)
throw Error.ArgumentNull("null");
this.table = value;
}
}
internal SqlRow Row {
get { return this.row; }
set { this.row = value; }
}
internal SqlExpression Expression {
get { return this.expression; }
set {
if (value == null)
throw Error.ArgumentNull("null");
if (!this.table.RowType.Type.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.table.RowType, value.ClrType);
this.expression = value;
}
}
internal SqlColumn OutputKey {
get { return this.outputKey; }
set { this.outputKey = value; }
}
internal bool OutputToLocal {
get { return this.outputToLocal; }
set { this.outputToLocal = value; }
}
}
internal class SqlDelete : SqlStatement {
private SqlSelect select;
internal SqlDelete(SqlSelect select, Expression sourceExpression)
: base(SqlNodeType.Delete, sourceExpression) {
this.Select = select;
}
internal SqlSelect Select {
get { return this.select; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.select = value;
}
}
}
internal class SqlBlock : SqlStatement {
private List<SqlStatement> statements;
internal SqlBlock(Expression sourceExpression)
: base(SqlNodeType.Block, sourceExpression) {
this.statements = new List<SqlStatement>();
}
internal List<SqlStatement> Statements {
get { return this.statements; }
}
}
internal class SqlAssign : SqlStatement {
private SqlExpression leftValue;
private SqlExpression rightValue;
internal SqlAssign(SqlExpression lValue, SqlExpression rValue, Expression sourceExpression)
: base(SqlNodeType.Assign, sourceExpression) {
this.LValue = lValue;
this.RValue = rValue;
}
internal SqlExpression LValue {
get { return this.leftValue; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.rightValue != null && !value.ClrType.IsAssignableFrom(this.rightValue.ClrType))
throw Error.ArgumentWrongType("value", this.rightValue.ClrType, value.ClrType);
this.leftValue = value;
}
}
internal SqlExpression RValue {
get { return this.rightValue; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (this.leftValue != null && !this.leftValue.ClrType.IsAssignableFrom(value.ClrType))
throw Error.ArgumentWrongType("value", this.leftValue.ClrType, value.ClrType);
this.rightValue = value;
}
}
}
internal class SqlDoNotVisitExpression : SqlExpression {
private SqlExpression expression;
internal SqlDoNotVisitExpression(SqlExpression expr)
: base(SqlNodeType.DoNotVisit, expr.ClrType, expr.SourceExpression) {
if (expr == null)
throw Error.ArgumentNull("expr");
this.expression = expr;
}
internal SqlExpression Expression {
get { return this.expression; }
}
internal override ProviderType SqlType {
get { return this.expression.SqlType; }
}
}
internal class SqlOptionalValue : SqlSimpleTypeExpression {
private SqlExpression hasValue;
private SqlExpression expressionValue;
internal SqlOptionalValue( SqlExpression hasValue, SqlExpression value)
: base(SqlNodeType.OptionalValue, value.ClrType, value.SqlType, value.SourceExpression) {
this.HasValue = hasValue;
this.Value = value;
}
internal SqlExpression HasValue {
get { return this.hasValue; }
set {
if (value == null)
throw Error.ArgumentNull("value");
this.hasValue = value;
}
}
internal SqlExpression Value {
get { return this.expressionValue; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (value.ClrType != this.ClrType)
throw Error.ArgumentWrongType("value", this.ClrType, value.ClrType);
this.expressionValue = value;
}
}
}
internal class SqlFunctionCall : SqlSimpleTypeExpression {
private string name;
private List<SqlExpression> arguments;
internal SqlFunctionCall(Type clrType, ProviderType sqlType, string name, IEnumerable <SqlExpression > args , Expression source)
: this(SqlNodeType.FunctionCall, clrType , sqlType, name, args, source) {
}
internal SqlFunctionCall(SqlNodeType nodeType, Type clrType, ProviderType sqlType, string name , IEnumerable <SqlExpression> args , Expression source)
: base(nodeType, clrType, sqlType, source) {
this.name = name;
this.arguments = new List<SqlExpression>(args);
}
internal string Name {
get { return this.name; }
}
internal List<SqlExpression> Arguments {
get { return this.arguments; }
}
}
/// <summary>
/// This class is used to represent a table value function. It inherits normal function
/// call functionality, and adds TVF specific members.
/// </summary>
internal class SqlTableValuedFunctionCall : SqlFunctionCall {
private MetaType rowType;
private List<SqlColumn> columns;
internal SqlTableValuedFunctionCall(MetaType rowType, Type clrType, ProviderType sqlType, string name, IEnumerable <SqlExpression > args , Expression source)
: base(SqlNodeType.TableValuedFunctionCall, clrType , sqlType, name, args, source) {
this.rowType = rowType;
this.columns = new List<SqlColumn>();
}
internal MetaType RowType {
get { return this.rowType; }
}
internal List<SqlColumn> Columns {
get { return this.columns; }
}
internal SqlColumn Find(string name) {
foreach (SqlColumn c in this.Columns) {
if (c.Name == name)
return c;
}
return null;
}
}
internal class SqlSharedExpression : SqlExpression {
private SqlExpression expr;
internal SqlSharedExpression(SqlExpression expr)
: base(SqlNodeType.SharedExpression, expr.ClrType, expr.SourceExpression) {
this.expr = expr;
}
internal SqlExpression Expression {
get { return this.expr; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (!this.ClrType.IsAssignableFrom(value.ClrType)
&& !value.ClrType.IsAssignableFrom(this.ClrType))
throw Error.ArgumentWrongType("value", this.ClrType, value.ClrType);
this.expr = value;
}
}
internal override ProviderType SqlType {
get { return this.expr.SqlType; }
}
}
internal class SqlSharedExpressionRef : SqlExpression {
private SqlSharedExpression expr;
internal SqlSharedExpressionRef(SqlSharedExpression expr)
: base(SqlNodeType.SharedExpressionRef, expr.ClrType, expr.SourceExpression) {
this.expr = expr;
}
internal SqlSharedExpression SharedExpression {
get { return this.expr; }
}
internal override ProviderType SqlType {
get { return this.expr.SqlType; }
}
}
internal class SqlSimpleExpression : SqlExpression {
private SqlExpression expr;
internal SqlSimpleExpression(SqlExpression expr)
: base(SqlNodeType.SimpleExpression, expr.ClrType, expr.SourceExpression) {
this.expr = expr;
}
internal SqlExpression Expression {
get { return this.expr; }
set {
if (value == null)
throw Error.ArgumentNull("value");
if (!TypeSystem.GetNonNullableType(this.ClrType).IsAssignableFrom(TypeSystem.GetNonNullableType(value.ClrType)))
throw Error.ArgumentWrongType("value", this.ClrType, value.ClrType);
this.expr = value;
}
}
internal override ProviderType SqlType {
get { return this.expr.SqlType; }
}
}
internal class SqlClientParameter : SqlSimpleTypeExpression {
// Expression<Func<object[], T>>
LambdaExpression accessor;
internal SqlClientParameter(Type clrType, ProviderType sqlType, LambdaExpression accessor, Expression sourceExpression):
base(SqlNodeType.ClientParameter, clrType, sqlType, sourceExpression) {
this.accessor = accessor;
}
internal LambdaExpression Accessor {
get { return this.accessor; }
}
}
}
|