Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
TypeModule
provides a simple implementation of the TypePlugin
interface.
The model of TypeModule
is a dynamically loaded module which
implements some number of types and interface implementations.
When the module is loaded, it registers its types and interfaces
using typeModuleRegisterType
and typeModuleAddInterface
.
As long as any instances of these types and interface implementations
are in use, the module is kept loaded. When the types and interfaces
are gone, the module may be unloaded. If the types and interfaces
become used again, the module will be reloaded. Note that the last
reference cannot be released from within the module code, since that
would lead to the caller's code being unloaded before objectUnref
returns to it.
Keeping track of whether the module should be loaded or not is done by
using a use count - it starts at zero, and whenever it is greater than
zero, the module is loaded. The use count is maintained internally by
the type system, but also can be explicitly controlled by
typeModuleUse
and typeModuleUnuse
. Typically, when loading
a module for the first type, typeModuleUse
will be used to load
it so that it can initialize its types. At some later point, when the
module no longer needs to be loaded except for the type
implementations it contains, typeModuleUnuse
is called.
TypeModule
does not actually provide any implementation of module
loading and unloading. To create a particular module type you must
derive from TypeModule
and implement the load and unload functions
in TypeModuleClass
.
Synopsis
- newtype TypeModule = TypeModule (ManagedPtr TypeModule)
- class (GObject o, IsDescendantOf TypeModule o) => IsTypeModule o
- toTypeModule :: (MonadIO m, IsTypeModule o) => o -> m TypeModule
- typeModuleAddInterface :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> GType -> GType -> InterfaceInfo -> m ()
- typeModuleRegisterEnum :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> Text -> EnumValue -> m GType
- typeModuleRegisterFlags :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> Text -> FlagsValue -> m GType
- typeModuleRegisterType :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> GType -> Text -> TypeInfo -> [TypeFlags] -> m GType
- typeModuleSetName :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> Text -> m ()
- typeModuleUnuse :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> m ()
- typeModuleUse :: (HasCallStack, MonadIO m, IsTypeModule a) => a -> m Bool
Exported types
newtype TypeModule Source #
Memory-managed wrapper type.
Instances
Eq TypeModule Source # | |
Defined in GI.GObject.Objects.TypeModule (==) :: TypeModule -> TypeModule -> Bool # (/=) :: TypeModule -> TypeModule -> Bool # | |
GObject TypeModule Source # | |
Defined in GI.GObject.Objects.TypeModule | |
ManagedPtrNewtype TypeModule Source # | |
Defined in GI.GObject.Objects.TypeModule | |
TypedObject TypeModule Source # | |
Defined in GI.GObject.Objects.TypeModule | |
HasParentTypes TypeModule Source # | |
Defined in GI.GObject.Objects.TypeModule | |
IsGValue (Maybe TypeModule) Source # | Convert |
Defined in GI.GObject.Objects.TypeModule gvalueGType_ :: IO GType # gvalueSet_ :: Ptr GValue -> Maybe TypeModule -> IO () # gvalueGet_ :: Ptr GValue -> IO (Maybe TypeModule) # | |
type ParentTypes TypeModule Source # | |
Defined in GI.GObject.Objects.TypeModule |
class (GObject o, IsDescendantOf TypeModule o) => IsTypeModule o Source #
Type class for types which can be safely cast to TypeModule
, for instance with toTypeModule
.
Instances
(GObject o, IsDescendantOf TypeModule o) => IsTypeModule o Source # | |
Defined in GI.GObject.Objects.TypeModule |
toTypeModule :: (MonadIO m, IsTypeModule o) => o -> m TypeModule Source #
Cast to TypeModule
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
Click to display all available methods, including inherited ones
Methods
addInterface, bindProperty, bindPropertyFull, completeInterfaceInfo, completeTypeInfo, forceFloating, freezeNotify, getv, isFloating, notify, notifyByPspec, ref, refSink, registerEnum, registerFlags, registerType, runDispose, stealData, stealQdata, thawNotify, unref, unuse, use, watchClosure.
Getters
getData, getProperty, getQdata.
Setters
addInterface
typeModuleAddInterface Source #
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> GType |
|
-> GType |
|
-> InterfaceInfo |
|
-> m () |
Registers an additional interface for a type, whose interface lives in the given type plugin. If the interface was already registered for the type in this plugin, nothing will be done.
As long as any instances of the type exist, the type plugin will not be unloaded.
Since 2.56 if module
is Nothing
this will call typeAddInterfaceStatic
instead. This can be used when making a static build of the module.
registerEnum
typeModuleRegisterEnum Source #
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> Text |
|
-> EnumValue |
|
-> m GType | Returns: the new or existing type ID |
Looks up or registers an enumeration that is implemented with a particular
type plugin. If a type with name typeName
was previously registered,
the GType
identifier for the type is returned, otherwise the type
is newly registered, and the resulting GType
identifier returned.
As long as any instances of the type exist, the type plugin will not be unloaded.
Since 2.56 if module
is Nothing
this will call typeRegisterStatic
instead. This can be used when making a static build of the module.
Since: 2.6
registerFlags
typeModuleRegisterFlags Source #
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> Text |
|
-> FlagsValue |
|
-> m GType | Returns: the new or existing type ID |
Looks up or registers a flags type that is implemented with a particular
type plugin. If a type with name typeName
was previously registered,
the GType
identifier for the type is returned, otherwise the type
is newly registered, and the resulting GType
identifier returned.
As long as any instances of the type exist, the type plugin will not be unloaded.
Since 2.56 if module
is Nothing
this will call typeRegisterStatic
instead. This can be used when making a static build of the module.
Since: 2.6
registerType
typeModuleRegisterType Source #
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> GType |
|
-> Text |
|
-> TypeInfo |
|
-> [TypeFlags] |
|
-> m GType | Returns: the new or existing type ID |
Looks up or registers a type that is implemented with a particular
type plugin. If a type with name typeName
was previously registered,
the GType
identifier for the type is returned, otherwise the type
is newly registered, and the resulting GType
identifier returned.
When reregistering a type (typically because a module is unloaded
then reloaded, and reinitialized), module
and parentType
must
be the same as they were previously.
As long as any instances of the type exist, the type plugin will not be unloaded.
Since 2.56 if module
is Nothing
this will call typeRegisterStatic
instead. This can be used when making a static build of the module.
setName
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> Text |
|
-> m () |
Sets the name for a TypeModule
unuse
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> m () |
Decreases the use count of a TypeModule
by one. If the
result is zero, the module will be unloaded. (However, the
TypeModule
will not be freed, and types associated with the
TypeModule
are not unregistered. Once a TypeModule
is
initialized, it must exist forever.)
use
:: (HasCallStack, MonadIO m, IsTypeModule a) | |
=> a |
|
-> m Bool | Returns: |
Increases the use count of a TypeModule
by one. If the
use count was zero before, the plugin will be loaded.
If loading the plugin fails, the use count is reset to
its prior value.