WeakPointer¶
Usage:
use WeakPointer;
or
import WeakPointer;
This module contains the weak
type, which is a smart pointer type designed
to be used in tandem with shared
objects.
A weak
provides a reference to a shared
class object without
requiring it to stay allocated. Such a pattern is useful for implementing graph
or tree structures with bidirectional references, or for implementing cache-like
data structures that maintain a list of objects but don’t require them to stay
allocated.
A “strong” shared reference to the relevant class object can be obtained via
the upgrade
method, or by casting the
weak
to a shared t
or a shared t?
. If the underlying object is
not valid (i.e., its shared reference count has already dropped to zero
causing it to be de-initialized) the upgrade attempt will fail.
Weak pointers are implemented using task-safe reference counting.
Warning
The weak type is experimental; expect this API to change in the future
- record weak¶
- type classType¶
The shared class type referenced by this pointer
- proc init(c: shared)¶
Create a new weak reference to a shared class instance ‘c’
Warning
The weak type is experimental; expect this API to change in the future.
- proc init=(const ref src: weak)¶
Copy-initialize a new
weak
from an existingweak
.Increments the weak-reference count.
- proc upgrade(): this.classType?¶
Attempt to recover a shared object from this
weak
If the pointer is valid (i.e., at least one
shared
reference to the data exists), a nilable shared object will be returned.If the pointer is invalid (or the object itself is
nil
) then anil
value will be returned.
- proc deinit()¶
When a
weak
is deinitialized, the weak reference count is decremented.If there are no other references (weak or strong), the backing pointer is freed.
- proc getWeakCount(): int¶
Get the number of
weak
variables currently pointing at the sameshared
class as this one.
- proc getStrongCount(): int¶
Get the number of
shared
variables currently pointing at the sameshared
class as thisweak
.
- operator :(const ref x: weak, type t: shared class?)
Cast a weak pointer to a nilable class type.
If the referenced class has already been deinitialized, or is itself
nil
, this cast will return anil
value.Otherwise it will return a nilable
shared
t
.
- operator :(const ref x: weak, type t: shared class) throws
Cast a weak pointer to a non-nilable class type.
If the referenced class has already been deinitialized, or is itself
nil
, this cast will throw aNilClassError
.Otherwise it will return a
shared
t
.
- operator =(ref lhs: weak, rhs: weak)¶
Assign one existing
weak
to an other.Decrements the weak-reference count of the
lhs
pointer.This will result in the deinitialization of the
lhs
’s backing pointer if it is the lastweak
orshared
that points to its object.
- proc weak.writeThis(ch) throws¶