Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ScrollItemPatternIdentifiers.cs
- SimpleColumnProvider.cs
- InputProcessorProfilesLoader.cs
- ServiceBusyException.cs
- Size.cs
- UriSectionReader.cs
- DesignerHierarchicalDataSourceView.cs
- TextBreakpoint.cs
- X509SecurityToken.cs
- SuppressMergeCheckAttribute.cs
- BitConverter.cs
- ExpressionVisitorHelpers.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- InitializationEventAttribute.cs
- InvokePatternIdentifiers.cs
- XpsSerializationManager.cs
- ProfileProvider.cs
- SqlTypesSchemaImporter.cs
- WasEndpointConfigContainer.cs
- ValidationEventArgs.cs
- SqlTypesSchemaImporter.cs
- PasswordRecoveryDesigner.cs
- ColumnProvider.cs
- FillRuleValidation.cs
- DelegatingConfigHost.cs
- DesignerDataRelationship.cs
- SqlWriter.cs
- XLinq.cs
- DateTimeConverter.cs
- FilteredAttributeCollection.cs
- DragEvent.cs
- TrimSurroundingWhitespaceAttribute.cs
- ListBoxChrome.cs
- PublisherIdentityPermission.cs
- Window.cs
- PropertyReferenceExtension.cs
- LogFlushAsyncResult.cs
- LiteralLink.cs
- TimeSpanMinutesConverter.cs
- WSDualHttpSecurityMode.cs
- DataServiceHost.cs
- PrivateFontCollection.cs
- SimpleBitVector32.cs
- DockPanel.cs
- PageThemeParser.cs
- EventWaitHandleSecurity.cs
- StringSource.cs
- ReliabilityContractAttribute.cs
- AdapterDictionary.cs
- SRDisplayNameAttribute.cs
- RemoteDebugger.cs
- shaperfactoryquerycachekey.cs
- _SslSessionsCache.cs
- EndOfStreamException.cs
- DataBoundControl.cs
- OdbcTransaction.cs
- AnnotationMap.cs
- HtmlInputPassword.cs
- ConnectionPoint.cs
- SoapEnvelopeProcessingElement.cs
- CodeGenHelper.cs
- RequestDescription.cs
- OdbcInfoMessageEvent.cs
- OperatingSystemVersionCheck.cs
- RegexCapture.cs
- _CacheStreams.cs
- ToolStripDropDownItem.cs
- UTF7Encoding.cs
- EntityCommandDefinition.cs
- DashStyles.cs
- Adorner.cs
- SafeEventLogReadHandle.cs
- EdmType.cs
- XamlReader.cs
- ByteStreamBufferedMessageData.cs
- DynamicValidatorEventArgs.cs
- DependencySource.cs
- UshortList2.cs
- PageCache.cs
- ThemeInfoAttribute.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- CookieParameter.cs
- TemplateControlBuildProvider.cs
- QilExpression.cs
- FamilyTypeface.cs
- RegexCaptureCollection.cs
- RawMouseInputReport.cs
- HttpContextBase.cs
- ContainerAction.cs
- Accessible.cs
- SspiSecurityToken.cs
- SoapAttributes.cs
- TextAnchor.cs
- ContentPropertyAttribute.cs
- GraphicsPathIterator.cs
- WebPartUtil.cs
- LinkedResource.cs
- ExpressionsCollectionEditor.cs
- RepeatEnumerable.cs
- XmlSerializableWriter.cs