|
Class: WeakValueDictionary
Object
|
+--Collection
|
+--Set
|
+--Dictionary
|
+--WeakValueDictionary
- Package:
- stx:libbasic
- Category:
- Collections-Weak
- Version:
- rev:
1.34
date: 2022/01/17 11:27:13
- user: stefan
- file: WeakValueDictionary.st directory: libbasic
- module: stx stc-classLibrary: libbasic
WeakValueDictionaries behave like Dictionaries,
as long as the values are still referenced by some
other (non-weak) object.
However, once the last non-weak reference ceases to exist,
the Dictionary will return nil for the value at position key.
(with some delay: it will be removed after the next garbage collect).
copyrightCOPYRIGHT (c) 1992 by Claus Gittinger
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
adding & removing
-
at: key ifAbsent: somethingRespondingToValue
-
Redefined to handle collected values (which are set to a SmallInteger)
snd to block interrupts, to avoid trouble when dependencies
are added within interrupting high prio processes.
-
at: key ifAbsentPut: replacementBlock
-
return the element indexed by aKey if present,
if not present, store the result of evaluating valueBlock
under aKey and return it.
Redefined to block interrupts, to avoid trouble when dependencies
are added within interrupting high prio processes.
WARNING: do not add elements while iterating over the receiver.
Iterate over a copy to do this.
-
at: key put: anObject
-
add the argument anObject under key, aKey to the receiver.
Return anObject (sigh).
Redefined to block interrupts, to avoid trouble when dependencies
are added within interrupting high prio processes.
-
removeIdentityValue: aValue ifAbsent: aBlock
-
remove the association under aValue from the collection,
return the key previously stored there.
If it was not in the collection return the result
from evaluating aBlock.
Redefined to avoid synchronization problems, in case
of interrupts (otherwise, there could be some other operation
on the receiver done by another process, which garbles my contents).
-
removeKey: aKey ifAbsent: aBlock
-
remove the association under aKey from the collection,
return the value previously stored there.
If it was not in the collection return the result
from evaluating aBlock.
Redefined to avoid synchronization problems, in case
of interrupts (otherwise, there could be some other operation
on the receiver done by another process, which garbles my contents).
-
removeValue: aValue ifAbsent: aBlock
-
remove the association under aValue from the collection,
return the key previously stored there.
If it was not in the collection return the result
from evaluating aBlock.
Redefined to avoid synchronization problems, in case
of interrupts (otherwise, there could be some other operation
on the receiver done by another process, which garbles my contents).
element disposal
-
update: something with: aParameter from: changedObject
-
one of our values died - clear out slots for disposed values.
enumerating
-
do: aBlock
-
garbage collected values will change to nil or a SmallInteger
-
keysAndValuesDo: aBlock
-
garbage collected values will change to a SmallInteger
private
-
clearDeadSlots
-
have to block here - dispose may be done at a low priority
from the background finalizer. If new items are added by a
higher prio process, the dictionary might get corrupted otherwise
-
possiblyShrink
-
check if the receiver has become too empty (after a remove)
and shrink if it makes sense.
Definition of 'too empty' is: 'filled less than 12.5% (i.e. 1/8th)'
-
valueContainerOfSize: n
-
return a container for values of size n.
use WeakArrays here.
queries
-
includes: anObject
-
redefined to block interrupts
(avoid change of the dictionary while accessing)
-
includesIdentical: anObject
-
redefined to block interrupts
(avoid change of the dictionary while accessing)
-
includesKey: key
-
redefined to check for already collected values
testing
-
isWeak
-
return true if the receiver has weak references to its elements.
-
isWeakCollection
-
return true, if the receiver has weak references to its elements.
|