Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / MS / Internal / IO / Packaging / DeflateEmulationStream.cs / 1 / DeflateEmulationStream.cs
//------------------------------------------------------------------------------ // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // Implementation of a helper class that provides a fully functional Stream on a restricted functionality // Compression stream (System.IO.Compression.DeflateStream). // // History: // 10/05/2005: BruceMac: Split out from CompressEmulationStream //----------------------------------------------------------------------------- using System; using System.IO; using System.IO.Compression; // for DeflateStream using System.Diagnostics; using System.IO.Packaging; using System.Windows; namespace MS.Internal.IO.Packaging { //----------------------------------------------------- // // Internal Members // //----------------------------------------------------- ////// Emulates a fully functional stream using restricted functionality DeflateStream /// internal class DeflateEmulationTransform : IDeflateTransform { ////// Extract from DeflateStream to temp stream /// ///Caller is responsible for correctly positioning source and sink stream pointers before calling. public void Decompress(Stream source, Stream sink) { // for non-empty stream create deflate stream that can // actually decompress using (DeflateStream deflateStream = new DeflateStream( source, // source of compressed data CompressionMode.Decompress, // compress or decompress true)) // leave base stream open when the deflate stream is closed { int bytesRead = 0; do { bytesRead = deflateStream.Read(Buffer, 0, Buffer.Length); if (bytesRead > 0) sink.Write(Buffer, 0, bytesRead); } while (bytesRead > 0); } } ////// Compress from the temp stream into the base stream /// ///Caller is responsible for correctly positioning source and sink stream pointers before calling. public void Compress(Stream source, Stream sink) { // create deflate stream that can actually compress or decompress using (DeflateStream deflateStream = new DeflateStream( sink, // destination for compressed data CompressionMode.Compress, // compress or decompress true)) // leave base stream open when the deflate stream is closed { // persist to deflated stream from working stream int bytesRead = 0; do { bytesRead = source.Read(Buffer, 0, Buffer.Length); if (bytesRead > 0) deflateStream.Write(Buffer, 0, bytesRead); } while (bytesRead > 0); } // truncate if necessary and possible if (sink.CanSeek) sink.SetLength(sink.Position); } //------------------------------------------------------ // // Private Properties // //----------------------------------------------------- private byte[] Buffer { get { if (_buffer == null) _buffer = new byte[0x1000]; // 4k return _buffer; } } //------------------------------------------------------ // // Private Members // //------------------------------------------------------ private byte[] _buffer; // alloc and re-use to reduce memory fragmentation // this is safe because we are not thread-safe } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // Implementation of a helper class that provides a fully functional Stream on a restricted functionality // Compression stream (System.IO.Compression.DeflateStream). // // History: // 10/05/2005: BruceMac: Split out from CompressEmulationStream //----------------------------------------------------------------------------- using System; using System.IO; using System.IO.Compression; // for DeflateStream using System.Diagnostics; using System.IO.Packaging; using System.Windows; namespace MS.Internal.IO.Packaging { //----------------------------------------------------- // // Internal Members // //----------------------------------------------------- ////// Emulates a fully functional stream using restricted functionality DeflateStream /// internal class DeflateEmulationTransform : IDeflateTransform { ////// Extract from DeflateStream to temp stream /// ///Caller is responsible for correctly positioning source and sink stream pointers before calling. public void Decompress(Stream source, Stream sink) { // for non-empty stream create deflate stream that can // actually decompress using (DeflateStream deflateStream = new DeflateStream( source, // source of compressed data CompressionMode.Decompress, // compress or decompress true)) // leave base stream open when the deflate stream is closed { int bytesRead = 0; do { bytesRead = deflateStream.Read(Buffer, 0, Buffer.Length); if (bytesRead > 0) sink.Write(Buffer, 0, bytesRead); } while (bytesRead > 0); } } ////// Compress from the temp stream into the base stream /// ///Caller is responsible for correctly positioning source and sink stream pointers before calling. public void Compress(Stream source, Stream sink) { // create deflate stream that can actually compress or decompress using (DeflateStream deflateStream = new DeflateStream( sink, // destination for compressed data CompressionMode.Compress, // compress or decompress true)) // leave base stream open when the deflate stream is closed { // persist to deflated stream from working stream int bytesRead = 0; do { bytesRead = source.Read(Buffer, 0, Buffer.Length); if (bytesRead > 0) deflateStream.Write(Buffer, 0, bytesRead); } while (bytesRead > 0); } // truncate if necessary and possible if (sink.CanSeek) sink.SetLength(sink.Position); } //------------------------------------------------------ // // Private Properties // //----------------------------------------------------- private byte[] Buffer { get { if (_buffer == null) _buffer = new byte[0x1000]; // 4k return _buffer; } } //------------------------------------------------------ // // Private Members // //------------------------------------------------------ private byte[] _buffer; // alloc and re-use to reduce memory fragmentation // this is safe because we are not thread-safe } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ManagementClass.cs
- ComponentResourceKey.cs
- TransformerTypeCollection.cs
- FileLoadException.cs
- ServiceHostingEnvironmentSection.cs
- WindowsAuthenticationModule.cs
- SpoolingTask.cs
- TreeNodeClickEventArgs.cs
- PointHitTestParameters.cs
- VirtualDirectoryMappingCollection.cs
- UnicastIPAddressInformationCollection.cs
- SimpleHandlerFactory.cs
- COM2PropertyPageUITypeConverter.cs
- GenericAuthenticationEventArgs.cs
- ReachPageContentCollectionSerializerAsync.cs
- SortFieldComparer.cs
- QilIterator.cs
- DCSafeHandle.cs
- ColorContextHelper.cs
- DbSource.cs
- PositiveTimeSpanValidator.cs
- TextRenderer.cs
- SqlUserDefinedTypeAttribute.cs
- SQLGuid.cs
- HelpEvent.cs
- DataGrid.cs
- Comparer.cs
- EventLogInternal.cs
- DesignerOptionService.cs
- BindingsCollection.cs
- PointF.cs
- ControlPropertyNameConverter.cs
- Pointer.cs
- columnmapfactory.cs
- SecurityUtils.cs
- BooleanConverter.cs
- ObservableCollection.cs
- SimplePropertyEntry.cs
- Block.cs
- DataKey.cs
- ValidatingPropertiesEventArgs.cs
- ToolStripContainerDesigner.cs
- ControlType.cs
- DPAPIProtectedConfigurationProvider.cs
- URL.cs
- PrimarySelectionAdorner.cs
- NCryptNative.cs
- ParseChildrenAsPropertiesAttribute.cs
- DocumentSequence.cs
- InvalidComObjectException.cs
- ChildDocumentBlock.cs
- TriggerBase.cs
- BevelBitmapEffect.cs
- Mouse.cs
- CodeDefaultValueExpression.cs
- VarRemapper.cs
- DbConnectionPoolOptions.cs
- SafeRightsManagementSessionHandle.cs
- XmlParserContext.cs
- SchemaManager.cs
- ErrorRuntimeConfig.cs
- DataGridColumnsPage.cs
- Size3D.cs
- InvokePattern.cs
- HandlerFactoryWrapper.cs
- EventMappingSettingsCollection.cs
- ToolStripLabel.cs
- HandlerBase.cs
- WebRequestModuleElementCollection.cs
- ToolStripSeparator.cs
- AutoCompleteStringCollection.cs
- ModulesEntry.cs
- CodeCommentStatement.cs
- FormsAuthenticationEventArgs.cs
- ThrowHelper.cs
- WebPartDescription.cs
- CompModSwitches.cs
- CacheAxisQuery.cs
- SecUtil.cs
- FindCriteriaApril2005.cs
- ObjectRef.cs
- CalendarDay.cs
- PasswordRecovery.cs
- IHttpResponseInternal.cs
- BasicKeyConstraint.cs
- SecurityManager.cs
- XmlElement.cs
- ExpressionHelper.cs
- SchemaImporterExtensionElementCollection.cs
- InputManager.cs
- AnnotationDocumentPaginator.cs
- ByteArrayHelperWithString.cs
- ScrollBarAutomationPeer.cs
- CollectionType.cs
- RemotingSurrogateSelector.cs
- ArrayElementGridEntry.cs
- CrossAppDomainChannel.cs
- AudioFileOut.cs
- WebPartDescription.cs
- Environment.cs