MgReferer

MgReferer — Interface to know when on object is completely defined

Synopsis




            MgReferer;
GType       mg_referer_get_type             (void);
gboolean    mg_referer_activate             (MgReferer *iface);
void        mg_referer_deactivate           (MgReferer *iface);
gboolean    mg_referer_is_active            (MgReferer *iface);
GSList*     mg_referer_get_ref_objects      (MgReferer *iface);
void        mg_referer_replace_refs         (MgReferer *iface,
                                             GHashTable *replacements);

Object Hierarchy


  GInterface
   +----MgReferer

Prerequisites

MgReferer requires GObject.

Known Implementations

MgReferer is implemented by MgQfValue, MgQfField, MgTarget, MgDbConstraint, MgQfAll, MgCondition, MgQuery, MgJoin, MgQfFunc and MgParameter.

Signal Prototypes


"activated" void        user_function      (MgReferer *mgreferer,
                                            gpointer user_data);
"deactivated"
            void        user_function      (MgReferer *mgreferer,
                                            gpointer user_data);

Description

Some objects can be initialized in an uncomplete state. This is the case for example of a primary key database constraint, when we don't know, at creation time, which field it applies to. These objects implement this interface to at least signal when they are ready to be used.

Some objects need to be created _before_ other objects they will need to be operational even exist. They also implement this interface.

Details

MgReferer

typedef struct _MgReferer MgReferer;


mg_referer_get_type ()

GType       mg_referer_get_type             (void);

Returns :

mg_referer_activate ()

gboolean    mg_referer_activate             (MgReferer *iface);

Tries to activate the object, does nothing if the object is already active.

iface : an object which implements the MgReferer interface
Returns : TRUE if the object is active after the call

mg_referer_deactivate ()

void        mg_referer_deactivate           (MgReferer *iface);

Deactivates the object. This is the opposite to function mg_referer_activate(). If the object is already non active, then nothing happens.

iface : an object which implements the MgReferer interface

mg_referer_is_active ()

gboolean    mg_referer_is_active            (MgReferer *iface);

Get the status of an object

iface : an object which implements the MgReferer interface
Returns : TRUE if the object is active

mg_referer_get_ref_objects ()

GSList*     mg_referer_get_ref_objects      (MgReferer *iface);

Get the list of objects which are referenced by iface. The returned list is a new list. If iface is not active, then the returned list is incomplete.

iface : an object which implements the MgReferer interface
Returns : a new list of referenced objects

mg_referer_replace_refs ()

void        mg_referer_replace_refs         (MgReferer *iface,
                                             GHashTable *replacements);

Ask iface to replace references to objects listed as keys in the replacements hash table with references to objects of the corresponding value.

It's up to the caller to make sure each pair of (key, value) objects in replacements are of the same type, and that it makes sense to procede to the replacement.

The object implementing this interface will accept to do any work only if it is already active.

iface : an object which implements the MgReferer interface
replacements : a GHashTable

Signals

The "activated" signal

void        user_function                  (MgReferer *mgreferer,
                                            gpointer user_data);

mgreferer :the object which received the signal.
user_data :user data set when the signal handler was connected.

The "deactivated" signal

void        user_function                  (MgReferer *mgreferer,
                                            gpointer user_data);

mgreferer :the object which received the signal.
user_data :user data set when the signal handler was connected.