Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / 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: [....]: 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
- PropertyEmitterBase.cs
- XD.cs
- __ConsoleStream.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- WpfWebRequestHelper.cs
- BmpBitmapEncoder.cs
- TimeSpanValidatorAttribute.cs
- WhitespaceRuleReader.cs
- ActivityTypeDesigner.xaml.cs
- Point3D.cs
- Interlocked.cs
- ProxyManager.cs
- ScrollChangedEventArgs.cs
- ElementNotAvailableException.cs
- AssemblyHash.cs
- _Events.cs
- AutoGeneratedField.cs
- DynamicILGenerator.cs
- ZipIOExtraFieldPaddingElement.cs
- OrderingInfo.cs
- SafeCryptoHandles.cs
- _NativeSSPI.cs
- DataPagerFieldCollection.cs
- XPathNodeInfoAtom.cs
- SystemIPv4InterfaceProperties.cs
- GeneratedContractType.cs
- BitStream.cs
- SeekStoryboard.cs
- AssociationTypeEmitter.cs
- ListViewCommandEventArgs.cs
- ServicePointManager.cs
- LocationSectionRecord.cs
- ThreadInterruptedException.cs
- QilReplaceVisitor.cs
- HttpRuntimeSection.cs
- ManagedCodeMarkers.cs
- TraceHandlerErrorFormatter.cs
- WebPartDisplayModeCollection.cs
- HwndAppCommandInputProvider.cs
- DesignerEventService.cs
- SizeAnimationClockResource.cs
- UndirectedGraph.cs
- ClientApiGenerator.cs
- Control.cs
- PropertyFilterAttribute.cs
- LogRestartAreaEnumerator.cs
- DescendantQuery.cs
- Listbox.cs
- XmlNodeReader.cs
- PrivilegedConfigurationManager.cs
- ChangeProcessor.cs
- Site.cs
- DesignColumn.cs
- AspCompat.cs
- Flowchart.cs
- GridSplitter.cs
- FilterUserControlBase.cs
- OdbcCommand.cs
- XPathNodeList.cs
- FullTrustAssembliesSection.cs
- XmlConvert.cs
- EdmError.cs
- DataGridViewColumn.cs
- PropertyValueUIItem.cs
- TargetException.cs
- ContentFilePart.cs
- StringUtil.cs
- CaseInsensitiveHashCodeProvider.cs
- DataServicePagingProviderWrapper.cs
- HwndProxyElementProvider.cs
- RowBinding.cs
- HttpListenerPrefixCollection.cs
- TextFindEngine.cs
- AppDomainManager.cs
- ProvidersHelper.cs
- _HelperAsyncResults.cs
- ControlParameter.cs
- ServiceNameElement.cs
- MarshalDirectiveException.cs
- SystemWebSectionGroup.cs
- RequestTimeoutManager.cs
- X509Certificate2.cs
- future.cs
- GridLength.cs
- WorkflowQueueInfo.cs
- SafeEventHandle.cs
- LineServicesCallbacks.cs
- SecureConversationDriver.cs
- WindowCollection.cs
- RealizationContext.cs
- SymDocumentType.cs
- XmlSchemaAttribute.cs
- XmlLangPropertyAttribute.cs
- HttpBrowserCapabilitiesWrapper.cs
- FontDialog.cs
- OLEDB_Util.cs
- Cursor.cs
- ISAPIWorkerRequest.cs
- CompositionTarget.cs
- BrushProxy.cs