WeakPointer¶
Usage
use WeakPointer;
or
import WeakPointer;
Warning
The weak type is experimental; expect this API to change in the future
Contains the weak
smart-pointer type for use 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.
- record weak : writeSerializable¶
- type classType¶
The shared class type referenced by this pointer
- proc init(c: shared)¶
Warning
The weak type is experimental; expect this API to change in the future.
Create a new weak reference to a shared class instance ‘c’
- proc init=(const ref src: weak)¶
Copy-initialize a new
weak
from an existingweak
.Increments the weak-reference count.
- proc init(type classType: shared)
Create an empty
weak
for the given class type.Attempting to upgrade the resulting
weak
will always fail.
- 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 ref 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?) where isSubtype(_to_nonnil(x.classType), _to_nonnil(t.chpl_t))¶
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 where isSubtype(_to_nonnil(x.classType), t.chpl_t)
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) where !(isNonNilableClass(lhs) && isNilableClass(rhs))¶
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.serialize(writer, ref serializer) throws¶