Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / ManagedLibraries / Remoting / Channels / CORE / ByteBufferPool.cs / 1305376 / ByteBufferPool.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //========================================================================== // File: ByteBufferPool.cs // // Summary: Stream used for reading from a socket by remoting channels. // //========================================================================= using System; using System.Threading; namespace System.IO { internal interface IByteBufferPool { byte[] GetBuffer(); void ReturnBuffer(byte[] buffer); } // This isn't actually a buffer pool. It always creates a new byte buffer. internal class ByteBufferAllocator : IByteBufferPool { private int _bufferSize; public ByteBufferAllocator(int bufferSize) { _bufferSize = bufferSize; } public byte[] GetBuffer() { return new byte[_bufferSize]; } public void ReturnBuffer(byte[] buffer) { } } // ByteBufferAllocator internal class ByteBufferPool : IByteBufferPool { private byte[][] _bufferPool = null; private int _current; // -1 for none private int _last; private int _max; // maximum number of buffers to pool private int _bufferSize; private Object _controlCookie = "cookie object"; public ByteBufferPool(int maxBuffers, int bufferSize) { _max = maxBuffers; _bufferPool = new byte[_max][]; _bufferSize = bufferSize; _current = -1; _last = -1; } // ByteBufferPool public byte[] GetBuffer() { Object cookie = null; try { // If a ThreadAbortException gets thrown after the exchange, // but before the result is assigned to cookie, then the // control cookie is lost forever. However, the buffer pool // will still function normally and return everybody a new // buffer each time (that isn't very likely to happen, // so we don't really care). cookie = Interlocked.Exchange(ref _controlCookie, null); if (cookie != null) { // we have the control cookie, so take a buffer if (_current == -1) { _controlCookie = cookie; // no pooled buffers available return new byte[_bufferSize]; } else { // grab next available buffer byte[] buffer = _bufferPool[_current]; _bufferPool[_current] = null; // update "current" index if (_current == _last) { // this is the last free buffer _current = -1; } else { _current = (_current + 1) % _max; } _controlCookie = cookie; return buffer; } } else { // we don't have the control cookie, so just create a new buffer since // there will probably be a lot of contention anyway. return new byte[_bufferSize]; } } catch (ThreadAbortException) { if (cookie != null) { // This should be rare, so just reset // everything to the initial state. _current = -1; _last = -1; // restore cookie _controlCookie = cookie; } throw; } } // GetBuffer public void ReturnBuffer(byte[] buffer) { if (buffer == null) throw new ArgumentNullException("buffer"); // The purpose of the buffer pool is to try to reduce the // amount of garbage generated, so it doesn't matter if // the buffer gets tossed out. Since we don't want to // take the perf hit of taking a lock, we only return // the buffer if we can grab the control cookie. Object cookie = null; try { // If a ThreadAbortException gets thrown after the exchange, // but before the result is assigned to cookie, then the // control cookie is lost forever. However, the buffer pool // will still function normally and return everybody a new // buffer each time (that isn't very likely to happen, // so we don't really care). cookie = Interlocked.Exchange(ref _controlCookie, null); if (cookie != null) { if (_current == -1) { _bufferPool[0] = buffer; _current = 0; _last = 0; } else { int newLast = (_last + 1) % _max; if (newLast != _current) { // the pool isn't full so store this buffer _last = newLast; _bufferPool[_last] = buffer; } } _controlCookie = cookie; } } catch (ThreadAbortException) { if (cookie != null) { // This should be rare, so just reset // everything to the initial state. _current = -1; _last = -1; // restore cookie _controlCookie = cookie; } throw; } } // ReturnBuffer } // ByteBufferPool } // namespace System.IO // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //========================================================================== // File: ByteBufferPool.cs // // Summary: Stream used for reading from a socket by remoting channels. // //========================================================================= using System; using System.Threading; namespace System.IO { internal interface IByteBufferPool { byte[] GetBuffer(); void ReturnBuffer(byte[] buffer); } // This isn't actually a buffer pool. It always creates a new byte buffer. internal class ByteBufferAllocator : IByteBufferPool { private int _bufferSize; public ByteBufferAllocator(int bufferSize) { _bufferSize = bufferSize; } public byte[] GetBuffer() { return new byte[_bufferSize]; } public void ReturnBuffer(byte[] buffer) { } } // ByteBufferAllocator internal class ByteBufferPool : IByteBufferPool { private byte[][] _bufferPool = null; private int _current; // -1 for none private int _last; private int _max; // maximum number of buffers to pool private int _bufferSize; private Object _controlCookie = "cookie object"; public ByteBufferPool(int maxBuffers, int bufferSize) { _max = maxBuffers; _bufferPool = new byte[_max][]; _bufferSize = bufferSize; _current = -1; _last = -1; } // ByteBufferPool public byte[] GetBuffer() { Object cookie = null; try { // If a ThreadAbortException gets thrown after the exchange, // but before the result is assigned to cookie, then the // control cookie is lost forever. However, the buffer pool // will still function normally and return everybody a new // buffer each time (that isn't very likely to happen, // so we don't really care). cookie = Interlocked.Exchange(ref _controlCookie, null); if (cookie != null) { // we have the control cookie, so take a buffer if (_current == -1) { _controlCookie = cookie; // no pooled buffers available return new byte[_bufferSize]; } else { // grab next available buffer byte[] buffer = _bufferPool[_current]; _bufferPool[_current] = null; // update "current" index if (_current == _last) { // this is the last free buffer _current = -1; } else { _current = (_current + 1) % _max; } _controlCookie = cookie; return buffer; } } else { // we don't have the control cookie, so just create a new buffer since // there will probably be a lot of contention anyway. return new byte[_bufferSize]; } } catch (ThreadAbortException) { if (cookie != null) { // This should be rare, so just reset // everything to the initial state. _current = -1; _last = -1; // restore cookie _controlCookie = cookie; } throw; } } // GetBuffer public void ReturnBuffer(byte[] buffer) { if (buffer == null) throw new ArgumentNullException("buffer"); // The purpose of the buffer pool is to try to reduce the // amount of garbage generated, so it doesn't matter if // the buffer gets tossed out. Since we don't want to // take the perf hit of taking a lock, we only return // the buffer if we can grab the control cookie. Object cookie = null; try { // If a ThreadAbortException gets thrown after the exchange, // but before the result is assigned to cookie, then the // control cookie is lost forever. However, the buffer pool // will still function normally and return everybody a new // buffer each time (that isn't very likely to happen, // so we don't really care). cookie = Interlocked.Exchange(ref _controlCookie, null); if (cookie != null) { if (_current == -1) { _bufferPool[0] = buffer; _current = 0; _last = 0; } else { int newLast = (_last + 1) % _max; if (newLast != _current) { // the pool isn't full so store this buffer _last = newLast; _bufferPool[_last] = buffer; } } _controlCookie = cookie; } } catch (ThreadAbortException) { if (cookie != null) { // This should be rare, so just reset // everything to the initial state. _current = -1; _last = -1; // restore cookie _controlCookie = cookie; } throw; } } // ReturnBuffer } // ByteBufferPool } // namespace System.IO // 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
- Header.cs
- clipboard.cs
- SettingsPropertyValue.cs
- Token.cs
- TileModeValidation.cs
- RequestCachingSection.cs
- RegexRunner.cs
- InstanceStoreQueryResult.cs
- Soap11ServerProtocol.cs
- HMACMD5.cs
- DirectoryRedirect.cs
- DefaultBinder.cs
- MetadataItemEmitter.cs
- OdbcHandle.cs
- CheckStoreFileValidityRequest.cs
- Sql8ConformanceChecker.cs
- DelegatedStream.cs
- DesignerTransactionCloseEvent.cs
- SiteMapDataSourceView.cs
- XmlBoundElement.cs
- BinaryParser.cs
- util.cs
- sqlinternaltransaction.cs
- StorageEntityTypeMapping.cs
- InvokeMethodActivity.cs
- CompilerScopeManager.cs
- TemplateBindingExpressionConverter.cs
- SmiXetterAccessMap.cs
- EDesignUtil.cs
- NullableFloatSumAggregationOperator.cs
- AffineTransform3D.cs
- ByteStorage.cs
- TypeNameConverter.cs
- TextBounds.cs
- CatalogPartChrome.cs
- ExceptionUtil.cs
- ConfigurationPropertyAttribute.cs
- QilTypeChecker.cs
- WrappedOptions.cs
- AssertUtility.cs
- ProgressBarBrushConverter.cs
- InstanceKeyView.cs
- GlyphRun.cs
- SR.cs
- NeutralResourcesLanguageAttribute.cs
- FacetDescription.cs
- APCustomTypeDescriptor.cs
- VirtualDirectoryMapping.cs
- SHA512.cs
- TypeInitializationException.cs
- XPathNodeIterator.cs
- XmlNamedNodeMap.cs
- ThreadSafeList.cs
- RemoteWebConfigurationHost.cs
- DataGridComboBoxColumn.cs
- RIPEMD160.cs
- GenericEnumerator.cs
- XmlByteStreamWriter.cs
- DataGridCellsPresenter.cs
- NamespaceDecl.cs
- GradientStop.cs
- ReadWriteObjectLock.cs
- Calendar.cs
- EditorAttributeInfo.cs
- SoapAttributeOverrides.cs
- WebHeaderCollection.cs
- TypefaceMetricsCache.cs
- XmlTextReaderImpl.cs
- PropertyIDSet.cs
- XmlHelper.cs
- SymLanguageType.cs
- BitmapEffect.cs
- Stream.cs
- FileSystemWatcher.cs
- ThreadTrace.cs
- ServiceModelActivity.cs
- ControlBindingsCollection.cs
- C14NUtil.cs
- ThreadStartException.cs
- ProviderManager.cs
- IIS7UserPrincipal.cs
- NestPullup.cs
- EventTask.cs
- ConfigurationManagerInternalFactory.cs
- DataListCommandEventArgs.cs
- ResourceSetExpression.cs
- ForceCopyBuildProvider.cs
- Cursor.cs
- AnnotationMap.cs
- BinaryUtilClasses.cs
- InternalMappingException.cs
- HttpRawResponse.cs
- ToolStrip.cs
- __Filters.cs
- DeferredRunTextReference.cs
- IfElseDesigner.xaml.cs
- EntityDescriptor.cs
- EditorZone.cs
- UidManager.cs
- GridToolTip.cs