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
|
//------------------------------------------------------------------------------
// <copyright file="BaseTemplateCodeDomTreeGenerator.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Compilation {
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Web.Caching;
using System.Web.Configuration;
using System.Web.UI;
using System.Web.Util;
using Debug = System.Web.Util.Debug;
internal abstract class BaseTemplateCodeDomTreeGenerator : BaseCodeDomTreeGenerator {
protected static readonly string buildMethodPrefix = "__BuildControl";
protected static readonly string extractTemplateValuesMethodPrefix = "__ExtractValues";
protected static readonly string templateSourceDirectoryName = "AppRelativeTemplateSourceDirectory";
protected static readonly string applyStyleSheetMethodName = "ApplyStyleSheetSkin";
protected static readonly string pagePropertyName = "Page";
internal const string skinIDPropertyName = "SkinID";
private const string _localVariableRef = "__ctrl";
private TemplateParser _parser;
private int _controlCount;
// Minimum literal string length for it to be placed in the resource
private const int minLongLiteralStringLength = 256;
private const string renderMethodParameterName = "__w";
// Used in designer mode
internal const string tempObjectVariable = "__o";
/*
* Set some fields that are needed for code generation
*/
internal BaseTemplateCodeDomTreeGenerator(TemplateParser parser) : base(parser) {
_parser = parser;
}
private TemplateParser Parser {
get {
return _parser;
}
}
private CodeStatement GetOutputWriteStatement(CodeExpression expr, bool encode) {
// Call HttpUtility.HtmlEncode on the expression if needed
if (encode) {
expr = new CodeMethodInvokeExpression(
new CodeMethodReferenceExpression(
new CodeTypeReferenceExpression(typeof(HttpUtility)),
"HtmlEncode"),
expr);
}
CodeMethodInvokeExpression methodInvoke = new CodeMethodInvokeExpression();
CodeExpressionStatement call = new CodeExpressionStatement(methodInvoke);
methodInvoke.Method.TargetObject = new CodeArgumentReferenceExpression(renderMethodParameterName);
methodInvoke.Method.MethodName = "Write";
methodInvoke.Parameters.Add(expr);
return call;
}
/// <devdoc>
/// Append an output.Write() statement to a Render method
/// </devdoc>
private void AddOutputWriteStatement(CodeStatementCollection methodStatements,
CodeExpression expr,
CodeLinePragma linePragma) {
CodeStatement outputWriteStmt = GetOutputWriteStatement(expr, false /*encode*/);
if (linePragma != null)
outputWriteStmt.LinePragma = linePragma;
methodStatements.Add(outputWriteStmt);
}
private void AddOutputWriteStringStatement(CodeStatementCollection methodStatements,
String s) {
if (!UseResourceLiteralString(s)) {
AddOutputWriteStatement(methodStatements, new CodePrimitiveExpression(s), null);
return;
}
// Add the string to the resource builder, and get back its offset/size
int offset, size;
bool fAsciiOnly;
_stringResourceBuilder.AddString(s, out offset, out size, out fAsciiOnly);
// e.g. WriteUTF8ResourceString(output, 314, 20);
CodeMethodInvokeExpression methodInvoke = new CodeMethodInvokeExpression();
CodeExpressionStatement call = new CodeExpressionStatement(methodInvoke);
methodInvoke.Method.TargetObject = new CodeThisReferenceExpression();
methodInvoke.Method.MethodName = "WriteUTF8ResourceString";
methodInvoke.Parameters.Add(new CodeArgumentReferenceExpression(renderMethodParameterName));
methodInvoke.Parameters.Add(new CodePrimitiveExpression(offset));
methodInvoke.Parameters.Add(new CodePrimitiveExpression(size));
methodInvoke.Parameters.Add(new CodePrimitiveExpression(fAsciiOnly));
methodStatements.Add(call);
}
private static void BuildAddParsedSubObjectStatement(
CodeStatementCollection statements, CodeExpression ctrlToAdd, CodeLinePragma linePragma, CodeExpression ctrlRefExpr, ref bool gotParserVariable) {
if (!gotParserVariable) {
// e.g. IParserAccessor __parser = ((IParserAccessor)__ctrl);
CodeVariableDeclarationStatement parserDeclaration = new CodeVariableDeclarationStatement();
parserDeclaration.Name = "__parser";
parserDeclaration.Type = new CodeTypeReference(typeof(IParserAccessor));
parserDeclaration.InitExpression = new CodeCastExpression(
typeof(IParserAccessor),
ctrlRefExpr);
statements.Add(parserDeclaration);
gotParserVariable = true;
}
// e.g. __parser.AddParsedSubObject({{controlName}});
CodeMethodInvokeExpression methCallExpression = new CodeMethodInvokeExpression(
new CodeVariableReferenceExpression("__parser"), "AddParsedSubObject");
methCallExpression.Parameters.Add(ctrlToAdd);
CodeExpressionStatement methCallStatement = new CodeExpressionStatement(methCallExpression);
methCallStatement.LinePragma = linePragma;
statements.Add(methCallStatement);
}
internal virtual CodeExpression BuildPagePropertyReferenceExpression() {
return new CodePropertyReferenceExpression(new CodeThisReferenceExpression(), pagePropertyName);
}
/*
* Build the data tree for a control's build method
*/
protected CodeMemberMethod BuildBuildMethod(ControlBuilder builder, bool fTemplate,
bool fInTemplate, bool topLevelControlInTemplate, PropertyEntry pse, bool fControlSkin) {
Debug.Assert(builder.ServiceProvider == null);
ServiceContainer container = new ServiceContainer();
container.AddService(typeof(IFilterResolutionService), HttpCapabilitiesBase.EmptyHttpCapabilitiesBase);
try {
builder.SetServiceProvider(container);
builder.EnsureEntriesSorted();
}
finally {
builder.SetServiceProvider(null);
}
string methodName = GetMethodNameForBuilder(buildMethodPrefix, builder);
Type ctrlType = GetCtrlTypeForBuilder(builder, fTemplate);
bool fStandardControl = false;
bool fControlFieldDeclared = false;
CodeMemberMethod method = new CodeMemberMethod();
AddDebuggerNonUserCodeAttribute(method);
method.Name = methodName;
method.Attributes = MemberAttributes.Private | MemberAttributes.Final;
_sourceDataClass.Members.Add(method);
// If it's for a template or a r/o complex prop, pass a parameter of the control's type
ComplexPropertyEntry cpse = pse as ComplexPropertyEntry;
if (fTemplate || (cpse != null && cpse.ReadOnly)) {
if (builder is RootBuilder)
method.Parameters.Add(new CodeParameterDeclarationExpression(_sourceDataClass.Name, "__ctrl"));
else
method.Parameters.Add(new CodeParameterDeclarationExpression(ctrlType, "__ctrl"));
}
else {
// If it's a standard control, return it from the method
if (typeof(Control).IsAssignableFrom(builder.ControlType)) {
fStandardControl = true;
}
Debug.Assert(builder.ControlType != null);
if (builder.ControlType != null) {
if (fControlSkin) {
// ReturnType needs to be of type Control in a skin file to match
// the controlskin delegate.
if (fStandardControl) {
method.ReturnType = new CodeTypeReference(typeof(Control));
}
}
else {
PartialCachingAttribute cacheAttrib = (PartialCachingAttribute)
TypeDescriptor.GetAttributes(builder.ControlType)[typeof(PartialCachingAttribute)];
if (cacheAttrib != null) {
method.ReturnType = new CodeTypeReference(typeof(Control));
}
else {
// Otherwise the return type is always the actual component type.
method.ReturnType = CodeDomUtility.BuildGlobalCodeTypeReference(builder.ControlType);
}
}
}
// A control field declaration is required, this field will be returned
// in the method.
fControlFieldDeclared = true;
}
// Add a control parameter if it's a ControlSkin
if (fControlSkin) {
method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(Control).FullName, "ctrl"));
}
BuildBuildMethodInternal(builder, builder.ControlType, fInTemplate, topLevelControlInTemplate, pse,
method.Statements, fStandardControl, fControlFieldDeclared, null, fControlSkin);
return method;
}
/* Helper method to generate the content of the control's build method
* Type _ctrl;
* _ctrl = new Type();
* ...
* return _ctrl;
*/
[SuppressMessage("Microsoft.Usage", "CA2303:FlagTypeGetHashCode", Justification = "This is used for caching - it's ok to supress.")]
private void BuildBuildMethodInternal(ControlBuilder builder, Type ctrlType, bool fInTemplate,
bool topLevelControlInTemplate, PropertyEntry pse, CodeStatementCollection statements,
bool fStandardControl, bool fControlFieldDeclared, string deviceFilter, bool fControlSkin) {
// Same linePragma in the entire build method
CodeLinePragma linePragma = CreateCodeLinePragma(builder);
CodeObjectCreateExpression newExpr;
CodeExpressionStatement methCallStatement;
CodeMethodInvokeExpression methCallExpression;
CodeExpression ctrlRefExpr;
if (fControlSkin) {
CodeCastExpression cast = new CodeCastExpression(builder.ControlType.FullName,
new CodeArgumentReferenceExpression("ctrl"));
statements.Add(new CodeVariableDeclarationStatement(builder.ControlType.FullName, "__ctrl", cast));
ctrlRefExpr = new CodeVariableReferenceExpression("__ctrl");
}
// Not a control. ie. it's for a template or a r/o complex prop,
else if (!fControlFieldDeclared) {
ctrlRefExpr = new CodeArgumentReferenceExpression("__ctrl");
}
else {
CodeTypeReference ctrlTypeRef = CodeDomUtility.BuildGlobalCodeTypeReference(ctrlType);
newExpr = new CodeObjectCreateExpression(ctrlTypeRef);
// If it has a ConstructorNeedsTagAttribute, it needs a tag name
ConstructorNeedsTagAttribute cnta = (ConstructorNeedsTagAttribute)
TypeDescriptor.GetAttributes(ctrlType)[typeof(ConstructorNeedsTagAttribute)];
if (cnta != null && cnta.NeedsTag) {
newExpr.Parameters.Add(new CodePrimitiveExpression(builder.TagName));
}
// If it's for a DataBoundLiteralControl, pass it the number of
// entries in the constructor
DataBoundLiteralControlBuilder dataBoundBuilder = builder as DataBoundLiteralControlBuilder;
if (dataBoundBuilder != null) {
newExpr.Parameters.Add(new CodePrimitiveExpression(
dataBoundBuilder.GetStaticLiteralsCount()));
newExpr.Parameters.Add(new CodePrimitiveExpression(
dataBoundBuilder.GetDataBoundLiteralCount()));
}
// e.g. {{controlTypeName}} __ctrl;
statements.Add(new CodeVariableDeclarationStatement(ctrlTypeRef, "__ctrl"));
ctrlRefExpr = new CodeVariableReferenceExpression("__ctrl");
// e.g. __ctrl = new {{controlTypeName}}();
CodeAssignStatement setCtl = new CodeAssignStatement(ctrlRefExpr, newExpr);
setCtl.LinePragma = linePragma;
statements.Add(setCtl);
if (!builder.IsGeneratedID) {
// Assign the local control reference to the global control variable
CodeFieldReferenceExpression ctrlNameExpr = new CodeFieldReferenceExpression(new CodeThisReferenceExpression(), builder.ID);
// e.g. {{controlName}} = __ctrl;
CodeAssignStatement underscoreCtlSet = new CodeAssignStatement(ctrlNameExpr, ctrlRefExpr);
statements.Add(underscoreCtlSet);
}
// Don't do this if the control is itself a TemplateControl, in which case it
// will point its TemplateControl property to itself (instead of its parent
// TemplateControl). VSWhidbey 214356.
if (topLevelControlInTemplate && !typeof(TemplateControl).IsAssignableFrom(ctrlType)) {
statements.Add(BuildTemplatePropertyStatement(ctrlRefExpr));
}
if (fStandardControl) {
// e.g. __ctrl.SkinID = {{skinID}};
if (builder.SkinID != null) {
CodeAssignStatement set = new CodeAssignStatement();
set.Left = new CodePropertyReferenceExpression(ctrlRefExpr, skinIDPropertyName);
set.Right = new CodePrimitiveExpression(builder.SkinID);
statements.Add(set);
}
// e.g. __ctrl.ApplyStyleSheetSkin(this);
if (ThemeableAttribute.IsTypeThemeable(ctrlType)) {
// e.g. __ctrl.ApplyStyleSheetSkin(this.Page);
CodeMethodInvokeExpression applyStyleSheetExpr = new CodeMethodInvokeExpression(ctrlRefExpr, applyStyleSheetMethodName);
applyStyleSheetExpr.Parameters.Add(BuildPagePropertyReferenceExpression());
statements.Add(applyStyleSheetExpr);
}
}
}
// Process the templates
if (builder.TemplatePropertyEntries.Count > 0) {
// Used to deal with the device filter conditionals
CodeStatementCollection currentStmts;
CodeStatementCollection nextStmts = statements;
PropertyEntry previous = null;
foreach (TemplatePropertyEntry pseSub in builder.TemplatePropertyEntries) {
currentStmts = nextStmts;
HandleDeviceFilterConditional(ref previous, pseSub, statements, ref currentStmts, out nextStmts);
string controlName = pseSub.Builder.ID;
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
newDelegate.DelegateType = new CodeTypeReference(typeof(BuildTemplateMethod));
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = buildMethodPrefix + controlName;
CodeAssignStatement set = new CodeAssignStatement();
if (pseSub.PropertyInfo != null) {
set.Left = new CodePropertyReferenceExpression(ctrlRefExpr, pseSub.Name);
}
else {
set.Left = new CodeFieldReferenceExpression(ctrlRefExpr, pseSub.Name);
}
if (pseSub.BindableTemplate) {
// e.g. __ctrl.{{templateName}} = new CompiledBindableTemplateBuilder(
// e.g. new BuildTemplateMethod(this.__BuildControl {{controlName}}),
// e.g. new ExtractTemplateValuesMethod(this.__ExtractValues {{controlName}}));
CodeExpression newExtractValuesDelegate;
if (pseSub.Builder.HasTwoWayBoundProperties) {
newExtractValuesDelegate = new CodeDelegateCreateExpression();
((CodeDelegateCreateExpression)newExtractValuesDelegate).DelegateType = new CodeTypeReference(typeof(ExtractTemplateValuesMethod));
((CodeDelegateCreateExpression)newExtractValuesDelegate).TargetObject = new CodeThisReferenceExpression();
((CodeDelegateCreateExpression)newExtractValuesDelegate).MethodName = extractTemplateValuesMethodPrefix + controlName;
}
else {
newExtractValuesDelegate = new CodePrimitiveExpression(null);
}
newExpr = new CodeObjectCreateExpression(typeof(CompiledBindableTemplateBuilder));
newExpr.Parameters.Add(newDelegate);
newExpr.Parameters.Add(newExtractValuesDelegate);
}
else {
// e.g. __ctrl.{{templateName}} = new CompiledTemplateBuilder(
// e.g. new BuildTemplateMethod(this.__BuildControl {{controlName}}));
newExpr = new CodeObjectCreateExpression(typeof(CompiledTemplateBuilder));
newExpr.Parameters.Add(newDelegate);
}
set.Right = newExpr;
set.LinePragma = CreateCodeLinePragma(pseSub.Builder);
currentStmts.Add(set);
}
}
// Is this BuilderData for a declarative control? If so initialize it (75330)
// Only do this is the control field has been declared (i.e. not with templates)
if (typeof(UserControl).IsAssignableFrom(ctrlType) && fControlFieldDeclared && !fControlSkin) {
// e.g. _ctrl.InitializeAsUserControl(Context, Page);
methCallExpression = new CodeMethodInvokeExpression(ctrlRefExpr, "InitializeAsUserControl");
methCallExpression.Parameters.Add(new CodePropertyReferenceExpression(new CodeThisReferenceExpression(), pagePropertyName));
methCallStatement = new CodeExpressionStatement(methCallExpression);
methCallStatement.LinePragma = linePragma;
statements.Add(methCallStatement);
}
// Process the simple attributes
if (builder.SimplePropertyEntries.Count > 0) {
// Used to deal with the device filter conditionals
CodeStatementCollection currentStmts;
CodeStatementCollection nextStmts = statements;
PropertyEntry previous = null;
foreach (SimplePropertyEntry pseSub in builder.SimplePropertyEntries) {
currentStmts = nextStmts;
HandleDeviceFilterConditional(ref previous, pseSub, statements, ref currentStmts, out nextStmts);
CodeStatement statement = pseSub.GetCodeStatement(this, ctrlRefExpr);
statement.LinePragma = linePragma;
currentStmts.Add(statement);
}
}
// Call the helper method for allowing page developers to customize culture settings
if (typeof(Page).IsAssignableFrom(ctrlType) && !fControlSkin) {
// e.g. this.InitializeCulture();
methCallExpression = new CodeMethodInvokeExpression(new CodeThisReferenceExpression(), "InitializeCulture");
methCallStatement = new CodeExpressionStatement(methCallExpression);
methCallStatement.LinePragma = linePragma;
statements.Add(methCallStatement);
}
// Automatic template support (i.e. <asp:template name=SomeTemplate/>)
CodeMethodInvokeExpression instantiateTemplateExpr = null;
CodeConditionStatement templateIfStmt = null;
CodeStatementCollection buildSubControlBlock = statements;
string autoTemplateName = null;
if (builder is System.Web.UI.WebControls.ContentPlaceHolderBuilder) {
string templateName = ((System.Web.UI.WebControls.ContentPlaceHolderBuilder)builder).Name;
autoTemplateName = MasterPageControlBuilder.AutoTemplatePrefix + templateName;
Debug.Assert(autoTemplateName != null && autoTemplateName.Length > 0, "Template Name is empty.");
// Generate a private field and public property for the ITemplate
string fieldName = "__"+ autoTemplateName;
Type containerType = builder.BindingContainerType;
// Use the base class or template type if INamingContainer cannot be found.
if (!typeof(INamingContainer).IsAssignableFrom(containerType)) {
if (typeof(INamingContainer).IsAssignableFrom(Parser.BaseType)) {
containerType = Parser.BaseType;
}
else {
// This should not occur as all base classes are namingcontainers.
Debug.Assert(false, "baseClassType is not an INamingContainer");
containerType = typeof(System.Web.UI.Control);
}
}
CodeAttributeDeclarationCollection attrDeclarations = new CodeAttributeDeclarationCollection();
CodeAttributeDeclaration templateContainerAttrDeclaration = new CodeAttributeDeclaration(
"TemplateContainer",
new CodeAttributeArgument[] {
new CodeAttributeArgument(new CodeTypeOfExpression(containerType))});
attrDeclarations.Add(templateContainerAttrDeclaration);
// If the template control is in a template, assume its container allows multiple instances,
// otherwise set the TemplateInstanceAttribute
if (fInTemplate == false) {
CodeAttributeDeclaration templateInstanceAttrDeclaration = new CodeAttributeDeclaration(
"TemplateInstanceAttribute",
new CodeAttributeArgument[] {
new CodeAttributeArgument(
new CodeFieldReferenceExpression(new CodeTypeReferenceExpression(typeof(TemplateInstance)),
"Single"))});
attrDeclarations.Add(templateInstanceAttrDeclaration);
}
BuildFieldAndAccessorProperty(autoTemplateName, fieldName, typeof(ITemplate), false /*fStatic*/, attrDeclarations);
CodeExpression templateFieldRef = new CodeFieldReferenceExpression(
new CodeThisReferenceExpression(), fieldName);
if (builder is System.Web.UI.WebControls.ContentPlaceHolderBuilder) {
// We generate something like this:
// if (this.ContentTemplates != null) {
// this.__Template_TestTemplate = (ITemplate)this.ContentTemplates[{templateName}];
// }
CodePropertyReferenceExpression contentTemplatesFieldRef =
new CodePropertyReferenceExpression(new CodeThisReferenceExpression(), "ContentTemplates");
CodeAssignStatement setStatement = new CodeAssignStatement();
setStatement.Left = templateFieldRef;
setStatement.Right = new CodeCastExpression(typeof(ITemplate), new CodeIndexerExpression(contentTemplatesFieldRef,
new CodePrimitiveExpression(templateName)));
CodeConditionStatement contentTemplateIfStmt = new CodeConditionStatement();
CodeBinaryOperatorExpression contentNullCheckExpr = new CodeBinaryOperatorExpression(contentTemplatesFieldRef, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null));
CodeMethodInvokeExpression removeExpr = new CodeMethodInvokeExpression(contentTemplatesFieldRef, "Remove");
removeExpr.Parameters.Add(new CodePrimitiveExpression(templateName));
contentTemplateIfStmt.Condition = contentNullCheckExpr;
contentTemplateIfStmt.TrueStatements.Add(setStatement);
statements.Add(contentTemplateIfStmt);
}
// We generate something like this:
// if ((this.__Template_TestTemplate != null)) {
// // For 2.0:
// this.__Template_TestTemplate.InstantiateIn(__ctrl);
// // For 4.0, use a new method. This is for fixing Dev10 bug 776195.
// this.InstantiateInContentPlaceHolder(__ctrl, this.__Template_TestTemplate);
// }
// else {
// // normal sub control building code
// }
if (MultiTargetingUtil.IsTargetFramework40OrAbove) {
instantiateTemplateExpr = new CodeMethodInvokeExpression(new CodeThisReferenceExpression(), "InstantiateInContentPlaceHolder");
instantiateTemplateExpr.Parameters.Add(ctrlRefExpr);
instantiateTemplateExpr.Parameters.Add(templateFieldRef);
}
else {
instantiateTemplateExpr = new CodeMethodInvokeExpression(templateFieldRef, "InstantiateIn");
instantiateTemplateExpr.Parameters.Add(ctrlRefExpr);
}
templateIfStmt = new CodeConditionStatement();
templateIfStmt.Condition = new CodeBinaryOperatorExpression(templateFieldRef, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null));
templateIfStmt.TrueStatements.Add(new CodeExpressionStatement(instantiateTemplateExpr));
buildSubControlBlock = templateIfStmt.FalseStatements;
statements.Add(templateIfStmt);
}
ICollection contentBuilderEntries = null;
if (builder is FileLevelPageControlBuilder) {
contentBuilderEntries = ((FileLevelPageControlBuilder)builder).ContentBuilderEntries;
if (contentBuilderEntries != null) {
CodeStatementCollection currentStmts;
CodeStatementCollection nextStmts = statements;
PropertyEntry previous = null;
foreach (TemplatePropertyEntry entry in contentBuilderEntries) {
System.Web.UI.WebControls.ContentBuilderInternal child =
(System.Web.UI.WebControls.ContentBuilderInternal)entry.Builder;
currentStmts = nextStmts;
HandleDeviceFilterConditional(ref previous, entry, statements, ref currentStmts, out nextStmts);
string controlName = child.ID;
string contentPlaceHolderID = child.ContentPlaceHolder;
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
newDelegate.DelegateType = new CodeTypeReference(typeof(BuildTemplateMethod));
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = buildMethodPrefix + controlName;
// e.g. this.AddContentTemplate(contentPlaceHolderID, new CompiledTemplateBuilder(
// e.g. new BuildTemplateMethod(this.__BuildControl {{controlName}}));
CodeObjectCreateExpression cocExpr = new CodeObjectCreateExpression(typeof(CompiledTemplateBuilder));
cocExpr.Parameters.Add(newDelegate);
CodeMethodInvokeExpression cmiExpression = new CodeMethodInvokeExpression(new CodeThisReferenceExpression(), "AddContentTemplate");
cmiExpression.Parameters.Add(new CodePrimitiveExpression(contentPlaceHolderID));
cmiExpression.Parameters.Add(cocExpr);
CodeExpressionStatement ceStatement = new CodeExpressionStatement(cmiExpression);
ceStatement.LinePragma = CreateCodeLinePragma((ControlBuilder)child);
currentStmts.Add(ceStatement);
}
}
}
if (builder is DataBoundLiteralControlBuilder) {
// If it's a DataBoundLiteralControl, build it by calling SetStaticString
// on all the static literal strings.
int i = -1;
foreach (object child in builder.SubBuilders) {
i++;
// Ignore it if it's null
if (child == null)
continue;
// Only deal with the strings here, which have even index
if (i % 2 == 1) {
Debug.Assert(child is CodeBlockBuilder, "child is CodeBlockBuilder");
continue;
}
string s = (string) child;
// e.g. __ctrl.SetStaticString(3, "literal string");
methCallExpression = new CodeMethodInvokeExpression(ctrlRefExpr, "SetStaticString");
methCallExpression.Parameters.Add(new CodePrimitiveExpression(i/2));
methCallExpression.Parameters.Add(new CodePrimitiveExpression(s));
statements.Add(new CodeExpressionStatement(methCallExpression));
}
}
// Process the children
else if (builder.SubBuilders != null) {
bool gotParserVariable = false;
int localVarIndex = 1;
foreach (object child in builder.SubBuilders) {
if (child is ControlBuilder && !(child is CodeBlockBuilder) && !(child is CodeStatementBuilder) && !(child is System.Web.UI.WebControls.ContentBuilderInternal)) {
ControlBuilder ctrlBuilder = (ControlBuilder) child;
if (fControlSkin) {
throw new HttpParseException(SR.GetString(SR.ControlSkin_cannot_contain_controls),
null,
builder.VirtualPath, null, builder.Line);
}
PartialCachingAttribute cacheAttrib = (PartialCachingAttribute)
TypeDescriptor.GetAttributes(ctrlBuilder.ControlType)[typeof(PartialCachingAttribute)];
methCallExpression = new CodeMethodInvokeExpression(new CodeThisReferenceExpression(),
buildMethodPrefix + ctrlBuilder.ID);
methCallStatement = new CodeExpressionStatement(methCallExpression);
if (cacheAttrib == null) {
string localVariableRef = _localVariableRef + (localVarIndex++).ToString(CultureInfo.InvariantCulture);
// Variable reference to the local control variable
CodeVariableReferenceExpression childCtrlRefExpr = new CodeVariableReferenceExpression(localVariableRef);
// e.g. {{controlTypeName}} ctrl5;
CodeTypeReference ctrlTypeReference =
CodeDomUtility.BuildGlobalCodeTypeReference(ctrlBuilder.ControlType);
buildSubControlBlock.Add(new CodeVariableDeclarationStatement(ctrlTypeReference, localVariableRef));
// e.g. ctrl5 = __BuildControl__control6();
CodeAssignStatement setCtl = new CodeAssignStatement(childCtrlRefExpr, methCallExpression);
setCtl.LinePragma = linePragma;
buildSubControlBlock.Add(setCtl);
// If there is no caching on the control, just create it and add it
// e.g. __parser.AddParsedSubObject(ctrl5);
BuildAddParsedSubObjectStatement(
buildSubControlBlock,
childCtrlRefExpr,
linePragma,
ctrlRefExpr,
ref gotParserVariable);
}
else {
string providerName = null;
// Only use the providerName parameter when targeting 4.0 and above
bool useProviderName = MultiTargetingUtil.IsTargetFramework40OrAbove;
if (useProviderName) {
providerName = cacheAttrib.ProviderName;
if (providerName == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) {
providerName = null;
}
}
// The control's output is getting cached. Call
// StaticPartialCachingControl.BuildCachedControl to do the work.
// e.g. StaticPartialCachingControl.BuildCachedControl(__ctrl, Request, "e4192e6d-cbe0-4df5-b516-682c10415590", __pca, new System.Web.UI.BuildMethod(this.__BuildControlt1));
CodeMethodInvokeExpression call = new CodeMethodInvokeExpression();
call.Method.TargetObject = new CodeTypeReferenceExpression(typeof(System.Web.UI.StaticPartialCachingControl));
call.Method.MethodName = "BuildCachedControl";
call.Parameters.Add(ctrlRefExpr);
call.Parameters.Add(new CodePrimitiveExpression(ctrlBuilder.ID));
// If the caching is shared, use the type of the control as the key
// otherwise, generate a guid
if (cacheAttrib.Shared) {
call.Parameters.Add(new CodePrimitiveExpression(
ctrlBuilder.ControlType.GetHashCode().ToString(CultureInfo.InvariantCulture)));
}
else
call.Parameters.Add(new CodePrimitiveExpression(Guid.NewGuid().ToString()));
call.Parameters.Add(new CodePrimitiveExpression(cacheAttrib.Duration));
call.Parameters.Add(new CodePrimitiveExpression(cacheAttrib.VaryByParams));
call.Parameters.Add(new CodePrimitiveExpression(cacheAttrib.VaryByControls));
call.Parameters.Add(new CodePrimitiveExpression(cacheAttrib.VaryByCustom));
call.Parameters.Add(new CodePrimitiveExpression(cacheAttrib.SqlDependency));
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
newDelegate.DelegateType = new CodeTypeReference(typeof(BuildMethod));
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = buildMethodPrefix + ctrlBuilder.ID;
call.Parameters.Add(newDelegate);
if (useProviderName) {
call.Parameters.Add(new CodePrimitiveExpression(providerName));
}
buildSubControlBlock.Add(new CodeExpressionStatement(call));
}
}
else if (child is string && !builder.HasAspCode) {
// VSWhidbey 276806: if the control cares about the inner text (builder does not allow whitespace literals)
// the inner literals should be added to the control.
if (!fControlSkin || !builder.AllowWhitespaceLiterals()) {
string s = (string) child;
CodeExpression expr;
if (!UseResourceLiteralString(s)) {
// e.g. ((IParserAccessor)__ctrl).AddParsedSubObject(new LiteralControl({{@QuoteCString(text)}}));
newExpr = new CodeObjectCreateExpression(typeof(LiteralControl));
newExpr.Parameters.Add(new CodePrimitiveExpression(s));
expr = newExpr;
}
else {
// Add the string to the resource builder, and get back its offset/size
int offset, size;
bool fAsciiOnly;
_stringResourceBuilder.AddString(s, out offset, out size, out fAsciiOnly);
methCallExpression = new CodeMethodInvokeExpression();
methCallExpression.Method.TargetObject = new CodeThisReferenceExpression();
methCallExpression.Method.MethodName = "CreateResourceBasedLiteralControl";
methCallExpression.Parameters.Add(new CodePrimitiveExpression(offset));
methCallExpression.Parameters.Add(new CodePrimitiveExpression(size));
methCallExpression.Parameters.Add(new CodePrimitiveExpression(fAsciiOnly));
expr = methCallExpression;
}
BuildAddParsedSubObjectStatement(buildSubControlBlock, expr, linePragma, ctrlRefExpr, ref gotParserVariable);
}
}
}
}
// Process the complex attributes
if (builder.ComplexPropertyEntries.Count > 0) {
// Used to deal with the device filter conditionals
CodeStatementCollection currentStmts;
CodeStatementCollection nextStmts = statements;
PropertyEntry previous = null;
int localVarIndex = 1;
String localVariableRef = null;
foreach (ComplexPropertyEntry pseSub in builder.ComplexPropertyEntries) {
currentStmts = nextStmts;
HandleDeviceFilterConditional(ref previous, pseSub, statements, ref currentStmts, out nextStmts);
if (pseSub.Builder is StringPropertyBuilder) {
// If it's a string inner property, treat it like a simple property
CodeExpression leftExpr, rightExpr = null;
// __ctrl.{{_name}}
// In case of a string property, there should only be one property name (unlike complex properties)
Debug.Assert(pseSub.Name.IndexOf('.') < 0, "pseSub._name.IndexOf('.') < 0");
leftExpr = new CodePropertyReferenceExpression(ctrlRefExpr, pseSub.Name);
// We need to call BuildStringPropertyExpression so any additional processing can be done
rightExpr = BuildStringPropertyExpression(pseSub);
// Now that we have both side, add the assignment
CodeAssignStatement setStatment = new CodeAssignStatement(leftExpr, rightExpr);
setStatment.LinePragma = linePragma;
currentStmts.Add(setStatment);
continue;
}
if (pseSub.ReadOnly) {
if (fControlSkin && pseSub.Builder != null && pseSub.Builder is CollectionBuilder &&
pseSub.Builder.ComplexPropertyEntries.Count > 0) {
// If it's a collection on a control theme and the themed collection is not empty, clear it first.
// e.g. __ctrl.{{pse_name}}.Clear();
BindingFlags bindingFlags = BindingFlags.Public | BindingFlags.Instance;
// Look for the "Clear" method on the collection.
if (pseSub.Type.GetMethod("Clear", bindingFlags) != null) {
CodeMethodReferenceExpression refExpr = new CodeMethodReferenceExpression();
refExpr.MethodName = "Clear";
refExpr.TargetObject = new CodePropertyReferenceExpression(ctrlRefExpr, pseSub.Name);
CodeMethodInvokeExpression invokeClearExpr = new CodeMethodInvokeExpression();
invokeClearExpr.Method = refExpr;
currentStmts.Add(invokeClearExpr);
}
}
// If it's a readonly prop, pass it as a parameter to the
// build method.
// e.g. __BuildControl {{controlName}}(__ctrl.{{pse._name}});
methCallExpression = new CodeMethodInvokeExpression(new CodeThisReferenceExpression(),
buildMethodPrefix + pseSub.Builder.ID);
methCallExpression.Parameters.Add(new CodePropertyReferenceExpression(ctrlRefExpr, pseSub.Name));
methCallStatement = new CodeExpressionStatement(methCallExpression);
methCallStatement.LinePragma = linePragma;
currentStmts.Add(methCallStatement);
}
else {
localVariableRef = _localVariableRef + (localVarIndex++).ToString(CultureInfo.InvariantCulture);
// e.g. {{controlTypeName}} ctrl4;
CodeTypeReference ctrlTypeReference =
CodeDomUtility.BuildGlobalCodeTypeReference(pseSub.Builder.ControlType);
currentStmts.Add(new CodeVariableDeclarationStatement(ctrlTypeReference, localVariableRef));
// Variable reference to the local control variable.
CodeVariableReferenceExpression childCtrlRefExpr = new CodeVariableReferenceExpression(localVariableRef);
methCallExpression = new CodeMethodInvokeExpression(new CodeThisReferenceExpression(),
buildMethodPrefix + pseSub.Builder.ID);
methCallStatement = new CodeExpressionStatement(methCallExpression);
// e.g. ctrl4 = __BuildControl {{controlName}}();
CodeAssignStatement setCtl = new CodeAssignStatement(childCtrlRefExpr, methCallExpression);
setCtl.LinePragma = linePragma;
currentStmts.Add(setCtl);
if (pseSub.IsCollectionItem) {
// e.g. __ctrl.Add(ctrl4);
methCallExpression = new CodeMethodInvokeExpression(ctrlRefExpr, "Add");
methCallStatement = new CodeExpressionStatement(methCallExpression);
methCallStatement.LinePragma = linePragma;
currentStmts.Add(methCallStatement);
methCallExpression.Parameters.Add(childCtrlRefExpr);
}
else {
// e.g. __ctrl.{{pse._name}} = {{controlName}};
CodeAssignStatement set = new CodeAssignStatement();
set.Left = new CodePropertyReferenceExpression(ctrlRefExpr, pseSub.Name);
set.Right = childCtrlRefExpr;
set.LinePragma = linePragma;
currentStmts.Add(set);
}
}
}
}
// If there are bound properties, hook up the binding method
if (builder.BoundPropertyEntries.Count > 0) {
bool isBindableTemplateBuilder = builder is BindableTemplateBuilder;
bool hasDataBindingEntry = false;
// Used to deal with the device filter conditionals
CodeStatementCollection currentStmts;
CodeStatementCollection methodStatements = statements;
CodeStatementCollection nextStmts = statements;
PropertyEntry previous = null;
bool hasTempObject = false;
foreach (BoundPropertyEntry entry in builder.BoundPropertyEntries) {
// Skip two-way entries if it's a BindableTemplateBuilder or the two-way entry has no setter
if (entry.TwoWayBound && (isBindableTemplateBuilder || entry.ReadOnlyProperty))
continue;
if (entry.IsDataBindingEntry) {
hasDataBindingEntry = true;
continue;
}
currentStmts = nextStmts;
HandleDeviceFilterConditional(ref previous, entry, statements, ref currentStmts, out nextStmts);
ExpressionBuilder eb = entry.ExpressionBuilder;
Debug.Assert(eb != null, "Did not expect null expression builder");
eb.BuildExpression(entry, builder, ctrlRefExpr, methodStatements, currentStmts, null, ref hasTempObject);
}
if (hasDataBindingEntry) {
EventInfo eventInfo = DataBindingExpressionBuilder.Event;
// __ctrl.{EventName} += new EventHandler(this.{{bindingMethod}})
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
CodeAttachEventStatement attachEvent = new CodeAttachEventStatement(ctrlRefExpr, eventInfo.Name, newDelegate);
attachEvent.LinePragma = linePragma;
newDelegate.DelegateType = new CodeTypeReference(typeof(EventHandler));
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = GetExpressionBuilderMethodName(eventInfo.Name, builder);
statements.Add(attachEvent);
}
}
if (builder is DataBoundLiteralControlBuilder) {
// __ctrl.DataBinding += new EventHandler(this.{{bindingMethod}})
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
CodeAttachEventStatement attachEvent = new CodeAttachEventStatement(ctrlRefExpr, "DataBinding", newDelegate);
attachEvent.LinePragma = linePragma;
newDelegate.DelegateType = new CodeTypeReference(typeof(EventHandler));
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = BindingMethodName(builder);
statements.Add(attachEvent);
}
// If there is any ASP code, set the render method delegate
if (builder.HasAspCode && !fControlSkin) {
// e.g. __ctrl.SetRenderMethodDelegate(new RenderMethod(this.__Render {{controlName}}));
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
newDelegate.DelegateType = new CodeTypeReference(typeof(RenderMethod));
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = "__Render" + builder.ID;
methCallExpression = new CodeMethodInvokeExpression(ctrlRefExpr, "SetRenderMethodDelegate");
methCallExpression.Parameters.Add(newDelegate);
methCallStatement = new CodeExpressionStatement(methCallExpression);
// VSWhidbey 579101
// If this is a contentPlaceHolder, we need to check if there is any content defined.
// We set the render method only when there is no contentTemplate defined.
// if ((this.__Template_TestTemplate == null)) {
// __ctrl.SetRenderMethodDelegate(new RenderMethod(this.__Render {{controlName}}));
// }
if (builder is System.Web.UI.WebControls.ContentPlaceHolderBuilder) {
string templateName = ((System.Web.UI.WebControls.ContentPlaceHolderBuilder)builder).Name;
autoTemplateName = MasterPageControlBuilder.AutoTemplatePrefix + templateName;
string fieldName = "__" + autoTemplateName;
CodeExpression templateFieldRef = new CodeFieldReferenceExpression(new CodeThisReferenceExpression(), fieldName);
templateIfStmt = new CodeConditionStatement();
templateIfStmt.Condition = new CodeBinaryOperatorExpression(templateFieldRef, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null));
templateIfStmt.TrueStatements.Add(methCallStatement);
statements.Add(templateIfStmt);
}
else {
statements.Add(methCallStatement);
}
}
// Process the events
if (builder.EventEntries.Count > 0) {
foreach (EventEntry eventEntry in builder.EventEntries) {
// Attach the event. Detach it first to avoid duplicates (see ASURT 42603),
// but only if there is codebehind
//
// e.g. __ctrl.ServerClick -= new System.EventHandler(this.buttonClicked);
// e.g. __ctrl.ServerClick += new System.EventHandler(this.buttonClicked);
CodeDelegateCreateExpression newDelegate = new CodeDelegateCreateExpression();
newDelegate.DelegateType = new CodeTypeReference(eventEntry.HandlerType);
newDelegate.TargetObject = new CodeThisReferenceExpression();
newDelegate.MethodName = eventEntry.HandlerMethodName;
if (Parser.HasCodeBehind) {
CodeRemoveEventStatement detachEvent = new CodeRemoveEventStatement(ctrlRefExpr, eventEntry.Name, newDelegate);
detachEvent.LinePragma = linePragma;
statements.Add(detachEvent);
}
CodeAttachEventStatement attachEvent = new CodeAttachEventStatement(ctrlRefExpr, eventEntry.Name, newDelegate);
attachEvent.LinePragma = linePragma;
statements.Add(attachEvent);
}
}
// If a control field is declared, we need to return it at the end of the method.
if (fControlFieldDeclared)
statements.Add(new CodeMethodReturnStatement(ctrlRefExpr));
}
/*
* Build the template's method to extract values from contained controls
*/
protected void BuildExtractMethod(ControlBuilder builder) {
BindableTemplateBuilder bindableTemplateBuilder = builder as BindableTemplateBuilder;
// This will get called if Bind is in a non-bindable template. We should just skip the Extract method.
if (bindableTemplateBuilder != null && bindableTemplateBuilder.HasTwoWayBoundProperties) {
// Get the name of the databinding method
string methodName = ExtractMethodName(builder);
const string tableVarName = "__table";
const string containerVarName = "__container";
// Same linePragma in the entire method
CodeLinePragma linePragma = CreateCodeLinePragma(builder);
CodeMemberMethod method = new CodeMemberMethod();
AddDebuggerNonUserCodeAttribute(method);
method.Name = methodName;
method.Attributes &= ~MemberAttributes.AccessMask;
method.Attributes |= MemberAttributes.Public;
method.ReturnType = new CodeTypeReference(typeof(IOrderedDictionary));
_sourceDataClass.Members.Add(method);
/// Variable declarations need to go at the top for CodeDom compliance.
CodeStatementCollection topLevelStatements = method.Statements;
CodeStatementCollection statements = new CodeStatementCollection();
// add a container control parameter
method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(Control), containerVarName));
// OrderedDictionary table;
CodeVariableDeclarationStatement tableDecl = new CodeVariableDeclarationStatement(typeof(OrderedDictionary), tableVarName);
topLevelStatements.Add(tableDecl);
// table = new OrderedDictionary();
CodeObjectCreateExpression newTableExpression = new CodeObjectCreateExpression(typeof(OrderedDictionary));
CodeAssignStatement newTableAssign = new CodeAssignStatement(new CodeVariableReferenceExpression(tableVarName),
newTableExpression);
newTableAssign.LinePragma = linePragma;
statements.Add(newTableAssign);
BuildExtractStatementsRecursive(bindableTemplateBuilder.SubBuilders, statements, topLevelStatements, linePragma, tableVarName, containerVarName);
// return table;
CodeMethodReturnStatement returnStatement = new CodeMethodReturnStatement(new CodeVariableReferenceExpression(tableVarName));
statements.Add(returnStatement);
// add all the non-variable declaration statements to the bottom of the method
method.Statements.AddRange(statements);
}
}
private void BuildExtractStatementsRecursive(ArrayList subBuilders, CodeStatementCollection statements, CodeStatementCollection topLevelStatements, CodeLinePragma linePragma, string tableVarName, string containerVarName) {
foreach (object subBuilderObject in subBuilders) {
ControlBuilder controlBuilder = subBuilderObject as ControlBuilder;
if (controlBuilder != null) {
// Used to deal with the device filter conditionals
CodeStatementCollection currentStatements = null;
CodeStatementCollection nextStatements = statements;
PropertyEntry previous = null;
string previousControlName = null;
bool newControl = true;
foreach (BoundPropertyEntry entry in controlBuilder.BoundPropertyEntries) {
// Skip all entries that are not two-way
if (!entry.TwoWayBound)
continue;
// Reset the "previous" Property Entry if we're not looking at the same control.
// If we don't do this, Two controls that have conditionals on the same named property will have
// their conditionals incorrectly merged.
if (String.Compare(previousControlName, entry.ControlID, StringComparison.Ordinal) != 0) {
previous = null;
newControl = true;
}
else {
newControl = false;
}
previousControlName = entry.ControlID;
currentStatements = nextStatements;
HandleDeviceFilterConditional(ref previous, entry, statements, ref currentStatements, out nextStatements);
// Only declare the variable if it hasn't already been declared by a previous filter
// or property binding on the same control.
if (newControl) {
// {{controlType}} {{controlID}};
// eg. TextBox t1;
CodeVariableDeclarationStatement controlDecl = new CodeVariableDeclarationStatement(entry.ControlType, entry.ControlID);
topLevelStatements.Add(controlDecl);
// {{controlID}} = ({{controlType}})container.FindControl("{{controlID}}");
// eg. t1 = (TextBox)container.FindControl("t1");
CodeMethodInvokeExpression findControlCallExpression = new CodeMethodInvokeExpression(
new CodeVariableReferenceExpression(containerVarName), "FindControl");
string findControlParameter = entry.ControlID;
findControlCallExpression.Parameters.Add(new CodePrimitiveExpression(findControlParameter));
CodeCastExpression castExpression = new CodeCastExpression(entry.ControlType, findControlCallExpression);
CodeAssignStatement findControlAssign = new CodeAssignStatement(new CodeVariableReferenceExpression(entry.ControlID),
castExpression);
findControlAssign.LinePragma = linePragma;
topLevelStatements.Add(findControlAssign);
}
// if ({{controlID}} != null)
// table["{{fieldName}}"] = {{controlID}}.{{propertyName}});
// eg. if (t1 != null)
// eg. table["field"] = t1.Text);
CodeConditionStatement ifStatement = new CodeConditionStatement();
CodeBinaryOperatorExpression ensureControlExpression = new CodeBinaryOperatorExpression();
ensureControlExpression.Operator = CodeBinaryOperatorType.IdentityInequality;
ensureControlExpression.Left = new CodeVariableReferenceExpression(entry.ControlID);
ensureControlExpression.Right = new CodePrimitiveExpression(null);
ifStatement.Condition = ensureControlExpression;
string fieldParameter = entry.FieldName;
CodeIndexerExpression tableIndexer = new CodeIndexerExpression(new CodeVariableReferenceExpression(tableVarName),
new CodePrimitiveExpression(fieldParameter));
// VJ# does not support automatic boxing of value types, so passing a simple type, say a bool, into a method
// expecting an object will give a compiler error. We are working around this issue by adding special code for
// VJ# that will cast the expression for boxing. When the VJ# team adds implicit boxing of value types, we
// should remove this code. VSWhidbey 269028
CodeExpression controlPropertyExpression = CodeDomUtility.BuildPropertyReferenceExpression(new CodeVariableReferenceExpression(entry.ControlID), entry.Name);
if (_usingVJSCompiler) {
controlPropertyExpression = CodeDomUtility.BuildJSharpCastExpression(entry.Type, controlPropertyExpression);
}
CodeAssignStatement tableIndexAssign = new CodeAssignStatement(tableIndexer, controlPropertyExpression);
ifStatement.TrueStatements.Add(tableIndexAssign);
ifStatement.LinePragma = linePragma;
currentStatements.Add(ifStatement);
}
if (controlBuilder.SubBuilders.Count > 0) {
BuildExtractStatementsRecursive(controlBuilder.SubBuilders, statements, topLevelStatements, linePragma, tableVarName, containerVarName);
}
// Dev10 bug 525267
// When a control defines a DefaultProperty in its ParseChildren attribute, its subBuilders are appended
// to the DefaultProperty's subbuilders, and the DefaultProperty itself is added
// as a ComplexProperty or a TemplateProperty (and not as a suBbuilder). Thus we
// also need to go through these properties as well.
ArrayList list = new ArrayList();
AddEntryBuildersToList(controlBuilder.ComplexPropertyEntries, list);
AddEntryBuildersToList(controlBuilder.TemplatePropertyEntries, list);
if (list.Count > 0) {
BuildExtractStatementsRecursive(list, statements, topLevelStatements, linePragma, tableVarName, containerVarName);
}
}
}
}
private void AddEntryBuildersToList(ICollection entries, ArrayList list) {
if (entries == null || list == null) {
return;
}
foreach (BuilderPropertyEntry entry in entries) {
if (entry.Builder != null) {
TemplatePropertyEntry templatePropertyEntry = entry as TemplatePropertyEntry;
// Only add template entries that have TemplateInstance.Single
if (templatePropertyEntry != null && templatePropertyEntry.IsMultiple) {
continue;
}
list.Add(entry.Builder);
}
}
}
/*
* Build the member field's declaration for a control
*/
private void BuildFieldDeclaration(ControlBuilder builder) {
// Do not generate member field for content controls.
if (builder is System.Web.UI.WebControls.ContentBuilderInternal) {
return;
}
bool hideExistingMember = false;
// If we're using a non-default base class
if (Parser.BaseType != null) {
// Check if it has a non-private field or property that has a name that
// matches the id of the control.
Type memberType = Util.GetNonPrivateFieldType(Parser.BaseType, builder.ID);
// Couldn't find a field, try a property (ASURT 45039)
//
if (memberType == null)
memberType = Util.GetNonPrivatePropertyType(Parser.BaseType, builder.ID);
if (memberType != null) {
if (!memberType.IsAssignableFrom(builder.ControlType)) {
if (!(typeof(Control)).IsAssignableFrom(memberType)) {
// If it's not a control, it's probably an unrelated member,
// and we should just hide it (VSWhidbey 217135)
hideExistingMember = true;
}
else {
throw new HttpParseException(SR.GetString(SR.Base_class_field_with_type_different_from_type_of_control,
builder.ID, memberType.FullName, builder.ControlType.FullName), null,
builder.VirtualPath, null, builder.Line);
}
}
else {
// Don't build the declaration, since the base class already declares it
return;
}
}
}
// Add the field. Make it protected if the ID was declared, and private if it was generated
CodeMemberField field = new CodeMemberField(CodeDomUtility.BuildGlobalCodeTypeReference(
builder.DeclareType), builder.ID);
field.Attributes &= ~MemberAttributes.AccessMask;
// If we need to hide an existing member, use 'new' (VSWhidbey 217135)
if (hideExistingMember)
field.Attributes |= MemberAttributes.New;
field.LinePragma = CreateCodeLinePragma(builder);
field.Attributes |= MemberAttributes.Family;
// Set WithEvents in the UserData, so that the field will be
// declared as WithEvents in VB (VSWhidbey 156623).
// But only do this if it's a Control, otherwise it may not have
// any events (VSWhidbey 283274).
if (typeof(Control).IsAssignableFrom(builder.DeclareType)) {
field.UserData["WithEvents"] = true;
}
_intermediateClass.Members.Add(field);
}
private string GetExpressionBuilderMethodName(string eventName, ControlBuilder builder) {
return "__" + eventName + builder.ID;
}
/*
* Return the name of a databinding method
*/
private string BindingMethodName(ControlBuilder builder) {
return "__DataBind" + builder.ID;
}
protected CodeMemberMethod BuildPropertyBindingMethod(ControlBuilder builder, bool fControlSkin) {
// VSWhidbey 275175: Create the tempObjectVariable "__o" only when it's used.
bool tempObjectVariableDeclared = false;
if (builder is DataBoundLiteralControlBuilder) {
// Get the name of the databinding method
string methodName = BindingMethodName(builder);
// Same linePragma in the entire method
CodeLinePragma linePragma = CreateCodeLinePragma(builder);
CodeMemberMethod method = new CodeMemberMethod();
method.Name = methodName;
method.Attributes &= ~MemberAttributes.AccessMask;
method.Attributes |= MemberAttributes.Public;
method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(object), "sender"));
method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(EventArgs), "e"));
CodeStatementCollection topMethodStatements = new CodeStatementCollection();
CodeStatementCollection otherMethodStatements = new CodeStatementCollection();
// {{controlType}} target;
CodeVariableDeclarationStatement targetDecl = new CodeVariableDeclarationStatement(builder.ControlType, "target");
Type bindingContainerType = builder.BindingContainerType;
CodeVariableDeclarationStatement containerDecl = new CodeVariableDeclarationStatement(bindingContainerType, "Container");
topMethodStatements.Add(containerDecl);
topMethodStatements.Add(targetDecl);
// target = ({{controlType}}) sender;
CodeAssignStatement setTarget = new CodeAssignStatement(new CodeVariableReferenceExpression(targetDecl.Name),
new CodeCastExpression(builder.ControlType,
new CodeArgumentReferenceExpression("sender")));
setTarget.LinePragma = linePragma;
otherMethodStatements.Add(setTarget);
// {{containerType}} Container = ({{containerType}}) target.BindingContainer;
CodeAssignStatement setContainer = new CodeAssignStatement(new CodeVariableReferenceExpression(containerDecl.Name),
new CodeCastExpression(bindingContainerType,
new CodePropertyReferenceExpression(new CodeVariableReferenceExpression("target"),
"BindingContainer")));
setContainer.LinePragma = linePragma;
otherMethodStatements.Add(setContainer);
DataBindingExpressionBuilder.GenerateItemTypeExpressions(builder, topMethodStatements, otherMethodStatements, linePragma, "Item");
//Generate code for BindItem as well at design time in addition to Item for intellisense.
//When you are in designer and as you type to set an attribute value to a data binding expression, since the control's end tag is not yet
//typed in, we will still have a DataBoundLiteralControl (instead of a ControlBuilder) in that scenario and the below code takes care of that scenario.
if (_designerMode) {
DataBindingExpressionBuilder.GenerateItemTypeExpressions(builder, topMethodStatements, otherMethodStatements, linePragma, "BindItem");
}
// If it's a DataBoundLiteralControl, call SetDataBoundString for each
// of the databinding expressions
int i = -1;
foreach (object child in builder.SubBuilders) {
i++;
// Ignore it if it's null
if (child == null)
continue;
// Only deal with the databinding expressions here, which have odd index
if (i % 2 == 0) {
Debug.Assert(child is string, "child is string");
continue;
}
CodeBlockBuilder codeBlock = (CodeBlockBuilder) child;
Debug.Assert(codeBlock.BlockType == CodeBlockType.DataBinding);
// In designer mode, generate a much simpler assignment to make
// the code simpler (since it doesn't actually need to run).
if (_designerMode) {
tempObjectVariableDeclared = GenerateSimpleAssignmentAtDesignTime(tempObjectVariableDeclared, topMethodStatements, otherMethodStatements, codeBlock.Content, CreateCodeLinePragma(codeBlock));
continue;
}
CodeExpression expr = new CodeSnippetExpression(codeBlock.Content.Trim());
if (codeBlock.IsEncoded) {
// HttpUtility.HtmlEncode({{codeExpr}}));
expr = new CodeMethodInvokeExpression(
new CodeMethodReferenceExpression(
new CodeTypeReferenceExpression(typeof(HttpUtility)),
"HtmlEncode"),
expr);
}
else {
// System.Convert.ToString({{codeExpr}});
expr = CodeDomUtility.GenerateConvertToString(expr);
}
// target.SetDataBoundString(3, {{codeExpr}}); {{codeExpr}} is one of the above in if-else depending on IsEncoded property.
CodeMethodInvokeExpression methCallExpression = new CodeMethodInvokeExpression(
new CodeVariableReferenceExpression("target"), "SetDataBoundString");
methCallExpression.Parameters.Add(new CodePrimitiveExpression(i/2));
methCallExpression.Parameters.Add(expr);
CodeStatement setDataBoundStringCall = new CodeExpressionStatement(methCallExpression);
setDataBoundStringCall.LinePragma = CreateCodeLinePragma(codeBlock);
otherMethodStatements.Add(setDataBoundStringCall);
}
foreach (CodeStatement stmt in topMethodStatements) {
method.Statements.Add(stmt);
}
foreach (CodeStatement stmt in otherMethodStatements) {
method.Statements.Add(stmt);
}
_sourceDataClass.Members.Add(method);
return method;
}
else {
EventInfo eventInfo = DataBindingExpressionBuilder.Event;
// Same linePragma in the entire method
CodeLinePragma linePragma = CreateCodeLinePragma(builder);
CodeMemberMethod method = null;
CodeStatementCollection topStatements = null;
CodeStatementCollection otherStatements = null;
// Used to deal with the device filter conditionals
CodeStatementCollection currentStmts;
CodeStatementCollection nextStmts = null;
PropertyEntry previous = null;
bool isBindableTemplateBuilder = builder is BindableTemplateBuilder;
bool firstEntry = true;
bool hasTempObject = false;
foreach (BoundPropertyEntry entry in builder.BoundPropertyEntries) {
// Skip two-way entries if it's a BindableTemplateBuilder or the two way entry is read only
if (entry.TwoWayBound && (isBindableTemplateBuilder || entry.ReadOnlyProperty))
continue;
// We only care about databinding entries here
if (!entry.IsDataBindingEntry)
continue;
if (firstEntry) {
firstEntry = false;
method = new CodeMemberMethod();
topStatements = new CodeStatementCollection();
otherStatements = new CodeStatementCollection();
// Get the name of the databinding method
string methodName = GetExpressionBuilderMethodName(eventInfo.Name, builder);
method.Name = methodName;
method.Attributes &= ~MemberAttributes.AccessMask;
method.Attributes |= MemberAttributes.Public;
if (_designerMode) {
ApplyEditorBrowsableCustomAttribute(method);
}
Type eventHandlerType = eventInfo.EventHandlerType;
MethodInfo mi = eventHandlerType.GetMethod("Invoke");
ParameterInfo[] paramInfos = mi.GetParameters();
foreach (ParameterInfo pi in paramInfos) {
method.Parameters.Add(new CodeParameterDeclarationExpression(pi.ParameterType, pi.Name));
}
nextStmts = otherStatements;
DataBindingExpressionBuilder.BuildExpressionSetup(builder, topStatements, otherStatements, linePragma, entry.TwoWayBound, _designerMode);
_sourceDataClass.Members.Add(method);
}
currentStmts = nextStmts;
HandleDeviceFilterConditional(ref previous, entry, otherStatements, ref currentStmts, out nextStmts);
// In designer mode, generate a much simpler assignment to make
// the code simpler (since it doesn't actually need to run).
if (_designerMode) {
int generatedColumn = tempObjectVariable.Length + BaseCodeDomTreeGenerator.GetGeneratedColumnOffset(_codeDomProvider);
CodeLinePragma codeLinePragma = CreateCodeLinePragma(virtualPath: builder.PageVirtualPath, lineNumber: entry.Line, column: entry.Column, generatedColumn: generatedColumn, codeLength: entry.Expression.Length);
tempObjectVariableDeclared = GenerateSimpleAssignmentAtDesignTime(tempObjectVariableDeclared, topStatements, otherStatements, entry.Expression, codeLinePragma);
continue;
}
if (entry.TwoWayBound) {
Debug.Assert(!entry.ReadOnlyProperty, "We should not attempt to build a data binding handler if the two way entry is read only.");
Debug.Assert(!entry.UseSetAttribute, "Two-way binding is not supported on expandos - this should have been prevented in ControlBuilder");
DataBindingExpressionBuilder.BuildEvalExpression(entry.FieldName, entry.FormatString,
entry.Name, entry.Type, builder, topStatements, currentStmts, linePragma, entry.IsEncoded, ref hasTempObject);
}
else {
DataBindingExpressionBuilder.BuildExpressionStatic(entry, builder, null, topStatements, currentStmts, linePragma, entry.IsEncoded, ref hasTempObject);
}
}
if (topStatements != null) {
foreach (CodeStatement stmt in topStatements) {
method.Statements.Add(stmt);
}
}
if (otherStatements != null) {
foreach (CodeStatement stmt in otherStatements) {
method.Statements.Add(stmt);
}
}
return method;
}
}
/*
* Build the data tree for a control's render method
*/
internal void BuildRenderMethod(ControlBuilder builder, bool fTemplate) {
CodeMemberMethod method = new CodeMemberMethod();
method.Attributes = MemberAttributes.Private | MemberAttributes.Final;
method.Name = "__Render" + builder.ID;
if (_designerMode) {
ApplyEditorBrowsableCustomAttribute(method);
}
method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(HtmlTextWriter), renderMethodParameterName));
method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(Control), "parameterContainer"));
_sourceDataClass.Members.Add(method);
// VSWhidbey 275175: Create the tempObjectVariable "__o" only when it's used.
bool tempObjectVariableDeclared = false;
// Process the children if any
if (builder.SubBuilders != null) {
IEnumerator en = builder.SubBuilders.GetEnumerator();
// Index that the control will have in its parent's Controls
// collection.
//
int controlIndex = 0;
for (int i=0; en.MoveNext(); i++) {
object child = en.Current;
CodeLinePragma linePragma = null;
if (child is ControlBuilder) {
linePragma = CreateCodeLinePragma((ControlBuilder)child);
}
if (child is string) {
if (_designerMode) continue;
AddOutputWriteStringStatement(method.Statements, (string)child);
}
else if (child is CodeBlockBuilder) {
CodeBlockBuilder codeBlockBuilder = (CodeBlockBuilder)child;
if (codeBlockBuilder.BlockType == CodeBlockType.Expression || codeBlockBuilder.BlockType == CodeBlockType.EncodedExpression) {
string codeExpression = codeBlockBuilder.Content;
// In designer mode, generate a much simpler assignment to make
// the code simpler (since it doesn't actually need to run).
if (_designerMode) {
tempObjectVariableDeclared = GenerateSimpleAssignmentAtDesignTime(tempObjectVariableDeclared, method.Statements, method.Statements, codeExpression, linePragma);
continue;
}
// The purpose of the following logic is to improve the debugging experience.
// Basically, we gain control on the formatting of the generated line
// that calls output.Write, in order to try to make the call line up
// with the <%= ... %> block. It's not always perfect, but it does a decent job
// and is always better than the v1 behavior.
// Get the Write() statement codedom tree
CodeStatement outputWrite = GetOutputWriteStatement(
new CodeSnippetExpression(codeExpression),
codeBlockBuilder.BlockType == CodeBlockType.EncodedExpression /*encode*/);
// Use codedom to generate the statement as a string in the target language
TextWriter w = new StringWriter(CultureInfo.InvariantCulture);
_codeDomProvider.GenerateCodeFromStatement(outputWrite, w, null /*CodeGeneratorOptions*/);
string outputWriteString = w.ToString();
// The '+3' is used to make sure the generated code is positioned properly to match
// the location of user code (due to the <%= %> separators).
outputWriteString = outputWriteString.PadLeft(
codeBlockBuilder.Column + codeExpression.Length + 3);
// We can then use this string as a snippet statement
CodeSnippetStatement lit = new CodeSnippetStatement(outputWriteString);
lit.LinePragma = linePragma;
method.Statements.Add(lit);
}
else {
// It's a <% ... %> block
Debug.Assert(codeBlockBuilder.BlockType == CodeBlockType.Code);
// Pad the code block so its generated offset matches the aspx
string code = codeBlockBuilder.Content;
code = code.PadLeft(code.Length + codeBlockBuilder.Column - 1);
CodeSnippetStatement lit = new CodeSnippetStatement(code);
lit.LinePragma = linePragma;
method.Statements.Add(lit);
}
}
else if (child is CodeStatementBuilder) {
if (_designerMode) continue;
CodeStatementBuilder statementBuilder = (CodeStatementBuilder)child;
CodeStatement statement = statementBuilder.BuildStatement(new CodeArgumentReferenceExpression(renderMethodParameterName));
method.Statements.Add(statement);
}
else if (child is ControlBuilder) {
if (_designerMode) continue;
// parameterContainer.Controls['controlIndex++'].RenderControl(output)
CodeMethodInvokeExpression methodInvoke = new CodeMethodInvokeExpression();
CodeExpressionStatement methodCall = new CodeExpressionStatement(methodInvoke);
methodInvoke.Method.TargetObject = new CodeIndexerExpression(new CodePropertyReferenceExpression(new CodeArgumentReferenceExpression("parameterContainer"),
"Controls"),
new CodeExpression[] {
new CodePrimitiveExpression(controlIndex++),
});
methodInvoke.Method.MethodName = "RenderControl";
// Don't generate a line pragma on the RenderControl call, as it degrades the
// debugging experience (VSWhidbey 482416)
methodInvoke.Parameters.Add(new CodeArgumentReferenceExpression(renderMethodParameterName));
method.Statements.Add(methodCall);
}
}
}
}
private bool GenerateSimpleAssignmentAtDesignTime(bool tempObjectVariableDeclared, CodeStatementCollection topMethodStatements, CodeStatementCollection otherMethodStatements, string content, CodeLinePragma linePragma) {
// In designer mode, add an object variable used for simplified code expression generation
if (!tempObjectVariableDeclared) {
tempObjectVariableDeclared = true;
// object __o;
topMethodStatements.Add(new CodeVariableDeclarationStatement(
typeof(object), tempObjectVariable));
}
// e.g. __o = <user expression>;
CodeStatement simpleAssignment = new CodeAssignStatement(
new CodeVariableReferenceExpression(tempObjectVariable),
new CodeSnippetExpression(content));
simpleAssignment.LinePragma = linePragma;
otherMethodStatements.Add(simpleAssignment);
return tempObjectVariableDeclared;
}
protected virtual void BuildSourceDataTreeFromBuilder(ControlBuilder builder,
bool fInTemplate, bool topLevelControlInTemplate,
PropertyEntry pse) {
// Don't do anything for Code blocks
if (builder is CodeBlockBuilder || builder is CodeStatementBuilder)
return;
// Is the current builder for a template?
bool fTemplate = (builder is TemplateBuilder);
// For the control name in the compiled code, we use the
// ID if one is available (but don't use the ID inside a template)
// Otherwise, we generate a unique name.
if (builder.ID == null || fInTemplate) {
// Increase the control count to generate unique ID's
_controlCount++;
builder.ID = "__control" + _controlCount.ToString(NumberFormatInfo.InvariantInfo);
builder.IsGeneratedID = true;
}
// Process the children
if (builder.SubBuilders != null) {
foreach (object child in builder.SubBuilders) {
if (child is ControlBuilder) {
// Do not treat it as top level control in template if the control is at top-level of a file.
bool isTopLevelCtrlInTemplate =
fTemplate && typeof(Control).IsAssignableFrom(((ControlBuilder)child).ControlType) && !(builder is RootBuilder);
BuildSourceDataTreeFromBuilder((ControlBuilder)child, fInTemplate, isTopLevelCtrlInTemplate, null);
}
}
}
foreach (TemplatePropertyEntry entry in builder.TemplatePropertyEntries) {
bool inTemplate = true;
// If the template container does not allow multiple instances,
// treat the controls as if not in templates.
if (entry.PropertyInfo != null) {
inTemplate = entry.IsMultiple;
}
BuildSourceDataTreeFromBuilder(((TemplatePropertyEntry)entry).Builder, inTemplate, false /*topLevelControlInTemplate*/, entry);
}
foreach (ComplexPropertyEntry entry in builder.ComplexPropertyEntries) {
// Don't create a build method for inner property strings
if (!(entry.Builder is StringPropertyBuilder)) {
BuildSourceDataTreeFromBuilder(((ComplexPropertyEntry)entry).Builder, fInTemplate, false /*topLevelControlInTemplate*/, entry);
}
}
// Build a field declaration for the control if ID is defined on the control.
// (Not a generated ID)
if (!builder.IsGeneratedID)
BuildFieldDeclaration(builder);
CodeMemberMethod buildMethod = null;
CodeMemberMethod dataBindingMethod = null;
// Skip the rest if we're only generating the intermediate class
if (_sourceDataClass != null) {
if (!_designerMode) {
// Build a Build method for the control
buildMethod = BuildBuildMethod(builder, fTemplate, fInTemplate, topLevelControlInTemplate, pse, false);
}
// Build a Render method for the control, unless it has no code
if (builder.HasAspCode) {
BuildRenderMethod(builder, fTemplate);
}
// Build a method to extract values from the template
BuildExtractMethod(builder);
// Build a property binding method for the control
dataBindingMethod = BuildPropertyBindingMethod(builder, false);
}
// Give the ControlBuilder a chance to look at and modify the tree
builder.ProcessGeneratedCode(_codeCompileUnit, _intermediateClass,
_sourceDataClass, buildMethod, dataBindingMethod);
if (Parser.ControlBuilderInterceptor != null) {
Parser.ControlBuilderInterceptor.OnProcessGeneratedCode(builder, _codeCompileUnit,
_intermediateClass, _sourceDataClass, buildMethod, dataBindingMethod, builder.AdditionalState);
}
// Give the ParseRecorder a chance to look at and modify the tree
Parser.ParseRecorders.ProcessGeneratedCode(builder, _codeCompileUnit,
_intermediateClass, _sourceDataClass, buildMethod, dataBindingMethod);
}
internal virtual CodeExpression BuildStringPropertyExpression(PropertyEntry pse) {
string value = String.Empty;
if (pse is SimplePropertyEntry) {
value = (string)((SimplePropertyEntry)pse).Value;
}
else {
Debug.Assert(pse is ComplexPropertyEntry);
ComplexPropertyEntry cpe = (ComplexPropertyEntry)pse;
value = (string)((StringPropertyBuilder)cpe.Builder).BuildObject();
}
return CodeDomUtility.GenerateExpressionForValue(pse.PropertyInfo, value, typeof(string));
}
protected virtual CodeAssignStatement BuildTemplatePropertyStatement(CodeExpression ctrlRefExpr) {
// e.g. __ctrl.TemplateControl = this;
CodeAssignStatement assign = new CodeAssignStatement();
assign.Left = new CodePropertyReferenceExpression(ctrlRefExpr, "TemplateControl");
assign.Right = new CodeThisReferenceExpression();
return assign;
}
/*
* Return the name of an extract method
*/
private string ExtractMethodName(ControlBuilder builder) {
return extractTemplateValuesMethodPrefix + builder.ID;
}
private Type GetCtrlTypeForBuilder(ControlBuilder builder, bool fTemplate) {
if (builder is RootBuilder && builder.ControlType != null)
return builder.ControlType;
if (fTemplate)
return typeof(Control);
return builder.ControlType;
}
protected string GetMethodNameForBuilder(string prefix, ControlBuilder builder) {
if (builder is RootBuilder) {
return prefix + "Tree";
}
else {
return prefix + builder.ID;
}
}
/*
* Helper method to generate the device filter conditionals. e.g.
* if (this.TestDeviceFilter("FilterName")) {
* // ...
* }
* else {
* // ...
* }
*/
private void HandleDeviceFilterConditional(
ref PropertyEntry previous, PropertyEntry current,
CodeStatementCollection topStmts,
ref CodeStatementCollection currentStmts,
out CodeStatementCollection nextStmts) {
bool sameAsPrevious = (previous != null) && StringUtil.EqualsIgnoreCase(previous.Name, current.Name);
if (current.Filter.Length != 0) {
if (!sameAsPrevious) {
// If the current property entry is not the same as the previous entries,
// we need to start a new block of code
currentStmts = topStmts;
previous = null;
}
CodeConditionStatement ifStmt = new CodeConditionStatement();
CodeMethodInvokeExpression methCallExpression = new CodeMethodInvokeExpression(
new CodeThisReferenceExpression(), "TestDeviceFilter");
methCallExpression.Parameters.Add(new CodePrimitiveExpression(current.Filter));
ifStmt.Condition = methCallExpression;
currentStmts.Add(ifStmt);
// The current entry needs to go in the 'if' clause
currentStmts = ifStmt.TrueStatements;
// The next entry will tentatively go in the 'else' clause, unless it is
// for a different property (which we would catch next time around)
nextStmts = ifStmt.FalseStatements;
previous = current;
}
else {
// If we're switching to a new property, we need to add to the top-level statements (not the false block of an if)
if (!sameAsPrevious) {
currentStmts = topStmts;
}
nextStmts = topStmts;
previous = null;
}
}
protected virtual bool UseResourceLiteralString(string s) {
// If the string is long enough, and the compiler supports it, use a UTF8 resource
// string for performance
return PageParser.EnableLongStringsAsResources &&
s.Length >= minLongLiteralStringLength &&
_codeDomProvider.Supports(GeneratorSupport.Win32Resources);
}
}
}
|