Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / BufferAllocator.cs / 1 / BufferAllocator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Buffer Allocators with recycling * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web { using System.Collections; using System.IO; using System.Globalization; using System.Web.Util; ////////////////////////////////////////////////////////////////////////////// // Generic buffer recycling /* * Base class for allocator doing buffer recycling */ internal abstract class BufferAllocator { private int _maxFree; private int _numFree; private Stack _buffers; private static int s_ProcsFudgeFactor; static BufferAllocator() { s_ProcsFudgeFactor = SystemInfo.GetNumProcessCPUs(); if (s_ProcsFudgeFactor < 1) s_ProcsFudgeFactor = 1; if (s_ProcsFudgeFactor > 4) s_ProcsFudgeFactor = 4; } internal BufferAllocator(int maxFree) { _buffers = new Stack(); _numFree = 0; _maxFree = maxFree * s_ProcsFudgeFactor; } internal /*public*/ Object GetBuffer() { Object buffer = null; if (_numFree > 0) { lock(this) { if (_numFree > 0) { buffer = _buffers.Pop(); _numFree--; } } } if (buffer == null) buffer = AllocBuffer(); return buffer; } internal void ReuseBuffer(Object buffer) { if (_numFree < _maxFree) { lock(this) { if (_numFree < _maxFree) { _buffers.Push(buffer); _numFree++; } } } } /* * To be implemented by a derived class */ abstract protected Object AllocBuffer(); } /* * Concrete allocator class for ubyte[] buffer recycling */ internal class UbyteBufferAllocator : BufferAllocator { private int _bufferSize; internal UbyteBufferAllocator(int bufferSize, int maxFree) : base(maxFree) { _bufferSize = bufferSize; } protected override Object AllocBuffer() { return new byte[_bufferSize]; } } /* * Concrete allocator class for char[] buffer recycling */ internal class CharBufferAllocator : BufferAllocator { private int _bufferSize; internal CharBufferAllocator(int bufferSize, int maxFree) : base(maxFree) { _bufferSize = bufferSize; } protected override Object AllocBuffer() { return new char[_bufferSize]; } } /* * Concrete allocator class for int[] buffer recycling */ internal class IntegerArrayAllocator : BufferAllocator { private int _arraySize; internal IntegerArrayAllocator(int arraySize, int maxFree) : base(maxFree) { _arraySize = arraySize; } protected override Object AllocBuffer() { return new int[_arraySize]; } } /* * Concrete allocator class for IntPtr[] buffer recycling */ internal class IntPtrArrayAllocator : BufferAllocator { private int _arraySize; internal IntPtrArrayAllocator(int arraySize, int maxFree) : base(maxFree) { _arraySize = arraySize; } protected override Object AllocBuffer() { return new IntPtr[_arraySize]; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Buffer Allocators with recycling * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web { using System.Collections; using System.IO; using System.Globalization; using System.Web.Util; ////////////////////////////////////////////////////////////////////////////// // Generic buffer recycling /* * Base class for allocator doing buffer recycling */ internal abstract class BufferAllocator { private int _maxFree; private int _numFree; private Stack _buffers; private static int s_ProcsFudgeFactor; static BufferAllocator() { s_ProcsFudgeFactor = SystemInfo.GetNumProcessCPUs(); if (s_ProcsFudgeFactor < 1) s_ProcsFudgeFactor = 1; if (s_ProcsFudgeFactor > 4) s_ProcsFudgeFactor = 4; } internal BufferAllocator(int maxFree) { _buffers = new Stack(); _numFree = 0; _maxFree = maxFree * s_ProcsFudgeFactor; } internal /*public*/ Object GetBuffer() { Object buffer = null; if (_numFree > 0) { lock(this) { if (_numFree > 0) { buffer = _buffers.Pop(); _numFree--; } } } if (buffer == null) buffer = AllocBuffer(); return buffer; } internal void ReuseBuffer(Object buffer) { if (_numFree < _maxFree) { lock(this) { if (_numFree < _maxFree) { _buffers.Push(buffer); _numFree++; } } } } /* * To be implemented by a derived class */ abstract protected Object AllocBuffer(); } /* * Concrete allocator class for ubyte[] buffer recycling */ internal class UbyteBufferAllocator : BufferAllocator { private int _bufferSize; internal UbyteBufferAllocator(int bufferSize, int maxFree) : base(maxFree) { _bufferSize = bufferSize; } protected override Object AllocBuffer() { return new byte[_bufferSize]; } } /* * Concrete allocator class for char[] buffer recycling */ internal class CharBufferAllocator : BufferAllocator { private int _bufferSize; internal CharBufferAllocator(int bufferSize, int maxFree) : base(maxFree) { _bufferSize = bufferSize; } protected override Object AllocBuffer() { return new char[_bufferSize]; } } /* * Concrete allocator class for int[] buffer recycling */ internal class IntegerArrayAllocator : BufferAllocator { private int _arraySize; internal IntegerArrayAllocator(int arraySize, int maxFree) : base(maxFree) { _arraySize = arraySize; } protected override Object AllocBuffer() { return new int[_arraySize]; } } /* * Concrete allocator class for IntPtr[] buffer recycling */ internal class IntPtrArrayAllocator : BufferAllocator { private int _arraySize; internal IntPtrArrayAllocator(int arraySize, int maxFree) : base(maxFree) { _arraySize = arraySize; } protected override Object AllocBuffer() { return new IntPtr[_arraySize]; } } } // 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
- GeometryGroup.cs
- ManagementOperationWatcher.cs
- TTSEngineTypes.cs
- WebServiceEnumData.cs
- MethodSet.cs
- PersonalizationEntry.cs
- SectionUpdates.cs
- ExpandableObjectConverter.cs
- ToolStripOverflowButton.cs
- HealthMonitoringSection.cs
- RegexParser.cs
- FreezableDefaultValueFactory.cs
- CroppedBitmap.cs
- ResourceWriter.cs
- HashAlgorithm.cs
- CompatibleComparer.cs
- Listbox.cs
- Scene3D.cs
- TextElementEnumerator.cs
- SimpleWorkerRequest.cs
- FieldInfo.cs
- TextPointerBase.cs
- HotSpotCollection.cs
- AppDomainFactory.cs
- AlgoModule.cs
- NetPeerTcpBinding.cs
- MetabaseReader.cs
- MethodResolver.cs
- InstanceLockException.cs
- ActivationServices.cs
- EdmValidator.cs
- QuaternionConverter.cs
- PrtTicket_Public_Simple.cs
- RecipientIdentity.cs
- RadioButtonStandardAdapter.cs
- SafeReadContext.cs
- BuildResultCache.cs
- CallSiteHelpers.cs
- WinInet.cs
- WebPartVerbCollection.cs
- CodePageEncoding.cs
- PageThemeBuildProvider.cs
- Int32Collection.cs
- SystemTcpStatistics.cs
- XmlObjectSerializerContext.cs
- TakeOrSkipWhileQueryOperator.cs
- EntityDataSourceWizardForm.cs
- BinaryConverter.cs
- SymbolDocumentInfo.cs
- AnnotationHighlightLayer.cs
- QuotedPrintableStream.cs
- SrgsDocument.cs
- InternalControlCollection.cs
- HtmlInputImage.cs
- ConfigurationPropertyAttribute.cs
- OperationResponse.cs
- XPathDescendantIterator.cs
- EntityDataSourceChangedEventArgs.cs
- ToolboxDataAttribute.cs
- SqlDuplicator.cs
- TagMapInfo.cs
- CompositeActivityDesigner.cs
- ResourceIDHelper.cs
- ExtensionSurface.cs
- StateManagedCollection.cs
- XmlSchemaGroupRef.cs
- StringWriter.cs
- StylusDownEventArgs.cs
- DataGridViewCellFormattingEventArgs.cs
- ItemContainerPattern.cs
- TcpAppDomainProtocolHandler.cs
- mda.cs
- RadioButtonFlatAdapter.cs
- Object.cs
- CleanUpVirtualizedItemEventArgs.cs
- ButtonField.cs
- FreezableCollection.cs
- MapPathBasedVirtualPathProvider.cs
- PermissionListSet.cs
- ConditionalAttribute.cs
- TypeInfo.cs
- codemethodreferenceexpression.cs
- CheckoutException.cs
- Msec.cs
- AvTraceDetails.cs
- TransformFinalBlockRequest.cs
- CssTextWriter.cs
- Point.cs
- MachineSettingsSection.cs
- HideDisabledControlAdapter.cs
- LassoHelper.cs
- HwndHostAutomationPeer.cs
- MethodImplAttribute.cs
- XMLUtil.cs
- SecurityManager.cs
- ZipFileInfo.cs
- DesignerHost.cs
- Preprocessor.cs
- EnumConverter.cs
- FormViewRow.cs