Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / DotExpr.cs / 1 / DotExpr.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @bacukp [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// represents dotExpr (expr)+.Identifier /// internal sealed class DotExpr : Expr #if EXTRA_ENTITYSQL_PARSER_DEBUGGING , IEnumerable#endif { private Expr _leftExpr; private Identifier _identifier; private bool _wasDotIdComputed; private bool _isDottedIdentifier; private string[] _identifierNames; private string _fullName; private int _length; private Expr _leftmostExpr; /// /// initializes /// /// /// internal DotExpr( Expr expr, Identifier id ) { _leftExpr = expr; _identifier = id; } internal Expr Left { get { return _leftExpr; } } internal Identifier Identifier { get { return _identifier; } } internal bool IsDottedIdentifier { get { CheckIfDotIdentifier(); return _isDottedIdentifier; } } internal int Length { get { CheckIfDotIdentifier(); return _length; } } internal string[] Names { get { CheckIfDotIdentifier(); return _identifierNames; } } internal string FullName { get { CheckIfDotIdentifier(); return _fullName; } } internal Expr LeftMostExpression { get { CheckIfDotIdentifier(); return _leftmostExpr; } } // // Delay computation and cache results // private void CheckIfDotIdentifier() { if (_wasDotIdComputed) { return; } _wasDotIdComputed = true; // // Get number of 'elements' // _length = 0; _isDottedIdentifier = false; Expr expr = this; while (expr is DotExpr) { _length++; expr = ((DotExpr)expr).Left; } if (expr is Identifier) { _isDottedIdentifier = true; _length++; } else { _leftmostExpr = expr; } _identifierNames = new string[_length]; int i = _length - 1; expr = this; while (expr is DotExpr) { DotExpr dotExpr = (DotExpr)expr; _identifierNames[i--] = dotExpr.Identifier.Name; expr = dotExpr.Left; } if (null == _leftmostExpr && null != expr) { _identifierNames[i] = ((Identifier)expr).Name; } _fullName = String.Join(".", _identifierNames); } #if EXTRA_ENTITYSQL_PARSER_DEBUGGING #region GetEnumerator public IEnumeratorGetEnumerator() { Expr _expr = this; while (_expr is DotExpr) { yield return _expr; _expr = ((DotExpr)_expr).Left; } } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return GetEnumerator(); } #endregion #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @bacukp [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// represents dotExpr (expr)+.Identifier /// internal sealed class DotExpr : Expr #if EXTRA_ENTITYSQL_PARSER_DEBUGGING , IEnumerable#endif { private Expr _leftExpr; private Identifier _identifier; private bool _wasDotIdComputed; private bool _isDottedIdentifier; private string[] _identifierNames; private string _fullName; private int _length; private Expr _leftmostExpr; /// /// initializes /// /// /// internal DotExpr( Expr expr, Identifier id ) { _leftExpr = expr; _identifier = id; } internal Expr Left { get { return _leftExpr; } } internal Identifier Identifier { get { return _identifier; } } internal bool IsDottedIdentifier { get { CheckIfDotIdentifier(); return _isDottedIdentifier; } } internal int Length { get { CheckIfDotIdentifier(); return _length; } } internal string[] Names { get { CheckIfDotIdentifier(); return _identifierNames; } } internal string FullName { get { CheckIfDotIdentifier(); return _fullName; } } internal Expr LeftMostExpression { get { CheckIfDotIdentifier(); return _leftmostExpr; } } // // Delay computation and cache results // private void CheckIfDotIdentifier() { if (_wasDotIdComputed) { return; } _wasDotIdComputed = true; // // Get number of 'elements' // _length = 0; _isDottedIdentifier = false; Expr expr = this; while (expr is DotExpr) { _length++; expr = ((DotExpr)expr).Left; } if (expr is Identifier) { _isDottedIdentifier = true; _length++; } else { _leftmostExpr = expr; } _identifierNames = new string[_length]; int i = _length - 1; expr = this; while (expr is DotExpr) { DotExpr dotExpr = (DotExpr)expr; _identifierNames[i--] = dotExpr.Identifier.Name; expr = dotExpr.Left; } if (null == _leftmostExpr && null != expr) { _identifierNames[i] = ((Identifier)expr).Name; } _fullName = String.Join(".", _identifierNames); } #if EXTRA_ENTITYSQL_PARSER_DEBUGGING #region GetEnumerator public IEnumeratorGetEnumerator() { Expr _expr = this; while (_expr is DotExpr) { yield return _expr; _expr = ((DotExpr)_expr).Left; } } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return GetEnumerator(); } #endregion #endif } } // 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
- ConversionHelper.cs
- NumericExpr.cs
- CorrelationValidator.cs
- MatrixCamera.cs
- LinqDataView.cs
- IChannel.cs
- XamlGridLengthSerializer.cs
- SplitterCancelEvent.cs
- MimeMapping.cs
- JsonSerializer.cs
- RegistryConfigurationProvider.cs
- Pens.cs
- EntityCollectionChangedParams.cs
- RawStylusInput.cs
- NegatedCellConstant.cs
- NamespaceImport.cs
- HttpModule.cs
- LabelDesigner.cs
- TdsParser.cs
- DataGridTemplateColumn.cs
- XhtmlConformanceSection.cs
- RepeatButtonAutomationPeer.cs
- _FtpControlStream.cs
- DesignerDataColumn.cs
- CatalogPartChrome.cs
- BrowserCapabilitiesFactoryBase.cs
- SettingsPropertyValueCollection.cs
- EventWaitHandleSecurity.cs
- cache.cs
- ToolStripPanelCell.cs
- NetPeerTcpBinding.cs
- AppDomainCompilerProxy.cs
- TdsParserHelperClasses.cs
- WindowsFormsSectionHandler.cs
- TrimSurroundingWhitespaceAttribute.cs
- InvalidOperationException.cs
- NativeRightsManagementAPIsStructures.cs
- LocalizableAttribute.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- DBBindings.cs
- StatusBarPanelClickEvent.cs
- MouseGesture.cs
- EdmTypeAttribute.cs
- DiagnosticsConfiguration.cs
- File.cs
- PartialTrustVisibleAssembliesSection.cs
- WebInvokeAttribute.cs
- ListView.cs
- IndependentlyAnimatedPropertyMetadata.cs
- DecimalAnimation.cs
- DBSchemaRow.cs
- MemberNameValidator.cs
- BitmapEffectvisualstate.cs
- PropertyTab.cs
- DataControlFieldCell.cs
- UnsafeNativeMethods.cs
- oledbmetadatacollectionnames.cs
- OdbcParameter.cs
- XmlILModule.cs
- TextLineResult.cs
- ViewStateException.cs
- CallbackValidator.cs
- CatalogZone.cs
- SchemaImporterExtensionElementCollection.cs
- HostingEnvironment.cs
- HandoffBehavior.cs
- MaterialGroup.cs
- IsolatedStorageFileStream.cs
- DbConvert.cs
- DiscoveryDocumentSearchPattern.cs
- SpeechRecognitionEngine.cs
- XPathParser.cs
- SymLanguageVendor.cs
- WebPartHelpVerb.cs
- StorageEntityContainerMapping.cs
- Font.cs
- XmlLoader.cs
- UIElementHelper.cs
- WindowHelperService.cs
- ParagraphVisual.cs
- HttpCachePolicyWrapper.cs
- ScrollChrome.cs
- RegionData.cs
- EditorPartDesigner.cs
- MemberHolder.cs
- HttpHandlerAction.cs
- FastPropertyAccessor.cs
- EntityModelSchemaGenerator.cs
- IgnoreFileBuildProvider.cs
- MouseButtonEventArgs.cs
- XamlPointCollectionSerializer.cs
- LogicalTreeHelper.cs
- ClientSettingsSection.cs
- BitmapMetadata.cs
- OdbcConnectionHandle.cs
- TrackingLocationCollection.cs
- AddressAccessDeniedException.cs
- DocumentPage.cs
- TransformerConfigurationWizardBase.cs
- X509CertificateEndpointIdentity.cs