Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DLinq / Dlinq / SqlClient / Query / SqlBooleanMismatchVisitor.cs / 1 / SqlBooleanMismatchVisitor.cs
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Data; namespace System.Data.Linq.SqlClient { using System.Data.Linq; using System.Diagnostics.CodeAnalysis; ////// This visitor searches for places where 'Predicate' is found but a 'Bit' /// was expected or vice versa. In response, it will call VisitBitExpectedPredicate /// and VisitPredicateExpectedBit. /// internal abstract class SqlBooleanMismatchVisitor : SqlVisitor { internal SqlBooleanMismatchVisitor() { } internal abstract SqlExpression ConvertValueToPredicate(SqlExpression valueExpression); internal abstract SqlExpression ConvertPredicateToValue(SqlExpression predicateExpression); internal override SqlSelect VisitSelect(SqlSelect select) { select.From = this.VisitSource(select.From); select.Where = this.VisitPredicate(select.Where); for (int i = 0, n = select.GroupBy.Count; i < n; i++) { select.GroupBy[i] = this.VisitExpression(select.GroupBy[i]); } select.Having = this.VisitPredicate(select.Having); for (int i = 0, n = select.OrderBy.Count; i < n; i++) { select.OrderBy[i].Expression = this.VisitExpression(select.OrderBy[i].Expression); } select.Top = this.VisitExpression(select.Top); select.Row = (SqlRow)this.Visit(select.Row); // don't visit selection //select.Selection = this.VisitExpression(select.Selection); return select; } internal override SqlSource VisitJoin(SqlJoin join) { join.Left = this.VisitSource(join.Left); join.Right = this.VisitSource(join.Right); join.Condition = this.VisitPredicate(join.Condition); return join; } internal override SqlExpression VisitUnaryOperator(SqlUnary uo) { if (uo.NodeType.IsUnaryOperatorExpectingPredicateOperand()) { uo.Operand = this.VisitPredicate(uo.Operand); } else { uo.Operand = this.VisitExpression(uo.Operand); } return uo; } internal override SqlExpression VisitBinaryOperator(SqlBinary bo) { if (bo.NodeType.IsBinaryOperatorExpectingPredicateOperands()) { bo.Left = this.VisitPredicate(bo.Left); bo.Right = this.VisitPredicate(bo.Right); } else { bo.Left = this.VisitExpression(bo.Left); bo.Right = this.VisitExpression(bo.Right); } return bo; } internal override SqlStatement VisitAssign(SqlAssign sa) { // L-Value of assign is never a 'Bit' nor a 'Predicate'. sa.LValue = this.VisitExpression(sa.LValue); sa.RValue = this.VisitExpression(sa.RValue); return sa; } internal override SqlExpression VisitSearchedCase(SqlSearchedCase c) { for (int i = 0, n = c.Whens.Count; i < n; i++) { SqlWhen when = c.Whens[i]; when.Match = this.VisitPredicate(when.Match); when.Value = this.VisitExpression(when.Value); } c.Else = this.VisitExpression(c.Else); return c; } internal override SqlExpression VisitLift(SqlLift lift) { lift.Expression = base.VisitExpression(lift.Expression); return lift; } ////// If an expression is type 'Bit' but a 'Predicate' is expected then /// call 'VisitBitExpectedPredicate'. /// internal SqlExpression VisitPredicate(SqlExpression exp) { exp = (SqlExpression)base.Visit(exp); if (exp != null) { if (!IsPredicateExpression(exp)) { exp = ConvertValueToPredicate(exp); } } return exp; } ////// Any remaining calls to VisitExpression expect a 'Bit' when there's /// a boolean expression. /// internal override SqlExpression VisitExpression(SqlExpression exp) { exp = (SqlExpression)base.Visit(exp); if (exp != null) { if (IsPredicateExpression(exp)) { exp = ConvertPredicateToValue(exp); } } return exp; } [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.")] private static bool IsPredicateExpression(SqlExpression exp) { switch (exp.NodeType) { case SqlNodeType.And: case SqlNodeType.Or: case SqlNodeType.Not: case SqlNodeType.Not2V: case SqlNodeType.EQ: case SqlNodeType.EQ2V: case SqlNodeType.NE: case SqlNodeType.NE2V: case SqlNodeType.GE: case SqlNodeType.GT: case SqlNodeType.LE: case SqlNodeType.LT: case SqlNodeType.Exists: case SqlNodeType.Between: case SqlNodeType.In: case SqlNodeType.Like: case SqlNodeType.IsNotNull: case SqlNodeType.IsNull: return true; case SqlNodeType.Lift: return IsPredicateExpression(((SqlLift)exp).Expression); default: return false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Data; namespace System.Data.Linq.SqlClient { using System.Data.Linq; using System.Diagnostics.CodeAnalysis; ////// This visitor searches for places where 'Predicate' is found but a 'Bit' /// was expected or vice versa. In response, it will call VisitBitExpectedPredicate /// and VisitPredicateExpectedBit. /// internal abstract class SqlBooleanMismatchVisitor : SqlVisitor { internal SqlBooleanMismatchVisitor() { } internal abstract SqlExpression ConvertValueToPredicate(SqlExpression valueExpression); internal abstract SqlExpression ConvertPredicateToValue(SqlExpression predicateExpression); internal override SqlSelect VisitSelect(SqlSelect select) { select.From = this.VisitSource(select.From); select.Where = this.VisitPredicate(select.Where); for (int i = 0, n = select.GroupBy.Count; i < n; i++) { select.GroupBy[i] = this.VisitExpression(select.GroupBy[i]); } select.Having = this.VisitPredicate(select.Having); for (int i = 0, n = select.OrderBy.Count; i < n; i++) { select.OrderBy[i].Expression = this.VisitExpression(select.OrderBy[i].Expression); } select.Top = this.VisitExpression(select.Top); select.Row = (SqlRow)this.Visit(select.Row); // don't visit selection //select.Selection = this.VisitExpression(select.Selection); return select; } internal override SqlSource VisitJoin(SqlJoin join) { join.Left = this.VisitSource(join.Left); join.Right = this.VisitSource(join.Right); join.Condition = this.VisitPredicate(join.Condition); return join; } internal override SqlExpression VisitUnaryOperator(SqlUnary uo) { if (uo.NodeType.IsUnaryOperatorExpectingPredicateOperand()) { uo.Operand = this.VisitPredicate(uo.Operand); } else { uo.Operand = this.VisitExpression(uo.Operand); } return uo; } internal override SqlExpression VisitBinaryOperator(SqlBinary bo) { if (bo.NodeType.IsBinaryOperatorExpectingPredicateOperands()) { bo.Left = this.VisitPredicate(bo.Left); bo.Right = this.VisitPredicate(bo.Right); } else { bo.Left = this.VisitExpression(bo.Left); bo.Right = this.VisitExpression(bo.Right); } return bo; } internal override SqlStatement VisitAssign(SqlAssign sa) { // L-Value of assign is never a 'Bit' nor a 'Predicate'. sa.LValue = this.VisitExpression(sa.LValue); sa.RValue = this.VisitExpression(sa.RValue); return sa; } internal override SqlExpression VisitSearchedCase(SqlSearchedCase c) { for (int i = 0, n = c.Whens.Count; i < n; i++) { SqlWhen when = c.Whens[i]; when.Match = this.VisitPredicate(when.Match); when.Value = this.VisitExpression(when.Value); } c.Else = this.VisitExpression(c.Else); return c; } internal override SqlExpression VisitLift(SqlLift lift) { lift.Expression = base.VisitExpression(lift.Expression); return lift; } ////// If an expression is type 'Bit' but a 'Predicate' is expected then /// call 'VisitBitExpectedPredicate'. /// internal SqlExpression VisitPredicate(SqlExpression exp) { exp = (SqlExpression)base.Visit(exp); if (exp != null) { if (!IsPredicateExpression(exp)) { exp = ConvertValueToPredicate(exp); } } return exp; } ////// Any remaining calls to VisitExpression expect a 'Bit' when there's /// a boolean expression. /// internal override SqlExpression VisitExpression(SqlExpression exp) { exp = (SqlExpression)base.Visit(exp); if (exp != null) { if (IsPredicateExpression(exp)) { exp = ConvertPredicateToValue(exp); } } return exp; } [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.")] private static bool IsPredicateExpression(SqlExpression exp) { switch (exp.NodeType) { case SqlNodeType.And: case SqlNodeType.Or: case SqlNodeType.Not: case SqlNodeType.Not2V: case SqlNodeType.EQ: case SqlNodeType.EQ2V: case SqlNodeType.NE: case SqlNodeType.NE2V: case SqlNodeType.GE: case SqlNodeType.GT: case SqlNodeType.LE: case SqlNodeType.LT: case SqlNodeType.Exists: case SqlNodeType.Between: case SqlNodeType.In: case SqlNodeType.Like: case SqlNodeType.IsNotNull: case SqlNodeType.IsNull: return true; case SqlNodeType.Lift: return IsPredicateExpression(((SqlLift)exp).Expression); default: return false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StructuralObject.cs
- ListViewUpdateEventArgs.cs
- Point4D.cs
- ComboBoxAutomationPeer.cs
- ReadOnlyDataSource.cs
- EmptyEnumerable.cs
- RepeaterItemCollection.cs
- SqlInternalConnectionSmi.cs
- DataGridViewElement.cs
- KeyValueConfigurationElement.cs
- NCryptSafeHandles.cs
- SupportingTokenSpecification.cs
- ResXResourceWriter.cs
- RuleSetCollection.cs
- CookieParameter.cs
- followingquery.cs
- VBIdentifierNameEditor.cs
- ObjectResult.cs
- Frame.cs
- IsolatedStorageException.cs
- StaticFileHandler.cs
- BitmapEffect.cs
- NativeMethods.cs
- SearchForVirtualItemEventArgs.cs
- rsa.cs
- FieldDescriptor.cs
- Int32Animation.cs
- DispatcherObject.cs
- Help.cs
- VectorValueSerializer.cs
- Model3D.cs
- EdmItemError.cs
- XmlNamespaceDeclarationsAttribute.cs
- HttpAsyncResult.cs
- EventLogPermission.cs
- GridViewRowEventArgs.cs
- PassportIdentity.cs
- EnumValAlphaComparer.cs
- PageFunction.cs
- PermissionSetTriple.cs
- LeaseManager.cs
- HwndSourceKeyboardInputSite.cs
- DesignerValidationSummaryAdapter.cs
- BlurEffect.cs
- MulticastIPAddressInformationCollection.cs
- TableLayoutStyle.cs
- ReachUIElementCollectionSerializer.cs
- MonthChangedEventArgs.cs
- StorageEntitySetMapping.cs
- ImmutableClientRuntime.cs
- DynamicValidator.cs
- XmlIgnoreAttribute.cs
- listitem.cs
- ExpressionVisitor.cs
- ChtmlTextWriter.cs
- DataBoundControlHelper.cs
- NameSpaceExtractor.cs
- updateconfighost.cs
- NetworkInformationException.cs
- Configuration.cs
- ProfileEventArgs.cs
- VariableQuery.cs
- CompilerWrapper.cs
- InplaceBitmapMetadataWriter.cs
- unsafeIndexingFilterStream.cs
- PassportAuthentication.cs
- X509Certificate2.cs
- DispatchChannelSink.cs
- TypeUtils.cs
- WebPartHelpVerb.cs
- PrivateFontCollection.cs
- Viewport3DVisual.cs
- NamespaceList.cs
- SoapAttributeOverrides.cs
- ControlPaint.cs
- CompiledELinqQueryState.cs
- ETagAttribute.cs
- RsaEndpointIdentity.cs
- TransformConverter.cs
- ProxyGenerator.cs
- TypeCodeDomSerializer.cs
- TemplateInstanceAttribute.cs
- Padding.cs
- SqlMethodAttribute.cs
- WindowsStatusBar.cs
- DateTimeConstantAttribute.cs
- HttpHandlersSection.cs
- OpenTypeLayout.cs
- HandleCollector.cs
- ExeConfigurationFileMap.cs
- SerTrace.cs
- RequestQueryProcessor.cs
- ReflectionServiceProvider.cs
- XmlQualifiedNameTest.cs
- TraceProvider.cs
- DataGridViewLayoutData.cs
- WebPartExportVerb.cs
- Invariant.cs
- SessionIDManager.cs
- SchemaObjectWriter.cs