primal-0.3.0.0: Primeval world of Haskell.
Copyright(c) Alexey Kuleshevich 2020
LicenseBSD3
MaintainerAlexey Kuleshevich <alexey@kuleshevi.ch>
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Foreign.Prim.WeakPtr

Description

 
Synopsis

Documentation

data Weak v #

A weak pointer object with a key and a value. The value has type v.

A weak pointer expresses a relationship between two objects, the key and the value: if the key is considered to be alive by the garbage collector, then the value is also alive. A reference from the value to the key does not keep the key alive.

A weak pointer may also have a finalizer of type IO (); if it does, then the finalizer will be run at most once, at a time after the key has become unreachable by the program ("dead"). The storage manager attempts to run the finalizer(s) for an object soon after the object dies, but promptness is not guaranteed.

It is not guaranteed that a finalizer will eventually run, and no attempt is made to run outstanding finalizers when the program exits. Therefore finalizers should not be relied on to clean up resources - other methods (eg. exception handlers) should be employed, possibly in addition to finalizers.

References from the finalizer to the key are treated in the same way as references from the value to the key: they do not keep the key alive. A finalizer may therefore ressurrect the key, perhaps by storing it in the same data structure.

The finalizer, and the relationship between the key and the value, exist regardless of whether the program keeps a reference to the Weak object or not.

There may be multiple weak pointers with the same key. In this case, the finalizers for each of these weak pointers will all be run in some arbitrary order, or perhaps concurrently, when the key dies. If the programmer specifies a finalizer that assumes it has the only reference to an object (for example, a file that it wishes to close), then the programmer must ensure that there is only one such finalizer.

If there are no other threads to run, the runtime system will check for runnable finalizers before declaring the system to be deadlocked.

WARNING: weak pointers to ordinary non-primitive Haskell types are particularly fragile, because the compiler is free to optimise away or duplicate the underlying data structure. Therefore attempting to place a finalizer on an ordinary Haskell type may well result in the finalizer running earlier than you expected. This is not a problem for caches and memo tables where early finalization is benign.

Finalizers can be used reliably for types that are created explicitly and have identity, such as IORef and MVar. However, to place a finalizer on one of these types, you should use the specific operation provided for that type, e.g. mkWeakIORef and addMVarFinalizer respectively (the non-uniformity is accidental). These operations attach the finalizer to the primitive object inside the box (e.g. MutVar# in the case of IORef), because attaching the finalizer to the box itself fails when the outer box is optimised away by the compiler.

Constructors

Weak (Weak# v) 

mkWeak :: MonadUnliftPrim RW m => a -> v -> m b -> m (Weak v) Source #

Same as mkWeak, except it requires a finalizer to be supplied. For a version without finalizers use mkWeakNoFinalizer

mkWeakNoFinalizer :: MonadPrim RW m => a -> v -> m (Weak v) Source #

Similar to mkWeak, except it does not require a finalizer.

mkWeakPtr :: MonadUnliftPrim RW m => k -> m b -> m (Weak k) Source #

Same as mkWeakPtr, except it requires a finalizer to be supplied. For a version without finalizers use mkWeakPtrNoFinalizer

mkWeakPtrNoFinalizer :: MonadPrim RW m => k -> m (Weak k) Source #

Similar to mkWeakPtr, except it does not require a finalizer.

addFinalizer :: MonadUnliftPrim RW m => k -> m b -> m () Source #

Same as addFinalizer.

addCFinalizer Source #

Arguments

:: MonadPrim RW m 
=> FunPtr (Ptr a -> IO ())

Pointer to the C function to be called when finalizers are being invoked

-> Ptr a

Argument that will be supplied to the finalizer function

-> Weak v 
-> m Bool 

Add a foreign function finalizer with a single argument

addCFinalizerEnv Source #

Arguments

:: MonadPrim RW m 
=> FunPtr (Ptr env -> Ptr a -> IO ())

Pointer to the C function to be called when finalizers are being invoked

-> Ptr env

First argument that will be supplied to the finalizer function

-> Ptr a

Second argument that will be supplied to the finalizer function

-> Weak v 
-> m Bool 

Add a foreign function finalizer with two arguments

deRefWeak :: MonadPrim RW m => Weak v -> m (Maybe v) Source #

Similar to deRefWeak

finalizeWeak :: MonadPrim RW m => Weak v -> m () Source #

Similar to finalize