Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Compilation / DataBindingExpressionBuilder.cs / 1305376 / DataBindingExpressionBuilder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.Security.Permissions; using System.CodeDom; using System.Diagnostics; using System.Reflection; using System.Web.UI; internal class DataBindingExpressionBuilder : ExpressionBuilder { private static EventInfo eventInfo; private const string EvalMethodName = "Eval"; private const string GetDataItemMethodName = "GetDataItem"; internal static EventInfo Event { get { if (eventInfo == null) { eventInfo = typeof(Control).GetEvent("DataBinding"); } return eventInfo; } } internal static void BuildEvalExpression(string field, string formatString, string propertyName, Type propertyType, ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { // Altogether, this function will create a statement that looks like this: // if (this.Page.GetDataItem() != null) { // target.{{propName}} = ({{propType}}) this.Eval(fieldName, formatString); // } // this.Eval(fieldName, formatString) CodeMethodInvokeExpression evalExpr = new CodeMethodInvokeExpression(); evalExpr.Method.TargetObject = new CodeThisReferenceExpression(); evalExpr.Method.MethodName = EvalMethodName; evalExpr.Parameters.Add(new CodePrimitiveExpression(field)); if (!String.IsNullOrEmpty(formatString)) { evalExpr.Parameters.Add(new CodePrimitiveExpression(formatString)); } CodeStatementCollection evalStatements = new CodeStatementCollection(); BuildPropertySetExpression(evalExpr, propertyName, propertyType, controlBuilder, methodStatements, evalStatements, linePragma, ref hasTempObject); // if (this.Page.GetDataItem() != null) CodeMethodInvokeExpression getDataItemExpr = new CodeMethodInvokeExpression(); getDataItemExpr.Method.TargetObject = new CodePropertyReferenceExpression(new CodeThisReferenceExpression(), "Page"); getDataItemExpr.Method.MethodName = GetDataItemMethodName; CodeConditionStatement ifStmt = new CodeConditionStatement(); ifStmt.Condition = new CodeBinaryOperatorExpression(getDataItemExpr, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null)); ifStmt.TrueStatements.AddRange(evalStatements); statements.Add(ifStmt); } private static void BuildPropertySetExpression(CodeExpression expression, string propertyName, Type propertyType, ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { CodeDomUtility.CreatePropertySetStatements(methodStatements, statements, new CodeVariableReferenceExpression("dataBindingExpressionBuilderTarget"), propertyName, propertyType, expression, linePragma); } internal static void BuildExpressionSetup(ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatementCollection statements) { // {{controlType}} target; CodeVariableDeclarationStatement targetDecl = new CodeVariableDeclarationStatement(controlBuilder.ControlType, "dataBindingExpressionBuilderTarget"); methodStatements.Add(targetDecl); CodeVariableReferenceExpression targetExp = new CodeVariableReferenceExpression(targetDecl.Name); // target = ({{controlType}}) sender; CodeAssignStatement setTarget = new CodeAssignStatement(targetExp, new CodeCastExpression(controlBuilder.ControlType, new CodeArgumentReferenceExpression("sender"))); statements.Add(setTarget); Type bindingContainerType = controlBuilder.BindingContainerType; CodeVariableDeclarationStatement containerDecl = new CodeVariableDeclarationStatement(bindingContainerType, "Container"); methodStatements.Add(containerDecl); // {{containerType}} Container = ({{containerType}}) target.BindingContainer; CodeAssignStatement setContainer = new CodeAssignStatement(new CodeVariableReferenceExpression(containerDecl.Name), new CodeCastExpression(bindingContainerType, new CodePropertyReferenceExpression(targetExp, "BindingContainer"))); statements.Add(setContainer); } internal override void BuildExpression(BoundPropertyEntry bpe, ControlBuilder controlBuilder, CodeExpression controlReference, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { BuildExpressionStatic(bpe, controlBuilder, controlReference, methodStatements, statements, linePragma, ref hasTempObject); } internal static void BuildExpressionStatic(BoundPropertyEntry bpe, ControlBuilder controlBuilder, CodeExpression controlReference, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { CodeExpression expr = new CodeSnippetExpression(bpe.Expression); BuildPropertySetExpression(expr, bpe.Name, bpe.Type, controlBuilder, methodStatements, statements, linePragma, ref hasTempObject); } public override CodeExpression GetCodeExpression(BoundPropertyEntry entry, object parsedData, ExpressionBuilderContext context) { Debug.Fail("This should never be called"); return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.Security.Permissions; using System.CodeDom; using System.Diagnostics; using System.Reflection; using System.Web.UI; internal class DataBindingExpressionBuilder : ExpressionBuilder { private static EventInfo eventInfo; private const string EvalMethodName = "Eval"; private const string GetDataItemMethodName = "GetDataItem"; internal static EventInfo Event { get { if (eventInfo == null) { eventInfo = typeof(Control).GetEvent("DataBinding"); } return eventInfo; } } internal static void BuildEvalExpression(string field, string formatString, string propertyName, Type propertyType, ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { // Altogether, this function will create a statement that looks like this: // if (this.Page.GetDataItem() != null) { // target.{{propName}} = ({{propType}}) this.Eval(fieldName, formatString); // } // this.Eval(fieldName, formatString) CodeMethodInvokeExpression evalExpr = new CodeMethodInvokeExpression(); evalExpr.Method.TargetObject = new CodeThisReferenceExpression(); evalExpr.Method.MethodName = EvalMethodName; evalExpr.Parameters.Add(new CodePrimitiveExpression(field)); if (!String.IsNullOrEmpty(formatString)) { evalExpr.Parameters.Add(new CodePrimitiveExpression(formatString)); } CodeStatementCollection evalStatements = new CodeStatementCollection(); BuildPropertySetExpression(evalExpr, propertyName, propertyType, controlBuilder, methodStatements, evalStatements, linePragma, ref hasTempObject); // if (this.Page.GetDataItem() != null) CodeMethodInvokeExpression getDataItemExpr = new CodeMethodInvokeExpression(); getDataItemExpr.Method.TargetObject = new CodePropertyReferenceExpression(new CodeThisReferenceExpression(), "Page"); getDataItemExpr.Method.MethodName = GetDataItemMethodName; CodeConditionStatement ifStmt = new CodeConditionStatement(); ifStmt.Condition = new CodeBinaryOperatorExpression(getDataItemExpr, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null)); ifStmt.TrueStatements.AddRange(evalStatements); statements.Add(ifStmt); } private static void BuildPropertySetExpression(CodeExpression expression, string propertyName, Type propertyType, ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { CodeDomUtility.CreatePropertySetStatements(methodStatements, statements, new CodeVariableReferenceExpression("dataBindingExpressionBuilderTarget"), propertyName, propertyType, expression, linePragma); } internal static void BuildExpressionSetup(ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatementCollection statements) { // {{controlType}} target; CodeVariableDeclarationStatement targetDecl = new CodeVariableDeclarationStatement(controlBuilder.ControlType, "dataBindingExpressionBuilderTarget"); methodStatements.Add(targetDecl); CodeVariableReferenceExpression targetExp = new CodeVariableReferenceExpression(targetDecl.Name); // target = ({{controlType}}) sender; CodeAssignStatement setTarget = new CodeAssignStatement(targetExp, new CodeCastExpression(controlBuilder.ControlType, new CodeArgumentReferenceExpression("sender"))); statements.Add(setTarget); Type bindingContainerType = controlBuilder.BindingContainerType; CodeVariableDeclarationStatement containerDecl = new CodeVariableDeclarationStatement(bindingContainerType, "Container"); methodStatements.Add(containerDecl); // {{containerType}} Container = ({{containerType}}) target.BindingContainer; CodeAssignStatement setContainer = new CodeAssignStatement(new CodeVariableReferenceExpression(containerDecl.Name), new CodeCastExpression(bindingContainerType, new CodePropertyReferenceExpression(targetExp, "BindingContainer"))); statements.Add(setContainer); } internal override void BuildExpression(BoundPropertyEntry bpe, ControlBuilder controlBuilder, CodeExpression controlReference, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { BuildExpressionStatic(bpe, controlBuilder, controlReference, methodStatements, statements, linePragma, ref hasTempObject); } internal static void BuildExpressionStatic(BoundPropertyEntry bpe, ControlBuilder controlBuilder, CodeExpression controlReference, CodeStatementCollection methodStatements, CodeStatementCollection statements, CodeLinePragma linePragma, ref bool hasTempObject) { CodeExpression expr = new CodeSnippetExpression(bpe.Expression); BuildPropertySetExpression(expr, bpe.Name, bpe.Type, controlBuilder, methodStatements, statements, linePragma, ref hasTempObject); } public override CodeExpression GetCodeExpression(BoundPropertyEntry entry, object parsedData, ExpressionBuilderContext context) { Debug.Fail("This should never be called"); return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HScrollBar.cs
- CredentialCache.cs
- Label.cs
- CompositeScriptReference.cs
- SqlTypeSystemProvider.cs
- DataSourceCache.cs
- ResourceContainer.cs
- DoubleAnimation.cs
- XmlNodeChangedEventManager.cs
- Animatable.cs
- MediaPlayer.cs
- FontDialog.cs
- LeaseManager.cs
- BinarySerializer.cs
- RecommendedAsConfigurableAttribute.cs
- TdsParserHelperClasses.cs
- DbTransaction.cs
- DispatcherOperation.cs
- MergeFilterQuery.cs
- WriteableBitmap.cs
- ListViewGroup.cs
- DataViewSettingCollection.cs
- Paragraph.cs
- TreeViewItemAutomationPeer.cs
- SerialErrors.cs
- userdatakeys.cs
- QueryInterceptorAttribute.cs
- Misc.cs
- ExpandCollapsePattern.cs
- DataContractAttribute.cs
- SectionUpdates.cs
- XXXInfos.cs
- LayoutUtils.cs
- DbInsertCommandTree.cs
- ValueSerializerAttribute.cs
- ServicesUtilities.cs
- ResXDataNode.cs
- ComboBoxDesigner.cs
- ObjectMaterializedEventArgs.cs
- SequentialOutput.cs
- GroupBoxAutomationPeer.cs
- DrawingGroup.cs
- HttpVersion.cs
- SecurityManager.cs
- ContainerAction.cs
- VersionedStream.cs
- ElementMarkupObject.cs
- DispatcherExceptionFilterEventArgs.cs
- ToolboxItemCollection.cs
- DataGridViewSortCompareEventArgs.cs
- SoapAttributeOverrides.cs
- DeviceFilterDictionary.cs
- OutputScopeManager.cs
- TargetParameterCountException.cs
- Update.cs
- ReliableOutputSessionChannel.cs
- RootCodeDomSerializer.cs
- TrackPoint.cs
- DataFormats.cs
- AttributeUsageAttribute.cs
- HtmlInputHidden.cs
- TabletDevice.cs
- EnumerableCollectionView.cs
- DrawingCollection.cs
- ConfigurationSectionCollection.cs
- SimpleTypeResolver.cs
- SearchExpression.cs
- UInt32Converter.cs
- ControlAdapter.cs
- ScanQueryOperator.cs
- XXXOnTypeBuilderInstantiation.cs
- TextHidden.cs
- AddInIpcChannel.cs
- ReadWriteSpinLock.cs
- JulianCalendar.cs
- basecomparevalidator.cs
- LinkedResourceCollection.cs
- XPathDescendantIterator.cs
- SHA1Managed.cs
- BrowserDefinitionCollection.cs
- Setter.cs
- FastEncoder.cs
- MaskedTextBox.cs
- NativeMethods.cs
- MultipleViewPattern.cs
- Help.cs
- ComplexBindingPropertiesAttribute.cs
- ProfileEventArgs.cs
- BodyWriter.cs
- EdmItemCollection.cs
- XmlProcessingInstruction.cs
- DocumentPageTextView.cs
- httpserverutility.cs
- ObjectToIdCache.cs
- GuidTagList.cs
- CodeExpressionCollection.cs
- ExpressionBindingCollection.cs
- HtmlInputButton.cs
- SiteMapNodeCollection.cs
- ReferentialConstraintRoleElement.cs