Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / QilList.cs / 1 / QilList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// View over a Qil operator having N children. /// ////// Don't construct QIL nodes directly; instead, use the internal class QilList : QilNode { private int count; private QilNode[] members; //----------------------------------------------- // Constructor //----------------------------------------------- ///QilFactory . ////// Construct a new (empty) QilList /// public QilList(QilNodeType nodeType) : base(nodeType) { this.members = new QilNode[4]; this.xmlType = null; } //----------------------------------------------- // QilNode methods //----------------------------------------------- ////// Lazily create the XmlQueryType. /// public override XmlQueryType XmlType { get { if (this.xmlType == null) { XmlQueryType xt = XmlQueryTypeFactory.Empty; if (this.count > 0) { if (this.nodeType == QilNodeType.Sequence) { for (int i = 0; i < this.count; i++) xt = XmlQueryTypeFactory.Sequence(xt, this.members[i].XmlType); // Sequences do not preserve DocOrderDistinct if (xt.IsDod) xt = XmlQueryTypeFactory.PrimeProduct(XmlQueryTypeFactory.NodeNotRtfS, xt.Cardinality); } else if (this.nodeType == QilNodeType.BranchList) { xt = this.members[0].XmlType; for (int i = 1; i < this.count; i++) xt = XmlQueryTypeFactory.Choice(xt, this.members[i].XmlType); } } this.xmlType = xt; } return this.xmlType; } } ////// Override in order to clone the "members" array. /// public override QilNode ShallowClone(QilFactory f) { QilList n = (QilList) MemberwiseClone(); n.members = (QilNode[]) this.members.Clone(); f.TraceNode(n); return n; } //----------------------------------------------- // IListmethods -- override //----------------------------------------------- public override int Count { get { return this.count; } } public override QilNode this[int index] { get { if (index >= 0 && index < this.count) return this.members[index]; throw new IndexOutOfRangeException(); } set { if (index >= 0 && index < this.count) this.members[index] = value; else throw new IndexOutOfRangeException(); // Invalidate XmlType this.xmlType = null; } } public override void Insert(int index, QilNode node) { if (index < 0 || index > this.count) throw new IndexOutOfRangeException(); if (this.count == this.members.Length) { QilNode[] membersNew = new QilNode[this.count * 2]; Array.Copy(this.members, membersNew, this.count); this.members = membersNew; } if (index < this.count) Array.Copy(this.members, index, this.members, index + 1, this.count - index); this.count++; this.members[index] = node; // Invalidate XmlType this.xmlType = null; } public override void RemoveAt(int index) { if (index < 0 || index >= this.count) throw new IndexOutOfRangeException(); this.count--; if (index < this.count) Array.Copy(this.members, index + 1, this.members, index, this.count - index); this.members[this.count] = null; // Invalidate XmlType this.xmlType = null; } } } // 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.Diagnostics; namespace System.Xml.Xsl.Qil { ////// View over a Qil operator having N children. /// ////// Don't construct QIL nodes directly; instead, use the internal class QilList : QilNode { private int count; private QilNode[] members; //----------------------------------------------- // Constructor //----------------------------------------------- ///QilFactory . ////// Construct a new (empty) QilList /// public QilList(QilNodeType nodeType) : base(nodeType) { this.members = new QilNode[4]; this.xmlType = null; } //----------------------------------------------- // QilNode methods //----------------------------------------------- ////// Lazily create the XmlQueryType. /// public override XmlQueryType XmlType { get { if (this.xmlType == null) { XmlQueryType xt = XmlQueryTypeFactory.Empty; if (this.count > 0) { if (this.nodeType == QilNodeType.Sequence) { for (int i = 0; i < this.count; i++) xt = XmlQueryTypeFactory.Sequence(xt, this.members[i].XmlType); // Sequences do not preserve DocOrderDistinct if (xt.IsDod) xt = XmlQueryTypeFactory.PrimeProduct(XmlQueryTypeFactory.NodeNotRtfS, xt.Cardinality); } else if (this.nodeType == QilNodeType.BranchList) { xt = this.members[0].XmlType; for (int i = 1; i < this.count; i++) xt = XmlQueryTypeFactory.Choice(xt, this.members[i].XmlType); } } this.xmlType = xt; } return this.xmlType; } } ////// Override in order to clone the "members" array. /// public override QilNode ShallowClone(QilFactory f) { QilList n = (QilList) MemberwiseClone(); n.members = (QilNode[]) this.members.Clone(); f.TraceNode(n); return n; } //----------------------------------------------- // IListmethods -- override //----------------------------------------------- public override int Count { get { return this.count; } } public override QilNode this[int index] { get { if (index >= 0 && index < this.count) return this.members[index]; throw new IndexOutOfRangeException(); } set { if (index >= 0 && index < this.count) this.members[index] = value; else throw new IndexOutOfRangeException(); // Invalidate XmlType this.xmlType = null; } } public override void Insert(int index, QilNode node) { if (index < 0 || index > this.count) throw new IndexOutOfRangeException(); if (this.count == this.members.Length) { QilNode[] membersNew = new QilNode[this.count * 2]; Array.Copy(this.members, membersNew, this.count); this.members = membersNew; } if (index < this.count) Array.Copy(this.members, index, this.members, index + 1, this.count - index); this.count++; this.members[index] = node; // Invalidate XmlType this.xmlType = null; } public override void RemoveAt(int index) { if (index < 0 || index >= this.count) throw new IndexOutOfRangeException(); this.count--; if (index < this.count) Array.Copy(this.members, index + 1, this.members, index, this.count - index); this.members[this.count] = null; // Invalidate XmlType this.xmlType = 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
- FSWPathEditor.cs
- SiteMapDataSourceView.cs
- DataGridViewCellStateChangedEventArgs.cs
- RoutedPropertyChangedEventArgs.cs
- ButtonFieldBase.cs
- ModuleBuilderData.cs
- UpdatePanelTriggerCollection.cs
- WebExceptionStatus.cs
- ServiceBusyException.cs
- DataGridViewDataErrorEventArgs.cs
- webproxy.cs
- EdmError.cs
- X509CertificateTrustedIssuerElementCollection.cs
- WrappingXamlSchemaContext.cs
- CodeSubDirectoriesCollection.cs
- AppSettingsSection.cs
- PackageProperties.cs
- SystemColorTracker.cs
- CqlErrorHelper.cs
- ProviderBase.cs
- WebPartUtil.cs
- RelOps.cs
- SHA1.cs
- Vertex.cs
- DataGridViewCell.cs
- ContentElement.cs
- BaseTemplateBuildProvider.cs
- WizardStepBase.cs
- ProfileInfo.cs
- entitydatasourceentitysetnameconverter.cs
- FileFormatException.cs
- Point3DCollection.cs
- PageThemeParser.cs
- Menu.cs
- ConfigurationProperty.cs
- BaseHashHelper.cs
- HuffCodec.cs
- CurrentTimeZone.cs
- IntegerValidatorAttribute.cs
- PerfCounters.cs
- SiteMembershipCondition.cs
- UserControl.cs
- PathSegmentCollection.cs
- newinstructionaction.cs
- HtmlObjectListAdapter.cs
- BinaryUtilClasses.cs
- CompositionCommandSet.cs
- SqlMethodTransformer.cs
- ImageMetadata.cs
- PassportAuthenticationEventArgs.cs
- ProvidePropertyAttribute.cs
- DefaultValueConverter.cs
- SafeRightsManagementEnvironmentHandle.cs
- SetIndexBinder.cs
- ClockGroup.cs
- SerializationSectionGroup.cs
- RegistrySecurity.cs
- DefaultTextStoreTextComposition.cs
- SimpleType.cs
- WebPartCatalogCloseVerb.cs
- Operand.cs
- Interfaces.cs
- RuntimeHelpers.cs
- CurrencyWrapper.cs
- CodeSnippetCompileUnit.cs
- DynamicDiscoveryDocument.cs
- Drawing.cs
- WindowsRegion.cs
- TreeWalker.cs
- MenuBase.cs
- CatalogPartDesigner.cs
- XPathDocumentNavigator.cs
- CookieParameter.cs
- Imaging.cs
- FieldBuilder.cs
- PerfCounterSection.cs
- XmlValidatingReaderImpl.cs
- PasswordRecoveryAutoFormat.cs
- UncommonField.cs
- HandleTable.cs
- LOSFormatter.cs
- ellipse.cs
- CurrentChangingEventArgs.cs
- SafeBitVector32.cs
- X509PeerCertificateAuthentication.cs
- XmlComplianceUtil.cs
- ClientOptions.cs
- RenderData.cs
- ApplicationSettingsBase.cs
- SmiConnection.cs
- ManagementOperationWatcher.cs
- ValidatorCompatibilityHelper.cs
- RSAOAEPKeyExchangeFormatter.cs
- OutputCacheProfile.cs
- DiscoveryClientProtocol.cs
- PackagePart.cs
- MailMessage.cs
- DataGridViewCellValueEventArgs.cs
- GlyphsSerializer.cs
- XmlSchemaAny.cs