Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Core / IncrementalReadDecoders.cs / 1305376 / IncrementalReadDecoders.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Diagnostics; namespace System.Xml { // // IncrementalReadDecoder abstract class // internal abstract class IncrementalReadDecoder { internal abstract int DecodedCount { get; } internal abstract bool IsFull { get; } internal abstract void SetNextOutputBuffer( Array array, int offset, int len ); internal abstract int Decode( char[] chars, int startPos, int len ); internal abstract int Decode( string str, int startPos, int len ); internal abstract void Reset(); } #if !SILVERLIGHT // Needed only for XmlTextReader // // Dummy IncrementalReadDecoder // internal class IncrementalReadDummyDecoder : IncrementalReadDecoder { internal override int DecodedCount { get { return -1; } } internal override bool IsFull { get { return false; } } internal override void SetNextOutputBuffer( Array array, int offset, int len ) {} internal override int Decode( char[] chars, int startPos, int len ) { return len; } internal override int Decode( string str, int startPos, int len ) { return len; } internal override void Reset() {} } // // IncrementalReadDecoder for ReadChars // internal class IncrementalReadCharsDecoder : IncrementalReadDecoder { char[] buffer; int startIndex; int curIndex; int endIndex; internal IncrementalReadCharsDecoder() { } internal override int DecodedCount { get { return curIndex - startIndex; } } internal override bool IsFull { get { return curIndex == endIndex; } } internal override int Decode( char[] chars, int startPos, int len ) { Debug.Assert( chars != null ); Debug.Assert( len >= 0 ); Debug.Assert( startPos >= 0 ); Debug.Assert( chars.Length - startPos >= len ); Debug.Assert( len > 0 ); int copyCount = endIndex - curIndex; if ( copyCount > len ) { copyCount = len; } Buffer.BlockCopy( chars, startPos * 2, buffer, curIndex * 2, copyCount * 2 ); curIndex += copyCount; return copyCount; } internal override int Decode( string str, int startPos, int len ) { Debug.Assert( str != null ); Debug.Assert( len >= 0 ); Debug.Assert( startPos >= 0 ); Debug.Assert( str.Length - startPos >= len ); Debug.Assert( len > 0 ); int copyCount = endIndex - curIndex; if ( copyCount > len ) { copyCount = len; } str.CopyTo( startPos, buffer, curIndex, copyCount ); curIndex += copyCount; return copyCount; } internal override void Reset() { } internal override void SetNextOutputBuffer( Array buffer, int index, int count ) { Debug.Assert( buffer != null ); Debug.Assert( count >= 0 ); Debug.Assert( index >= 0 ); Debug.Assert( buffer.Length - index >= count ); Debug.Assert( ( buffer as char[] ) != null ); this.buffer = (char[])buffer; this.startIndex = index; this.curIndex = index; this.endIndex = index + count; } } #endif } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Diagnostics; namespace System.Xml { // // IncrementalReadDecoder abstract class // internal abstract class IncrementalReadDecoder { internal abstract int DecodedCount { get; } internal abstract bool IsFull { get; } internal abstract void SetNextOutputBuffer( Array array, int offset, int len ); internal abstract int Decode( char[] chars, int startPos, int len ); internal abstract int Decode( string str, int startPos, int len ); internal abstract void Reset(); } #if !SILVERLIGHT // Needed only for XmlTextReader // // Dummy IncrementalReadDecoder // internal class IncrementalReadDummyDecoder : IncrementalReadDecoder { internal override int DecodedCount { get { return -1; } } internal override bool IsFull { get { return false; } } internal override void SetNextOutputBuffer( Array array, int offset, int len ) {} internal override int Decode( char[] chars, int startPos, int len ) { return len; } internal override int Decode( string str, int startPos, int len ) { return len; } internal override void Reset() {} } // // IncrementalReadDecoder for ReadChars // internal class IncrementalReadCharsDecoder : IncrementalReadDecoder { char[] buffer; int startIndex; int curIndex; int endIndex; internal IncrementalReadCharsDecoder() { } internal override int DecodedCount { get { return curIndex - startIndex; } } internal override bool IsFull { get { return curIndex == endIndex; } } internal override int Decode( char[] chars, int startPos, int len ) { Debug.Assert( chars != null ); Debug.Assert( len >= 0 ); Debug.Assert( startPos >= 0 ); Debug.Assert( chars.Length - startPos >= len ); Debug.Assert( len > 0 ); int copyCount = endIndex - curIndex; if ( copyCount > len ) { copyCount = len; } Buffer.BlockCopy( chars, startPos * 2, buffer, curIndex * 2, copyCount * 2 ); curIndex += copyCount; return copyCount; } internal override int Decode( string str, int startPos, int len ) { Debug.Assert( str != null ); Debug.Assert( len >= 0 ); Debug.Assert( startPos >= 0 ); Debug.Assert( str.Length - startPos >= len ); Debug.Assert( len > 0 ); int copyCount = endIndex - curIndex; if ( copyCount > len ) { copyCount = len; } str.CopyTo( startPos, buffer, curIndex, copyCount ); curIndex += copyCount; return copyCount; } internal override void Reset() { } internal override void SetNextOutputBuffer( Array buffer, int index, int count ) { Debug.Assert( buffer != null ); Debug.Assert( count >= 0 ); Debug.Assert( index >= 0 ); Debug.Assert( buffer.Length - index >= count ); Debug.Assert( ( buffer as char[] ) != null ); this.buffer = (char[])buffer; this.startIndex = index; this.curIndex = index; this.endIndex = index + count; } } #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
- Run.cs
- UidManager.cs
- NativeRecognizer.cs
- RegistryPermission.cs
- TagPrefixInfo.cs
- DataConnectionHelper.cs
- Application.cs
- FormsAuthenticationCredentials.cs
- PreviewPageInfo.cs
- HttpListenerPrefixCollection.cs
- DiscoveryRequestHandler.cs
- CaseStatementSlot.cs
- StatusBar.cs
- DropDownList.cs
- CallbackValidator.cs
- CommonDialog.cs
- SecurityRuntime.cs
- BamlBinaryWriter.cs
- MetaModel.cs
- Transactions.cs
- ReachSerializer.cs
- RoleManagerModule.cs
- FacetValues.cs
- EasingQuaternionKeyFrame.cs
- MessageLogTraceRecord.cs
- TableLayoutSettings.cs
- WindowsIPAddress.cs
- RawStylusInputReport.cs
- PropertyChangeTracker.cs
- FilePrompt.cs
- DetailsViewInsertEventArgs.cs
- PseudoWebRequest.cs
- TraceShell.cs
- TriggerAction.cs
- TextModifierScope.cs
- StandardTransformFactory.cs
- OdbcParameter.cs
- HandlerBase.cs
- HierarchicalDataBoundControl.cs
- SystemPens.cs
- StorageBasedPackageProperties.cs
- SoapAttributes.cs
- AmbientValueAttribute.cs
- CodeArrayCreateExpression.cs
- Parser.cs
- PeerTransportCredentialType.cs
- EventLogTraceListener.cs
- MemberMaps.cs
- HtmlDocument.cs
- MsmqMessageProperty.cs
- CategoryNameCollection.cs
- InvalidOleVariantTypeException.cs
- TimeManager.cs
- SamlSecurityToken.cs
- DefaultPropertyAttribute.cs
- ClientCultureInfo.cs
- MDIWindowDialog.cs
- ImageAutomationPeer.cs
- HttpServerVarsCollection.cs
- ProcessRequestArgs.cs
- UnauthorizedAccessException.cs
- CodeExpressionCollection.cs
- CodeDelegateCreateExpression.cs
- LifetimeManager.cs
- WebDescriptionAttribute.cs
- basenumberconverter.cs
- HttpCacheParams.cs
- ProtocolViolationException.cs
- OperationAbortedException.cs
- DialogWindow.cs
- OutputCacheProfileCollection.cs
- ComponentResourceManager.cs
- JapaneseLunisolarCalendar.cs
- StackBuilderSink.cs
- CancelEventArgs.cs
- GPPOINT.cs
- IriParsingElement.cs
- EndpointNotFoundException.cs
- ReachDocumentReferenceCollectionSerializer.cs
- RectangleHotSpot.cs
- FileRecordSequenceHelper.cs
- OAVariantLib.cs
- InputProcessorProfiles.cs
- RemoteWebConfigurationHost.cs
- Clause.cs
- SchemaImporterExtension.cs
- IImplicitResourceProvider.cs
- AssemblyCollection.cs
- XmlQueryTypeFactory.cs
- PseudoWebRequest.cs
- HelpFileFileNameEditor.cs
- DataGridViewAdvancedBorderStyle.cs
- ThicknessAnimation.cs
- CompileXomlTask.cs
- RadialGradientBrush.cs
- DataGridViewRowsAddedEventArgs.cs
- Options.cs
- JapaneseCalendar.cs
- EventInfo.cs
- DataSet.cs