Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / HWStack.cs / 1 / HWStack.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; namespace System.Xml { // This stack is designed to minimize object creation for the // objects being stored in the stack by allowing them to be // re-used over time. It basically pushes the objects creating // a high water mark then as Pop() is called they are not removed // so that next time Push() is called it simply returns the last // object that was already on the stack. internal class HWStack : ICloneable { internal HWStack(int GrowthRate) : this (GrowthRate, int.MaxValue) {} internal HWStack(int GrowthRate, int limit) { this.growthRate = GrowthRate; this.used = 0; this.stack = new Object[GrowthRate]; this.size = GrowthRate; this.limit = limit; } internal Object Push() { if (this.used == this.size) { if (this.limit <= this.used) { throw new XmlException(Res.Xml_StackOverflow, string.Empty); } Object[] newstack = new Object[this.size + this.growthRate]; if (this.used > 0) { System.Array.Copy(this.stack, 0, newstack, 0, this.used); } this.stack = newstack; this.size += this.growthRate; } return this.stack[this.used++]; } internal Object Pop() { if (0 < this.used) { this.used--; Object result = this.stack[this.used]; return result; } return null; } internal object Peek() { return this.used > 0 ? this.stack[this.used - 1] : null; } internal void AddToTop(object o) { if (this.used > 0) { this.stack[this.used - 1] = o; } } internal Object this[int index] { get { if (index >= 0 && index < this.used) { Object result = this.stack[index]; return result; } else { throw new IndexOutOfRangeException(); } } set { if (index >= 0 && index < this.used) { this.stack[index] = value; } else { throw new IndexOutOfRangeException(); } } } internal int Length { get { return this.used;} } // // ICloneable // private HWStack(object[] stack, int growthRate, int used, int size) { this.stack = stack; this.growthRate = growthRate; this.used = used; this.size = size; } public object Clone() { return new HWStack((object[]) this.stack.Clone(), this.growthRate, this.used, this.size); } private Object[] stack; private int growthRate; private int used; private int size; private int limit; }; } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; namespace System.Xml { // This stack is designed to minimize object creation for the // objects being stored in the stack by allowing them to be // re-used over time. It basically pushes the objects creating // a high water mark then as Pop() is called they are not removed // so that next time Push() is called it simply returns the last // object that was already on the stack. internal class HWStack : ICloneable { internal HWStack(int GrowthRate) : this (GrowthRate, int.MaxValue) {} internal HWStack(int GrowthRate, int limit) { this.growthRate = GrowthRate; this.used = 0; this.stack = new Object[GrowthRate]; this.size = GrowthRate; this.limit = limit; } internal Object Push() { if (this.used == this.size) { if (this.limit <= this.used) { throw new XmlException(Res.Xml_StackOverflow, string.Empty); } Object[] newstack = new Object[this.size + this.growthRate]; if (this.used > 0) { System.Array.Copy(this.stack, 0, newstack, 0, this.used); } this.stack = newstack; this.size += this.growthRate; } return this.stack[this.used++]; } internal Object Pop() { if (0 < this.used) { this.used--; Object result = this.stack[this.used]; return result; } return null; } internal object Peek() { return this.used > 0 ? this.stack[this.used - 1] : null; } internal void AddToTop(object o) { if (this.used > 0) { this.stack[this.used - 1] = o; } } internal Object this[int index] { get { if (index >= 0 && index < this.used) { Object result = this.stack[index]; return result; } else { throw new IndexOutOfRangeException(); } } set { if (index >= 0 && index < this.used) { this.stack[index] = value; } else { throw new IndexOutOfRangeException(); } } } internal int Length { get { return this.used;} } // // ICloneable // private HWStack(object[] stack, int growthRate, int used, int size) { this.stack = stack; this.growthRate = growthRate; this.used = used; this.size = size; } public object Clone() { return new HWStack((object[]) this.stack.Clone(), this.growthRate, this.used, this.size); } private Object[] stack; private int growthRate; private int used; private int size; private int limit; }; } // 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
- RelationshipWrapper.cs
- OperationFormatStyle.cs
- BamlStream.cs
- EntitySqlQueryBuilder.cs
- Root.cs
- AppDomainAttributes.cs
- WebPartDisplayModeCancelEventArgs.cs
- SiteMapNodeCollection.cs
- EdmError.cs
- AdapterUtil.cs
- ResourcePart.cs
- IntAverageAggregationOperator.cs
- DistributedTransactionPermission.cs
- VarRemapper.cs
- InProcStateClientManager.cs
- RealProxy.cs
- CodeMethodInvokeExpression.cs
- DataListItemCollection.cs
- CombinedGeometry.cs
- QueueProcessor.cs
- CatalogUtil.cs
- TextBoxView.cs
- CompareInfo.cs
- LinqToSqlWrapper.cs
- ComAwareEventInfo.cs
- XmlSerializableWriter.cs
- KerberosReceiverSecurityToken.cs
- MouseGestureValueSerializer.cs
- SqlDataSourceView.cs
- DataListItemCollection.cs
- ConfigXmlAttribute.cs
- ResourceExpressionBuilder.cs
- wgx_commands.cs
- HostProtectionException.cs
- TargetConverter.cs
- SamlConditions.cs
- CustomTypeDescriptor.cs
- Currency.cs
- DataSourceView.cs
- ConfigsHelper.cs
- WindowsTokenRoleProvider.cs
- FindProgressChangedEventArgs.cs
- TimeZone.cs
- SignatureGenerator.cs
- ReadOnlyHierarchicalDataSourceView.cs
- VerificationAttribute.cs
- WebPartEditorApplyVerb.cs
- UnescapedXmlDiagnosticData.cs
- HtmlHead.cs
- AsyncResult.cs
- IgnoreDeviceFilterElement.cs
- FontStyleConverter.cs
- SqlProcedureAttribute.cs
- QualifiedId.cs
- StylusCaptureWithinProperty.cs
- SchemaConstraints.cs
- StringCollectionEditor.cs
- DoubleAnimation.cs
- BamlLocalizabilityResolver.cs
- WindowsGraphicsWrapper.cs
- DragSelectionMessageFilter.cs
- EntityDescriptor.cs
- MessageQueueTransaction.cs
- TripleDES.cs
- TextShapeableCharacters.cs
- hwndwrapper.cs
- PlanCompilerUtil.cs
- MultiSelectRootGridEntry.cs
- ResourceAttributes.cs
- CodeComment.cs
- QueryOutputWriter.cs
- TreeNodeEventArgs.cs
- EdmEntityTypeAttribute.cs
- IxmlLineInfo.cs
- AnonymousIdentificationModule.cs
- Splitter.cs
- Menu.cs
- WriteableBitmap.cs
- Byte.cs
- listitem.cs
- DocumentOrderComparer.cs
- TableCell.cs
- QilFunction.cs
- DefaultAssemblyResolver.cs
- xmlNames.cs
- ListenerElementsCollection.cs
- PersistChildrenAttribute.cs
- Int64AnimationBase.cs
- SchemaElementDecl.cs
- TextServicesContext.cs
- LayoutEngine.cs
- DesignerAutoFormatCollection.cs
- KerberosRequestorSecurityToken.cs
- PackageRelationship.cs
- CodeAccessSecurityEngine.cs
- PropertyChangeTracker.cs
- Rule.cs
- Privilege.cs
- DataDocumentXPathNavigator.cs
- mediaeventshelper.cs