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 / Runtime / XmlSortKeyAccumulator.cs / 1 / XmlSortKeyAccumulator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Globalization; using System.ComponentModel; namespace System.Xml.Xsl.Runtime { ////// Accumulates a list of sort keys and stores them in an array. /// [EditorBrowsable(EditorBrowsableState.Never)] public struct XmlSortKeyAccumulator { private XmlSortKey[] keys; private int pos; #if DEBUG private const int DefaultSortKeyCount = 4; #else private const int DefaultSortKeyCount = 64; #endif ////// Initialize the XmlSortKeyAccumulator. /// public void Create() { if (this.keys == null) this.keys = new XmlSortKey[DefaultSortKeyCount]; this.pos = 0; this.keys[0] = null; } ////// Create a new sort key and append it to the current run of sort keys. /// public void AddStringSortKey(XmlCollation collation, string value) { AppendSortKey(collation.CreateSortKey(value)); } public void AddDecimalSortKey(XmlCollation collation, decimal value) { AppendSortKey(new XmlDecimalSortKey(value, collation)); } public void AddIntegerSortKey(XmlCollation collation, long value) { AppendSortKey(new XmlIntegerSortKey(value, collation)); } public void AddIntSortKey(XmlCollation collation, int value) { AppendSortKey(new XmlIntSortKey(value, collation)); } public void AddDoubleSortKey(XmlCollation collation, double value) { AppendSortKey(new XmlDoubleSortKey(value, collation)); } public void AddDateTimeSortKey(XmlCollation collation, DateTime value) { AppendSortKey(new XmlDateTimeSortKey(value, collation)); } public void AddEmptySortKey(XmlCollation collation) { AppendSortKey(new XmlEmptySortKey(collation)); } ////// Finish creating the current run of sort keys and begin a new run. /// public void FinishSortKeys() { this.pos++; if (this.pos >= this.keys.Length) { XmlSortKey[] keysNew = new XmlSortKey[this.pos * 2]; Array.Copy(this.keys, 0, keysNew, 0, this.keys.Length); this.keys = keysNew; } this.keys[this.pos] = null; } ////// Append new sort key to the current run of sort keys. /// private void AppendSortKey(XmlSortKey key) { // Ensure that sort will be stable by setting index of key key.Priority = this.pos; if (this.keys[this.pos] == null) this.keys[this.pos] = key; else this.keys[this.pos].AddSortKey(key); } ////// Get array of sort keys that was constructed by this internal class. /// public Array Keys { get { return this.keys; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Globalization; using System.ComponentModel; namespace System.Xml.Xsl.Runtime { ////// Accumulates a list of sort keys and stores them in an array. /// [EditorBrowsable(EditorBrowsableState.Never)] public struct XmlSortKeyAccumulator { private XmlSortKey[] keys; private int pos; #if DEBUG private const int DefaultSortKeyCount = 4; #else private const int DefaultSortKeyCount = 64; #endif ////// Initialize the XmlSortKeyAccumulator. /// public void Create() { if (this.keys == null) this.keys = new XmlSortKey[DefaultSortKeyCount]; this.pos = 0; this.keys[0] = null; } ////// Create a new sort key and append it to the current run of sort keys. /// public void AddStringSortKey(XmlCollation collation, string value) { AppendSortKey(collation.CreateSortKey(value)); } public void AddDecimalSortKey(XmlCollation collation, decimal value) { AppendSortKey(new XmlDecimalSortKey(value, collation)); } public void AddIntegerSortKey(XmlCollation collation, long value) { AppendSortKey(new XmlIntegerSortKey(value, collation)); } public void AddIntSortKey(XmlCollation collation, int value) { AppendSortKey(new XmlIntSortKey(value, collation)); } public void AddDoubleSortKey(XmlCollation collation, double value) { AppendSortKey(new XmlDoubleSortKey(value, collation)); } public void AddDateTimeSortKey(XmlCollation collation, DateTime value) { AppendSortKey(new XmlDateTimeSortKey(value, collation)); } public void AddEmptySortKey(XmlCollation collation) { AppendSortKey(new XmlEmptySortKey(collation)); } ////// Finish creating the current run of sort keys and begin a new run. /// public void FinishSortKeys() { this.pos++; if (this.pos >= this.keys.Length) { XmlSortKey[] keysNew = new XmlSortKey[this.pos * 2]; Array.Copy(this.keys, 0, keysNew, 0, this.keys.Length); this.keys = keysNew; } this.keys[this.pos] = null; } ////// Append new sort key to the current run of sort keys. /// private void AppendSortKey(XmlSortKey key) { // Ensure that sort will be stable by setting index of key key.Priority = this.pos; if (this.keys[this.pos] == null) this.keys[this.pos] = key; else this.keys[this.pos].AddSortKey(key); } ////// Get array of sort keys that was constructed by this internal class. /// public Array Keys { get { return this.keys; } } } } // 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
- ToolStripLabel.cs
- documentsequencetextcontainer.cs
- RoleManagerEventArgs.cs
- InvokeProviderWrapper.cs
- CodeNamespace.cs
- CollaborationHelperFunctions.cs
- ApplicationInfo.cs
- SmtpFailedRecipientsException.cs
- FloatUtil.cs
- OdbcCommand.cs
- ClientBuildManager.cs
- ResourcePermissionBaseEntry.cs
- InvalidBodyAccessException.cs
- ServiceHttpHandlerFactory.cs
- Solver.cs
- Interop.cs
- DoubleLinkListEnumerator.cs
- OutArgumentConverter.cs
- XmlAnyAttributeAttribute.cs
- FileNameEditor.cs
- TextTreeNode.cs
- UnsafeNativeMethods.cs
- ExpressionDumper.cs
- TableLayoutPanelCellPosition.cs
- AuthenticationConfig.cs
- RenderingEventArgs.cs
- ExpressionTable.cs
- SqlGatherConsumedAliases.cs
- CommonRemoteMemoryBlock.cs
- NamedObject.cs
- WorkflowServiceHost.cs
- SimpleBitVector32.cs
- StatusBar.cs
- MetadataExchangeBindings.cs
- ProcessHostFactoryHelper.cs
- SQLDoubleStorage.cs
- UnsupportedPolicyOptionsException.cs
- ResourceWriter.cs
- PrintPreviewControl.cs
- XmlDesigner.cs
- QilReference.cs
- TypeExtension.cs
- ClientFormsAuthenticationCredentials.cs
- DateTimeHelper.cs
- MappingModelBuildProvider.cs
- DescendantOverDescendantQuery.cs
- ContentElementAutomationPeer.cs
- XslTransform.cs
- ModulesEntry.cs
- BamlLocalizer.cs
- ParallelTimeline.cs
- EnglishPluralizationService.cs
- ReadOnlyCollection.cs
- ToolZone.cs
- SafeRightsManagementHandle.cs
- ModelChangedEventArgsImpl.cs
- WindowsListViewItemStartMenu.cs
- EnumValidator.cs
- Vector3D.cs
- XamlFxTrace.cs
- Knowncolors.cs
- SynchronizationLockException.cs
- TypeUsageBuilder.cs
- CodeIdentifiers.cs
- HostProtectionException.cs
- PageThemeCodeDomTreeGenerator.cs
- WebBrowserNavigatingEventHandler.cs
- UriTemplate.cs
- Rect3D.cs
- MdImport.cs
- NamedPipeDuplicateContext.cs
- SchemaTypeEmitter.cs
- OleDbDataReader.cs
- FormattedTextSymbols.cs
- GeometryModel3D.cs
- ObjectQueryProvider.cs
- ProviderCommandInfoUtils.cs
- ApplicationSettingsBase.cs
- SystemTcpConnection.cs
- XmlElement.cs
- FrameworkElement.cs
- StyleBamlRecordReader.cs
- __Error.cs
- ProxyWebPart.cs
- ModelVisual3D.cs
- WindowsPen.cs
- XmlSchemaIdentityConstraint.cs
- Attributes.cs
- RangeContentEnumerator.cs
- X509Certificate2.cs
- BaseCAMarshaler.cs
- RequestFactory.cs
- HttpConfigurationSystem.cs
- SecurityContext.cs
- RTLAwareMessageBox.cs
- Attribute.cs
- CategoryAttribute.cs
- EntityDataSourceContextDisposingEventArgs.cs
- ListViewGroupItemCollection.cs
- GenericRootAutomationPeer.cs