GLib Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
The main event loop manages all the available sources of events for GLib and GTK+ applications. These events can come from any number of different types of sources such as file descriptors (plain files, pipes or sockets) and timeouts. New types of event sources can also be added using g_source_attach().
To allow multiple independent sets of sources to be handled in different threads, each source is associated with a GMainContext. A GMainContext can only be running in a single thread, but sources can be added to it and removed from it from other threads.
Each event source is assigned a priority. The default priority, G_PRIORITY_DEFAULT, is 0. Values less than 0 denote higher priorities. Values greater than 0 denote lower priorities. Events from high priority sources are always processed before events from lower priority sources.
Idle functions can also be added, and assigned a priority. These will be run whenever no events with a higher priority are ready to be processed.
The GMainLoop data type represents a main event loop. A GMainLoop is created with g_main_loop_new(). After adding the initial event sources, g_main_loop_run() is called. This continuously checks for new events from each of the event sources and dispatches them. Finally, the processing of an event from one of the sources leads to a call to g_main_loop_quit() to exit the main loop, and g_main_loop_run() returns.
It is possible to create new instances of GMainLoop recursively. This is often used in GTK+ applications when showing modal dialog boxes. Note that event sources are associated with a particular GMainContext, and will be checked and dispatched for all main loops associated with that GMainContext.
GTK+ contains wrappers of many of these functions, e.g. gtk_main(), gtk_main_quit(), gtk_events_pending(), gtk_idle_add(), gtk_timeout_add() and gtk_input_add_full().
One of the unusual features of the GTK+ main loop functionality is that new types of event source can be created and used in addition to the builtin type of event source. A new event source type is used for handling GDK events. A new source type is created by deriving from the GSource structure. The derived type of source is represented by a structure that has the GSource structure as a first element, and other elements specific to the new source type. To create an instance of the new source type, call g_source_new() passing in the size of the derived structure and a table of functions. These GSourceFuncs determine the behavior of the new source types.
New source types basically interact with with the main context in two ways. Their prepare function in GSourceFuncs can set a timeout to determine the maximum amount of time that the main loop will sleep before checking the source again. In addition, or as well, the source can add file descriptors to the set that the main context checks using g_source_add_poll().
Single iterations of a GMainContext can be run with g_main_context_iteration(). In some cases, more detailed control of exactly how the details of the main loop work is desired, for instance, when integrating the GMainLoop with an external main loop. In such cases, you can call the component functions of g_main_context_iteration() directly. These functions are g_main_context_prepare(), g_main_context_query(), g_main_context_check() and g_main_context_dispatch().
The operation of these functions can best be seen in terms of a state diagram, as shown in Figure 1.
struct GMainLoop; |
The GMainLoop struct is an opaque data type representing the main event loop of a GLib or GTK+ application.
GMainLoop* g_main_loop_new (GMainContext *context, gboolean is_running); |
Creates a new GMainLoop structure.
context : | a GMainContext (if NULL, the default context will be used). |
is_running : | set to TRUE to indicate that the loop is running. This is not very important since calling g_main_loop_run() will set this to TRUE anyway. |
Returns : | a new GMainLoop. |
GMainLoop* g_main_loop_ref (GMainLoop *loop); |
Increases the reference count on a GMainLoop object by one.
loop : | a GMainLoop |
Returns : | loop |
void g_main_loop_unref (GMainLoop *loop); |
Decreases the reference count on a GMainLoop object by one. If the result is zero, free the loop and free all associated memory.
loop : | a GMainLoop |
void g_main_loop_run (GMainLoop *loop); |
Runs a main loop until g_main_loop_quit() is called on the loop. If this is called for the thread of the loop's GMainContext, it will process events from the loop, otherwise it will simply wait.
loop : | a GMainLoop |
void g_main_loop_quit (GMainLoop *loop); |
Stops a GMainLoop from running. Any calls to g_main_loop_run() for the loop will return.
loop : | a GMainLoop |
gboolean g_main_loop_is_running (GMainLoop *loop); |
Checks to see if the main loop is currently being run via g_main_loop_run().
loop : | a GMainLoop. |
Returns : | TRUE if the mainloop is currently being run. |
GMainContext* g_main_loop_get_context (GMainLoop *loop); |
Returns the GMainContext of loop.
loop : | a GMainLoop. |
Returns : | the GMainContext of loop |
#define g_main_new(is_running) |
Warning |
g_main_new is deprecated and should not be used in newly-written code. |
Creates a new GMainLoop for the default main loop. A compatibility macro, see g_main_loop_new().
is_running : | set to TRUE to indicate that the loop is running. This is not very important since calling g_main_run() will set this to TRUE anyway. |
Returns : | a new GMainLoop. |
#define g_main_destroy(loop) |
Warning |
g_main_destroy is deprecated and should not be used in newly-written code. |
Frees the memory allocated for the GMainLoop. A compatibility macro, see g_main_loop_unref().
loop : | a GMainLoop. |
#define g_main_run(loop) |
Warning |
g_main_run is deprecated and should not be used in newly-written code. |
Runs a main loop until it stops running. A compatibility macro, see g_main_loop_run().
loop : | a GMainLoop. |
#define g_main_quit(loop) |
Warning |
g_main_quit is deprecated and should not be used in newly-written code. |
Stops the GMainLoop. If g_main_run() was called to run the GMainLoop, it will now return. A compatibility macro, see g_main_loop_quit().
loop : | a GMainLoop. |
#define g_main_is_running(loop) |
Warning |
g_main_is_running is deprecated and should not be used in newly-written code. |
Checks if the main loop is running. A compatibility macro, see g_main_loop_is_running().
loop : | a GMainLoop. |
Returns : | TRUE if the main loop is running. |
#define G_PRIORITY_HIGH -100 |
Use this for high priority event sources. It is not used within GLib or GTK+.
#define G_PRIORITY_DEFAULT 0 |
Use this for default priority event sources. In GLib this priority is used when adding timeout functions with g_timeout_add(). In GDK this priority is used for events from the X server.
#define G_PRIORITY_HIGH_IDLE 100 |
Use this for high priority idle functions. GTK+ uses G_PRIORITY_HIGH_IDLE + 10 for resizing operations, and G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is done to ensure that any pending resizes are processed before any pending redraws, so that widgets are not redrawn twice unnecessarily.)
#define G_PRIORITY_DEFAULT_IDLE 200 |
Use this for default priority idle functions. In GLib this priority is used when adding idle functions with g_idle_add().
#define G_PRIORITY_LOW 300 |
Use this for very low priority background tasks. It is not used within GLib or GTK+.
struct GMainContext; |
The GMainContext struct is an opaque data type representing a set of sources to be handled in a main loop.
GMainContext* g_main_context_new (void); |
Creates a new GMainContext strcuture
Returns : | the new GMainContext |
void g_main_context_ref (GMainContext *context); |
Increases the reference count on a GMainContext object by one.
context : | a GMainContext |
void g_main_context_unref (GMainContext *context); |
Decreases the reference count on a GMainContext object by one. If the result is zero, free the context and free all associated memory.
context : | a GMainContext |
GMainContext* g_main_context_default (void); |
Returns the default main context. This is the main context used for main loop functions when a main loop is not explicitly specified.
gboolean g_main_context_iteration (GMainContext *context, gboolean may_block); |
Runs a single iteration for the given main loop. This involves checking to see if any event sources are ready to be processed, then if no events sources are ready and may_block is TRUE, waiting for a source to become ready, then dispatching the highest priority events sources that are ready. Note that even when may_block is TRUE, it is still possible for g_main_context_iteration() to return FALSE, since the the wait may be interrupted for other reasons than an event source becoming ready.
context : | a GMainContext (if NULL, the default context will be used) |
may_block : | whether the call may block. |
Returns : | TRUE if events were dispatched. |
#define g_main_iteration(may_block) |
Warning |
g_main_iteration is deprecated and should not be used in newly-written code. |
Runs a single iteration for the default GMainContext. A compatibility macro, see g_main_context_iteration().
gboolean g_main_context_pending (GMainContext *context); |
Checks if any sources have pending events for the given context.
context : | a GMainContext (if NULL, the default context will be used) |
Returns : | TRUE if events are pending. |
#define g_main_pending() |
Warning |
g_main_pending is deprecated and should not be used in newly-written code. |
Checks if any events are pending for the default GMainContext (i.e. ready to be processed). A compatibility macro, see g_main_context_pending().
GSource* g_main_context_find_source_by_id (GMainContext *context, guint source_id); |
Finds a GSource given a pair of context and ID
context : | a GMainContext (if NULL, the default context will be used) |
source_id : | the source ID, as returned by g_source_get_id() |
Returns : | the GSource if found, otherwise, NULL |
GSource* g_main_context_find_source_by_user_data (GMainContext *context, gpointer user_data); |
Finds a source with the given user data for the callback. If multiple sources exist with the same user data, the first one found will be returned.
context : | a GMainContext |
user_data : | the user_data for the callback. |
Returns : | the source, if one was found, otherwise NULL |
GSource* g_main_context_find_source_by_funcs_user_data (GMainContext *context, GSourceFuncs *funcs, gpointer user_data); |
Finds a source with the given source functions and user data. If multiple sources exist with the same source function and user data, the first one found will be returned.
context : | a GMainContext (if NULL, the default context will be used). |
funcs : | the source_funcs passed to g_source_new(). |
user_data : | the user data from the callback. |
Returns : | the source, if one was found, otherwise NULL |
void g_main_context_wakeup (GMainContext *context); |
If context is currently waiting in a poll(), interrupt the poll(), and continue the iteration process.
context : | a GMainContext |
gboolean g_main_context_acquire (GMainContext *context); |
Tries to become the owner of the specified context. If some other context is the owner of the context, returns FALSE immediately. Ownership is properly recursive: the owner can require ownership again and will release ownership when g_main_context_release() is called as many times as g_main_context_acquire().
You must be the owner of a context before you can call g_main_context_prepare(), g_main_context_query(), g_main_context_check(), g_main_context_dispatch().
context : | a GMainContext |
Returns : | TRUE if the operation succeeded, and this thread is now the owner of context. |
void g_main_context_release (GMainContext *context); |
Releases ownership of a context previously acquired by this thread with g_main_context_acquire(). If the context was acquired multiple times, the only release ownership when g_main_context_release() is called as many times as it was acquired.
context : | a GMainContext |
gboolean g_main_context_wait (GMainContext *context, GCond *cond, GMutex *mutex); |
Tries to become the owner of the specified context, as with g_main_context_acquire(). But if another thread is the owner, atomically drop mutex and wait on cond until that owner releases ownership or until cond is signaled, then try again (once) to become the owner.
context : | a GMainContext |
cond : | a condition variable |
mutex : | a mutex, currently held |
Returns : | TRUE if the operation succeeded, and this thread is now the owner of context. |
gboolean g_main_context_prepare (GMainContext *context, gint *priority); |
Prepares to poll sources within a main loop. The resulting information for polling is determined by calling g_main_context_query().
context : | a GMainContext |
priority : | location to store priority of highest priority source already ready. |
Returns : | TRUE if some source is ready to be dispatched prior to polling. |
gint g_main_context_query (GMainContext *context, gint max_priority, gint *timeout, GPollFD *fds, gint n_fds); |
Determines information necessary to poll this main loop.
context : | a GMainContext |
max_priority : | maximum priority source to check |
timeout : | location to store timeout to be used in polling |
fds : | location to store GPollFD records that need to be polled. |
n_fds : | length of fds. |
Returns : | the number of records actually stored in fds, or, if more than n_fds records need to be stored, the number of records that need to be stored. |
gint g_main_context_check (GMainContext *context, gint max_priority, GPollFD *fds, gint n_fds); |
Passes the results of polling back to the main loop.
context : | a GMainContext |
max_priority : | the maximum numerical priority of sources to check |
fds : | array of GPollFD's that was passed to the last call to g_main_context_query() |
n_fds : | return value of g_main_context_query() |
Returns : | TRUE if some sources are ready to be dispatched. |
void g_main_context_dispatch (GMainContext *context); |
Dispatches all pending sources.
context : | a GMainContext |
void g_main_context_set_poll_func (GMainContext *context, GPollFunc func); |
Sets the function to use to handle polling of file descriptors. It will be used instead of the poll() system call (or GLib's replacement function, which is used where poll() isn't available).
This function could possibly be used to integrate the GLib event loop with an external event loop.
context : | a GMainContext |
func : | the function to call to poll all file descriptors |
GPollFunc g_main_context_get_poll_func (GMainContext *context); |
Gets the poll function set by g_main_context_set_poll_func().
context : | a GMainContext |
Returns : | the poll function |
gint (*GPollFunc) (GPollFD *ufds, guint nfsd, gint timeout); |
Specifies the type of function passed to g_main_set_poll_func(). The semantics of the function should match those of the poll() system call.
void g_main_context_add_poll (GMainContext *context, GPollFD *fd, gint priority); |
Adds a file descriptor to the set of file descriptors polled for this context. This will very seldomly be used directly. Instead a typical event source will use g_source_add_poll() instead.
context : | a GMainContext (or NULL for the default context) |
fd : | a GPollFD structure holding information about a file descriptor to watch. |
priority : | the priority for this file descriptor which should be the same as the priority used for g_source_attach() to ensure that the file descriptor is polled whenever the results may be needed. |
void g_main_context_remove_poll (GMainContext *context, GPollFD *fd); |
Removes file descriptor from the set of file descriptors to be polled for a particular context.
context : | a GMainContext |
fd : | a GPollFD descriptor previously added with g_main_context_add_poll() |
#define g_main_set_poll_func(func) |
Warning |
g_main_set_poll_func is deprecated and should not be used in newly-written code. |
Sets the function to use for the handle polling of file descriptors for the default main context. This is a compatability macro, see g_main_context_set_poll_func() for full details.
GSource* g_timeout_source_new (guint interval); |
Creates a new timeout source.
The source will not initially be associated with any GMainContext and must be added to one with g_source_attach() before it will be executed.
guint g_timeout_add (guint interval, GSourceFunc function, gpointer data); |
Sets a function to be called at regular intervals, with the default priority, G_PRIORITY_DEFAULT. The function is called repeatedly until it returns FALSE, at which point the timeout is automatically destroyed and the function will not be called again. The notify function is called when the timeout is destroyed. The first call to the function will be at the end of the first interval.
Note that timeout functions may be delayed, due to the processing of other event sources. Thus they should not be relied on for precise timing. After each call to the timeout function, the time of the next timeout is recalculated based on the current time and the given interval (it does not try to 'catch up' time lost in delays).
guint g_timeout_add_full (gint priority, guint interval, GSourceFunc function, gpointer data, GDestroyNotify notify); |
Sets a function to be called at regular intervals, with the given priority. The function is called repeatedly until it returns FALSE, at which point the timeout is automatically destroyed and the function will not be called again. The notify function is called when the timeout is destroyed. The first call to the function will be at the end of the first interval.
Note that timeout functions may be delayed, due to the processing of other event sources. Thus they should not be relied on for precise timing. After each call to the timeout function, the time of the next timeout is recalculated based on the current time and the given interval (it does not try to 'catch up' time lost in delays).
priority : | the priority of the idle source. Typically this will be in the range between G_PRIORITY_DEFAULT_IDLE and G_PRIORITY_HIGH_IDLE. |
interval : | the time between calls to the function, in milliseconds (1/1000ths of a second) |
function : | function to call |
data : | data to pass to function |
notify : | function to call when the idle is removed, or NULL |
Returns : | the id of event source. |
GSource* g_idle_source_new (void); |
Creates a new idle source.
The source will not initially be associated with any GMainContext and must be added to one with g_source_attach() before it will be executed.
guint g_idle_add (GSourceFunc function, gpointer data); |
Adds a function to be called whenever there are no higher priority events pending to the default main loop. The function is given the default idle priority, G_PRIORITY_DEFAULT_IDLE. If the function returns FALSE it is automatically removed from the list of event sources and will not be called again.
guint g_idle_add_full (gint priority, GSourceFunc function, gpointer data, GDestroyNotify notify); |
Adds a function to be called whenever there are no higher priority events pending. If the function returns FALSE it is automatically removed from the list of event sources and will not be called again.
priority : | the priority of the idle source. Typically this will be in the range btweeen G_PRIORITY_DEFAULT_IDLE and G_PRIORITY_HIGH_IDLE. |
function : | function to call |
data : | data to pass to function |
notify : | function to call when the idle is removed, or NULL |
Returns : | the id of the event source. |
gboolean g_idle_remove_by_data (gpointer data); |
Removes the idle function with the given data.
struct GPollFD { gint fd; gushort events; gushort revents; }; |
gint fd; | the file descriptor to poll (or a HANDLE on Win32 platforms). |
gushort events; | a bitwise combination of flags from GIOCondition, specifying which events should be polled for. Typically for reading from a file descriptor you would use G_IO_IN | G_IO_HUP | G_IO_ERR, and for writing you would use G_IO_OUT | G_IO_ERR. |
gushort revents; | a bitwise combination of flags from GIOCondition, returned from the poll() function to indicate which events occurred. |
struct GSource { /*< private >*/ gpointer callback_data; GSourceCallbackFuncs *callback_funcs; GSourceFuncs *source_funcs; guint ref_count; GMainContext *context; gint priority; guint flags; guint source_id; GSList *poll_fds; GSource *prev; GSource *next; gpointer reserved1; gpointer reserved2; }; |
The GSource struct is an opaque data type representing an event source.
struct GSourceFuncs { gboolean (*prepare) (GSource *source, gint *timeout); gboolean (*check) (GSource *source); gboolean (*dispatch) (GSource *source, GSourceFunc callback, gpointer user_data); void (*finalize) (GSource *source); /* Can be NULL */ /* For use by g_source_set_closure */ GSourceFunc closure_callback; GSourceDummyMarshal closure_marshal; /* Really is of type GClosureMarshal */ }; |
The GSourceFuncs struct contains a table of functions used to handle event sources in a generic manner.
prepare | Called before all the file descriptors are polled. If the source can determine that it is ready here (without waiting for the results of the poll() call) it should return TRUE. It can also return a timeout value which should be the maximum timeout (in milliseconds) which should be passed to the poll() call. The actual timeout used will be -1 if all sources returned -1, or it will be the minimum of all the timeout values returned which were >= 0. |
check | Called after all the file descriptors are polled. The source should return TRUE if it is ready to be dispatched. Note that some time may have passed since the previous prepare function was called, so the source should be checked again here. |
dispatch | Called to dispatch the event source, after it has returned TRUE in either its prepare or its check function. The dispatch function is passed in a callback function and data. The callback function may be NULL if the source was never connected using g_source_attach(). The dispatch function should call the callback function with data and whatever additional parameters are needed for this type of event source. |
finalize | Called when the source is finalized. |
For idle sources, the prepare and check functions always return TRUE to indicate that the source is always ready to be processed. The prepare function also returns a timeout value of 0 to ensure that the poll() call doesn't block (since that would be time wasted which could have been spent running the idle function).
For timeout sources, the prepare and check functions both return TRUE if the timeout interval has expired. The prepare function also returns a timeout value to ensure that the poll() call doesn't block too long and miss the next timeout.
For file descriptor sources, the prepare function typically returns FALSE, since it must wait until poll() has been called before it knows whether any events need to be processed. It sets the returned timeout to -1 to indicate that it doesn't mind how long the poll() call blocks. In the check function, it tests the results of the poll() call to see if the required condition has been met, and returns TRUE if so.
struct GSourceCallbackFuncs { void (*ref) (gpointer cb_data); void (*unref) (gpointer cb_data); void (*get) (gpointer cb_data, GSource *source, GSourceFunc *func, gpointer *data); }; |
The GSourceCallbackFuncs struct contains functions for managing callback objects.
void (*ref) (gpointer cb_data) | Called when a reference is added to the callback object. |
void (*unref) (gpointer cb_data) | Called when a reference to the callback object is dropped. |
void (*get) (gpointer cb_data, GSource *source, GSourceFunc *func, gpointer *data) | Called to extract the callback function and data from the callback object. |
GSource* g_source_new (GSourceFuncs *source_funcs, guint struct_size); |
Creates a new GSource structure. The size is specified to allow creating structures derived from GSource that contain additional data. The size passed in must be at least sizeof (GSource).
The source will not initially be associated with any GMainContext and must be added to one with g_source_attach() before it will be executed.
GSource* g_source_ref (GSource *source); |
Increases the reference count on a source by one.
source : | a GSource |
Returns : | source |
void g_source_unref (GSource *source); |
Decreases the reference count of a source by one. If the resulting reference count is zero the source and associated memory will be destroyed.
source : | a GSource |
guint g_source_attach (GSource *source, GMainContext *context); |
Adds a GSource to a context so that it will be executed within that context.
source : | a GSource |
context : | a GMainContext (if NULL, the default context will be used) |
Returns : | the ID for the source within the GMainContext |
void g_source_destroy (GSource *source); |
Removes a source from its GMainContext, if any, and mark it as destroyed. The source cannot be subsequently added to another context.
source : | a GSource |
void g_source_set_priority (GSource *source, gint priority); |
Sets the priority of a source. While the main loop is being run, a source will be dispatched if it is ready to be dispatched and no sources at a higher (numerically smaller) priority are ready to be dispatched.
source : | a GSource |
priority : | the new priority. |
gint g_source_get_priority (GSource *source); |
Gets the priority of a source.
source : | a GSource |
Returns : | the priority of the source |
void g_source_set_can_recurse (GSource *source, gboolean can_recurse); |
Sets whether a source can be called recursively. If can_recurse is TRUE, then while the source is being dispatched then this source will be processed normally. Otherwise, all processing of this source is blocked until the dispatch function returns.
source : | a GSource |
can_recurse : | whether recursion is allowed for this source |
gboolean g_source_get_can_recurse (GSource *source); |
Checks whether a source is allowed to be called recursively. see g_source_set_can_recurse().
source : | a GSource |
Returns : | whether recursion is allowed. |
guint g_source_get_id (GSource *source); |
Returns the numeric ID for a particular source. The ID of a source is unique within a particular main loop context. The reverse mapping from ID to source is done by g_main_context_find_source_by_id().
source : | a GSource |
Returns : | the ID for the source |
GMainContext* g_source_get_context (GSource *source); |
Gets the GMainContext with which the source is associated. Calling this function on a destroyed source is an error.
source : | a GSource |
Returns : | the GMainContext with which the source is associated, or NULL if the context has not yet been added to a source. |
void g_source_set_callback (GSource *source, GSourceFunc func, gpointer data, GDestroyNotify notify); |
Sets the callback function for a source.
gboolean (*GSourceFunc) (gpointer data); |
Specifies the type of function passed to g_timeout_add(), g_timeout_add_full(), g_idle_add(), and g_idle_add_full().
void g_source_set_callback_indirect (GSource *source, gpointer callback_data, GSourceCallbackFuncs *callback_funcs); |
Sets the callback function storing the data as a refcounted callback "object". This is used internally. Note that calling g_source_set_callback_indirect() assumes an initial reference count on callback_data, and thus callback_funcs->unref will eventually be called once more than callback_funcs->ref.
void g_source_add_poll (GSource *source, GPollFD *fd); |
Adds a file descriptor to the set of file descriptors polled for this source. This is usually combined with g_source_new() to add an event source. The event source's check function will typically test the revents field in the GPollFD struct and return TRUE if events need to be processed.
void g_source_remove_poll (GSource *source, GPollFD *fd); |
Removes a file descriptor from the set of file descriptors polled for this source.
source : | a GSource |
fd : | a GPollFD structure previously passed to g_source_add_poll(). |
void g_source_get_current_time (GSource *source, GTimeVal *timeval); |
Gets the "current time" to be used when checking this source. The advantage of calling this function over calling g_get_current_time() directly is that when checking multiple sources, GLib can cache a single value instead of having to repeatedly get the system time.
gboolean g_source_remove (guint tag); |
Removes the source with the given id from the default main context. The id of a GSource is given by g_source_get_id(), or will be returned by the functions g_source_attach(), g_idle_add(), g_idle_add_full(), g_timeout_add(), g_timeout_add_full(), g_io_add_watch, and g_io_add_watch_full().
See also g_source_destroy().
gboolean g_source_remove_by_funcs_user_data (GSourceFuncs *funcs, gpointer user_data); |
Removes a source from the default main loop context given the source functions and user data. If multiple sources exist with the same source functions and user data, only one will be destroyed.
funcs : | The source_funcs passed to g_source_new() |
user_data : | the user data for the callback |
Returns : | TRUE if a source was found and removed. |