Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Sys / System / Runtime / InteropServices / HandleCollector.cs / 1 / HandleCollector.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Runtime.InteropServices { using System; using System.Threading; public sealed class HandleCollector { private const int deltaPercent = 10; // this is used for increasing the threshold. private string name; private int initialThreshold; private int maximumThreshold; private int threshold; private int handleCount; private int[] gc_counts = new int [3]; private int gc_gen = 0; public HandleCollector( string name, int initialThreshold ) : this( name, initialThreshold, int.MaxValue) { } public HandleCollector( string name, int initialThreshold, int maximumThreshold ) { if( initialThreshold < 0) { throw new ArgumentOutOfRangeException("initialThreshold", SR.GetString(SR.ArgumentOutOfRange_NeedNonNegNumRequired)); } if( maximumThreshold < 0) { throw new ArgumentOutOfRangeException("maximumThreshold", SR.GetString(SR.ArgumentOutOfRange_NeedNonNegNumRequired)); } if( initialThreshold > maximumThreshold) { throw new ArgumentException(SR.GetString(SR.Argument_InvalidThreshold)); } if ( name != null) { this.name = name; } else { this.name = String.Empty; } this.initialThreshold = initialThreshold; this.maximumThreshold = maximumThreshold ; this.threshold = initialThreshold; this.handleCount = 0; } public int Count { get {return handleCount;} } public int InitialThreshold { get { return initialThreshold;} } public int MaximumThreshold { get { return maximumThreshold;} } public string Name { get {return name;} } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliability", "CA2001:AvoidCallingProblematicMethods")] // Keep call to GC.Collect() public void Add () { int gen_collect = -1; Interlocked.Increment( ref handleCount); if( handleCount < 0) { throw new InvalidOperationException(SR.GetString(SR.InvalidOperation_HCCountOverflow)); } if (handleCount > threshold) { lock (this) { threshold = handleCount + (handleCount/deltaPercent); gen_collect = gc_gen; if (gc_gen < 2) { gc_gen++; } } } if ((gen_collect >= 0) && ((gen_collect == 0) || (gc_counts[gen_collect] == GC.CollectionCount (gen_collect)))) { GC.Collect (gen_collect); Thread.Sleep (10*gen_collect); } //don't bother with gen0. for (int i = 1; i < 3; i++) { gc_counts [i] = GC.CollectionCount (i); } } public void Remove () { Interlocked.Decrement( ref handleCount); if (handleCount < 0) { throw new InvalidOperationException(SR.GetString(SR.InvalidOperation_HCCountOverflow)); } int newThreshold = handleCount + handleCount/deltaPercent; if (newThreshold < (threshold - threshold/deltaPercent)) { lock( this) { if (newThreshold > initialThreshold) { threshold = newThreshold; } else { threshold = initialThreshold; } gc_gen = 0; } } for (int i = 1; i < 3; i++) { gc_counts [i] = GC.CollectionCount (i); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OrderedDictionary.cs
- ValidatorCollection.cs
- PersonalizablePropertyEntry.cs
- UnauthorizedAccessException.cs
- SrgsRuleRef.cs
- CodeDelegateCreateExpression.cs
- AtomServiceDocumentSerializer.cs
- JapaneseLunisolarCalendar.cs
- NamespaceInfo.cs
- SystemFonts.cs
- SdlChannelSink.cs
- TranslateTransform.cs
- OdbcUtils.cs
- Operand.cs
- BitmapEffectRenderDataResource.cs
- Composition.cs
- GlobalEventManager.cs
- ExceptionHelpers.cs
- FieldNameLookup.cs
- BatchWriter.cs
- KerberosRequestorSecurityToken.cs
- PackageDigitalSignatureManager.cs
- XmlBinaryReader.cs
- ConfigurationManagerInternalFactory.cs
- DataSourceHelper.cs
- ReversePositionQuery.cs
- ToolStripSeparatorRenderEventArgs.cs
- CopyOfAction.cs
- AssemblyHash.cs
- RequestContext.cs
- ContainerFilterService.cs
- IpcPort.cs
- HwndSourceKeyboardInputSite.cs
- ReaderWriterLock.cs
- CheckBox.cs
- SqlMethods.cs
- BoundField.cs
- SQLDecimal.cs
- HtmlObjectListAdapter.cs
- SubMenuStyleCollection.cs
- OpenTypeLayout.cs
- AuthenticateEventArgs.cs
- ConfigurationStrings.cs
- CharEntityEncoderFallback.cs
- Bold.cs
- CachedFontFamily.cs
- TextRunCache.cs
- SQLGuid.cs
- LinkButton.cs
- FrameworkPropertyMetadata.cs
- AdornerLayer.cs
- InstallerTypeAttribute.cs
- SearchForVirtualItemEventArgs.cs
- SerTrace.cs
- WpfSharedXamlSchemaContext.cs
- Ipv6Element.cs
- ValuePattern.cs
- ListenerSessionConnection.cs
- SecurityResources.cs
- WMICapabilities.cs
- IBuiltInEvidence.cs
- _OSSOCK.cs
- DesignOnlyAttribute.cs
- PerfCounters.cs
- MessageAction.cs
- ToolboxDataAttribute.cs
- String.cs
- TemplatedControlDesigner.cs
- XmlILConstructAnalyzer.cs
- CalendarBlackoutDatesCollection.cs
- Subtract.cs
- Rethrow.cs
- _PooledStream.cs
- ObjectSet.cs
- WorkflowInstanceProvider.cs
- StrokeCollection2.cs
- FlowThrottle.cs
- TraceContext.cs
- PngBitmapDecoder.cs
- TabPanel.cs
- Style.cs
- RenamedEventArgs.cs
- LinkLabel.cs
- WinCategoryAttribute.cs
- DecimalAnimation.cs
- COM2TypeInfoProcessor.cs
- OutputCacheProfile.cs
- SQLResource.cs
- SingleAnimationUsingKeyFrames.cs
- JournalNavigationScope.cs
- SizeAnimationUsingKeyFrames.cs
- LabelDesigner.cs
- RecordsAffectedEventArgs.cs
- ReadContentAsBinaryHelper.cs
- DecoderExceptionFallback.cs
- SymDocumentType.cs
- xdrvalidator.cs
- WebPart.cs
- XNodeSchemaApplier.cs
- InkCanvasAutomationPeer.cs