Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Query / InternalTrees / Nodes.cs / 1305376 / Nodes.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Metadata.Edm; using System.Globalization; using System.Diagnostics; namespace System.Data.Query.InternalTrees { ////// A Node describes a node in a query tree. Each node has an operator, and /// a list of zero or more children of that operator. /// internal class Node { #region private state private int m_id; private Listm_children; private Op m_op; private NodeInfo m_nodeInfo; #endregion #region constructors /// /// Basic constructor. /// /// NEVER call this routine directly - you should always use the Command.CreateNode /// factory methods. /// /// id for the node /// The operator /// List of child nodes internal Node(int nodeId, Op op, Listchildren) { m_id = nodeId; m_op = op; m_children = children; } /// /// This routine is only used for building up rule patterns. /// NEVER use this routine for building up nodes in a user command tree. /// /// /// internal Node(Op op, params Node[] children) : this(-1, op, new List(children)) { } #endregion #region public properties and methods #if DEBUG internal int Id { get { return m_id; } } #endif /// /// Get the list of children /// internal ListChildren { get { return m_children; } } /// /// Gets or sets the node's operator /// internal Op Op { get { return m_op; } set { m_op = value; } } ////// Simpler (?) getter/setter routines /// internal Node Child0 { get { return m_children[0]; } set { m_children[0] = value; } } ////// Do I have a zeroth child? /// internal bool HasChild0 { get { return m_children.Count > 0; } } ////// Get/set first child /// internal Node Child1 { get { return m_children[1]; } set { m_children[1] = value; } } ////// Do I have a child1? /// internal bool HasChild1 { get { return m_children.Count > 1; } } ////// get/set second child /// internal Node Child2 { get { return m_children[2]; } set { m_children[2] = value; } } ////// get/set second child /// internal Node Child3 { get { return m_children[3]; } /* commented out because of fxcop - there are no upstream callers -- set { m_children[3] = value; }*/ } ////// Do I have a child2 (third child really) /// internal bool HasChild2 { get { return m_children.Count > 2; } } ////// Do I have a child3 (fourth child really) /// internal bool HasChild3 { get { return m_children.Count > 3; } } #region equivalence functions ////// Is this subtree equivalent to another subtree /// /// ///internal bool IsEquivalent(Node other) { if (this.Children.Count != other.Children.Count) { return false; } bool? opEquivalent = this.Op.IsEquivalent(other.Op); if (opEquivalent != true) { return false; } for (int i = 0; i < this.Children.Count; i++) { if (!this.Children[i].IsEquivalent(other.Children[i])) { return false; } } return true; } #endregion #region NodeInfo methods and properties /// /// Has the node info been initialized, i.e. previously computed /// internal bool IsNodeInfoInitialized { get { return (m_nodeInfo != null); } } ////// Get the nodeInfo for a node. Initializes it, if it has not yet been initialized /// /// Current command object ///NodeInfo for this node internal NodeInfo GetNodeInfo(Command command) { if (m_nodeInfo == null) { InitializeNodeInfo(command); } return m_nodeInfo; } ////// Gets the "extended" nodeinfo for a node; if it has not yet been initialized, then it will be /// /// current command object ///extended nodeinfo for this node internal ExtendedNodeInfo GetExtendedNodeInfo(Command command) { if (m_nodeInfo == null) { InitializeNodeInfo(command); } ExtendedNodeInfo extendedNodeInfo = m_nodeInfo as ExtendedNodeInfo; Debug.Assert(extendedNodeInfo != null); return extendedNodeInfo; } private void InitializeNodeInfo(Command command) { if (this.Op.IsRelOp || this.Op.IsPhysicalOp) { m_nodeInfo = new ExtendedNodeInfo(command); } else { m_nodeInfo = new NodeInfo(command); } command.RecomputeNodeInfo(this); } #endregion #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Metadata.Edm; using System.Globalization; using System.Diagnostics; namespace System.Data.Query.InternalTrees { ////// A Node describes a node in a query tree. Each node has an operator, and /// a list of zero or more children of that operator. /// internal class Node { #region private state private int m_id; private Listm_children; private Op m_op; private NodeInfo m_nodeInfo; #endregion #region constructors /// /// Basic constructor. /// /// NEVER call this routine directly - you should always use the Command.CreateNode /// factory methods. /// /// id for the node /// The operator /// List of child nodes internal Node(int nodeId, Op op, Listchildren) { m_id = nodeId; m_op = op; m_children = children; } /// /// This routine is only used for building up rule patterns. /// NEVER use this routine for building up nodes in a user command tree. /// /// /// internal Node(Op op, params Node[] children) : this(-1, op, new List(children)) { } #endregion #region public properties and methods #if DEBUG internal int Id { get { return m_id; } } #endif /// /// Get the list of children /// internal ListChildren { get { return m_children; } } /// /// Gets or sets the node's operator /// internal Op Op { get { return m_op; } set { m_op = value; } } ////// Simpler (?) getter/setter routines /// internal Node Child0 { get { return m_children[0]; } set { m_children[0] = value; } } ////// Do I have a zeroth child? /// internal bool HasChild0 { get { return m_children.Count > 0; } } ////// Get/set first child /// internal Node Child1 { get { return m_children[1]; } set { m_children[1] = value; } } ////// Do I have a child1? /// internal bool HasChild1 { get { return m_children.Count > 1; } } ////// get/set second child /// internal Node Child2 { get { return m_children[2]; } set { m_children[2] = value; } } ////// get/set second child /// internal Node Child3 { get { return m_children[3]; } /* commented out because of fxcop - there are no upstream callers -- set { m_children[3] = value; }*/ } ////// Do I have a child2 (third child really) /// internal bool HasChild2 { get { return m_children.Count > 2; } } ////// Do I have a child3 (fourth child really) /// internal bool HasChild3 { get { return m_children.Count > 3; } } #region equivalence functions ////// Is this subtree equivalent to another subtree /// /// ///internal bool IsEquivalent(Node other) { if (this.Children.Count != other.Children.Count) { return false; } bool? opEquivalent = this.Op.IsEquivalent(other.Op); if (opEquivalent != true) { return false; } for (int i = 0; i < this.Children.Count; i++) { if (!this.Children[i].IsEquivalent(other.Children[i])) { return false; } } return true; } #endregion #region NodeInfo methods and properties /// /// Has the node info been initialized, i.e. previously computed /// internal bool IsNodeInfoInitialized { get { return (m_nodeInfo != null); } } ////// Get the nodeInfo for a node. Initializes it, if it has not yet been initialized /// /// Current command object ///NodeInfo for this node internal NodeInfo GetNodeInfo(Command command) { if (m_nodeInfo == null) { InitializeNodeInfo(command); } return m_nodeInfo; } ////// Gets the "extended" nodeinfo for a node; if it has not yet been initialized, then it will be /// /// current command object ///extended nodeinfo for this node internal ExtendedNodeInfo GetExtendedNodeInfo(Command command) { if (m_nodeInfo == null) { InitializeNodeInfo(command); } ExtendedNodeInfo extendedNodeInfo = m_nodeInfo as ExtendedNodeInfo; Debug.Assert(extendedNodeInfo != null); return extendedNodeInfo; } private void InitializeNodeInfo(Command command) { if (this.Op.IsRelOp || this.Op.IsPhysicalOp) { m_nodeInfo = new ExtendedNodeInfo(command); } else { m_nodeInfo = new NodeInfo(command); } command.RecomputeNodeInfo(this); } #endregion #endregion } } // 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
- FeedUtils.cs
- _ContextAwareResult.cs
- CompilationUnit.cs
- RoleGroup.cs
- COM2FontConverter.cs
- SchemaObjectWriter.cs
- OpCodes.cs
- InheritablePropertyChangeInfo.cs
- LinkTarget.cs
- ExponentialEase.cs
- EncryptedKey.cs
- NotImplementedException.cs
- AddInServer.cs
- AdapterDictionary.cs
- GestureRecognizer.cs
- FormView.cs
- RulePatternOps.cs
- SubMenuStyleCollection.cs
- TdsRecordBufferSetter.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- XmlnsDefinitionAttribute.cs
- NameTable.cs
- ColumnReorderedEventArgs.cs
- X509Certificate2Collection.cs
- InputScope.cs
- EntityDataReader.cs
- ResourceAttributes.cs
- UpdatePanelControlTrigger.cs
- UriTemplatePathSegment.cs
- AstTree.cs
- XPathAxisIterator.cs
- ValidationPropertyAttribute.cs
- ContextDataSourceContextData.cs
- ConsumerConnectionPointCollection.cs
- FileDialogCustomPlace.cs
- EqualityComparer.cs
- ToolStripContentPanelDesigner.cs
- BrowserCapabilitiesFactory.cs
- DelimitedListTraceListener.cs
- ValueType.cs
- DataGridViewDataErrorEventArgs.cs
- BatchWriter.cs
- EventInfo.cs
- ServiceProviders.cs
- PlainXmlWriter.cs
- AutoGeneratedFieldProperties.cs
- QilPatternFactory.cs
- AppDomainShutdownMonitor.cs
- DesignBindingPropertyDescriptor.cs
- ApplyTemplatesAction.cs
- Ipv6Element.cs
- ItemContainerGenerator.cs
- SessionConnectionReader.cs
- BuildResult.cs
- XhtmlBasicControlAdapter.cs
- File.cs
- CacheVirtualItemsEvent.cs
- dtdvalidator.cs
- DesignerForm.cs
- QueryCacheManager.cs
- CryptoStream.cs
- ActivationWorker.cs
- Italic.cs
- SmtpLoginAuthenticationModule.cs
- XmlEntity.cs
- WebPartVerb.cs
- LicenseContext.cs
- BamlCollectionHolder.cs
- ExpressionsCollectionConverter.cs
- _WinHttpWebProxyDataBuilder.cs
- printdlgexmarshaler.cs
- FontFaceLayoutInfo.cs
- ScriptModule.cs
- CatalogPartChrome.cs
- EpmSyndicationContentSerializer.cs
- SeverityFilter.cs
- SmiEventSink_DeferedProcessing.cs
- NotifyIcon.cs
- IBuiltInEvidence.cs
- KeyGestureValueSerializer.cs
- ComponentDispatcher.cs
- Addressing.cs
- SizeAnimationUsingKeyFrames.cs
- RemotingConfiguration.cs
- PartialTrustVisibleAssembliesSection.cs
- ValueTypeFixupInfo.cs
- EUCJPEncoding.cs
- FormsAuthenticationModule.cs
- OleDbException.cs
- CollectionView.cs
- WebPartDisplayModeCancelEventArgs.cs
- CalendarTable.cs
- CompilerInfo.cs
- TypeConverterHelper.cs
- HttpHeaderCollection.cs
- StylusPointDescription.cs
- MethodExpr.cs
- ReflectionTypeLoadException.cs
- DbDataRecord.cs
- Wizard.cs