Class MainContext
- All Implemented Interfaces:
Proxy
GMainContext
struct is an opaque data
type representing a set of sources to be handled in a main loop.-
Constructor Summary
ConstructorDescriptionCreates a newGLib.MainContext
structure.MainContext
(MemorySegment address) Create a MainContext proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionboolean
acquire()
Tries to become the owner of the specified context.void
Adds a file descriptor to the set of file descriptors polled for this context.static MainContext
default_()
Returns the global-default main context.void
dispatch()
Dispatches all pending sources.findSourceByFuncsUserData
(SourceFuncs funcs, @Nullable MemorySegment userData) Finds a source with the given source functions and user data.findSourceById
(int sourceId) Finds aGSource
given a pair of context and ID.findSourceByUserData
(@Nullable MemorySegment userData) Finds a source with the given user data for the callback.Gets the poll function set bysetPollFunc(org.gnome.glib.PollFunc)
.static MainContext
Gets the thread-defaultGMainContext
for this thread.static Type
getType()
Get the GType of the MainContext classvoid
invoke
(SourceFunc function) Invokes a function in such a way that this MainContext is owned during the invocation offunction
.void
invokeFull
(int priority, SourceFunc function) Invokes a function in such a way that this MainContext is owned during the invocation offunction
.boolean
isOwner()
Determines whether this thread holds the (recursive) ownership of thisGLib.MainContext
.boolean
iteration
(boolean mayBlock) Runs a single iteration for the given main loop.boolean
pending()
Checks if any sources have pending events for the given context.void
Pops this MainContext off the thread-default context stack (verifying that it was on the top of the stack).boolean
Prepares to poll sources within a main loop.void
Acquires this MainContext and sets it as the thread-default context for the current thread.ref()
Increases the reference count on aGLib.MainContext
object by one.static MainContext
Gets the thread-defaultGLib.MainContext
for this thread, as withgetThreadDefault()
, but also adds a reference to it withref()
.void
release()
Releases ownership of a context previously acquired by this thread withacquire()
.void
removePoll
(PollFD fd) Removes file descriptor from the set of file descriptors to be polled for a particular context.void
setPollFunc
(PollFunc func) Sets the function to use to handle polling of file descriptors.void
unref()
Decreases the reference count on aGLib.MainContext
object by one.boolean
Deprecated.void
wakeup()
If this MainContext is currently blocking initeration(boolean)
waiting for a source to become ready, cause it to stop blocking and return.static MainContext
withFlags
(Set<MainContextFlags> flags) Creates a newGLib.MainContext
structure.static MainContext
withFlags
(MainContextFlags... flags) Creates a newGLib.MainContext
structure.Methods inherited from class io.github.jwharm.javagi.base.ProxyInstance
equals, handle, hashCode
-
Constructor Details
-
MainContext
Create a MainContext proxy instance for the provided memory address.- Parameters:
address
- the memory address of the native object
-
MainContext
public MainContext()Creates a newGLib.MainContext
structure.
-
-
Method Details
-
getType
-
withFlags
Creates a newGLib.MainContext
structure.- Parameters:
flags
- a bitwise-OR combination ofGMainContextFlags
flags that can only be set at creation time.- Returns:
- the new
GMainContext
-
withFlags
Creates a newGLib.MainContext
structure.- Parameters:
flags
- a bitwise-OR combination ofGMainContextFlags
flags that can only be set at creation time.- Returns:
- the new
GMainContext
-
default_
Returns the global-default main context. This is the main context used for main loop functions when a main loop is not explicitly specified, and corresponds to the "main" main loop. See alsogetThreadDefault()
.- Returns:
- the global-default main context.
-
getThreadDefault
Gets the thread-defaultGMainContext
for this thread. Asynchronous operations that want to be able to be run in contexts other than the default one should call this method orrefThreadDefault()
to get aGLib.MainContext
to add theirGLib.Source
s to. (Note that even in single-threaded programs applications may sometimes want to temporarily push a non-default context, so it is not safe to assume that this will always returnnull
if you are running in the default thread.)If you need to hold a reference on the context, use
refThreadDefault()
instead.- Returns:
- the thread-default
GMainContext
, ornull
if the thread-default context is the global-default main context.
-
refThreadDefault
Gets the thread-defaultGLib.MainContext
for this thread, as withgetThreadDefault()
, but also adds a reference to it withref()
. In addition, unlikegetThreadDefault()
, if the thread-default context is the global-default context, this will return thatGLib.MainContext
(with a ref added to it) rather than returningnull
.- Returns:
- the thread-default
GMainContext
. Unref withunref()
when you are done with it.
-
acquire
public boolean acquire()Tries to become the owner of the specified context. If some other thread is the owner of the context, returnsfalse
immediately. Ownership is properly recursive: the owner can require ownership again and will release ownership whenrelease()
is called as many times asacquire()
.You must be the owner of a context before you can call
prepare(io.github.jwharm.javagi.base.Out<java.lang.Integer>)
,MainContext#query
,MainContext#check
,dispatch()
,release()
.Since 2.76 this MainContext can be
null
to use the global-default main context.- Returns:
true
if the operation succeeded, and this thread is now the owner of this MainContext.
-
addPoll
Adds a file descriptor to the set of file descriptors polled for this context. This will very seldom be used directly. Instead a typical event source will useg_source_add_unix_fd
instead.- Parameters:
fd
- aGPollFD
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 forSource.attach(org.gnome.glib.MainContext)
to ensure that the file descriptor is polled whenever the results may be needed.
-
dispatch
public void dispatch()Dispatches all pending sources.You must have successfully acquired the context with
acquire()
before you may call this function.Since 2.76 this MainContext can be
null
to use the global-default main context. -
findSourceByFuncsUserData
public Source findSourceByFuncsUserData(SourceFuncs funcs, @Nullable @Nullable MemorySegment userData) 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.- Parameters:
funcs
- thesourceFuncs
passed toSource(org.gnome.glib.SourceFuncs, int)
.userData
- the user data from the callback.- Returns:
- the source, if one was found, otherwise
null
-
findSourceById
Finds aGSource
given a pair of context and ID.It is a programmer error to attempt to look up a non-existent source.
More specifically: source IDs can be reissued after a source has been destroyed and therefore it is never valid to use this function with a source ID which may have already been removed. An example is when scheduling an idle to run in another thread with
GLib.idleAdd(int, org.gnome.glib.SourceFunc)
: the idle may already have run and been removed by the time this function is called on its (now invalid) source ID. This source ID may have been reissued, leading to the operation being performed against the wrong source.- Parameters:
sourceId
- the source ID, as returned bySource.getId()
.- Returns:
- the
GSource
-
findSourceByUserData
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.- Parameters:
userData
- the user_data for the callback.- Returns:
- the source, if one was found, otherwise
null
-
getPollFunc
Gets the poll function set bysetPollFunc(org.gnome.glib.PollFunc)
.- Returns:
- the poll function
-
invoke
Invokes a function in such a way that this MainContext is owned during the invocation offunction
.If this MainContext is
null
then the global-default main context — as returned bydefault_()
— is used.If this MainContext is owned by the current thread,
function
is called directly. Otherwise, if this MainContext is the thread-default main context of the current thread andacquire()
succeeds, thenfunction
is called andrelease()
is called afterwards.In any other case, an idle source is created to call
function
and that source is attached to this MainContext (presumably to be run in another thread). The idle source is attached withGLib.PRIORITY_DEFAULT
priority. If you want a different priority, useinvokeFull(int, org.gnome.glib.SourceFunc)
.Note that, as with normal idle functions,
function
should probably returnfalse
. If it returnstrue
, it will be continuously run in a loop (and may prevent this call from returning).- Parameters:
function
- function to call
-
invokeFull
Invokes a function in such a way that this MainContext is owned during the invocation offunction
.This function is the same as
invoke(org.gnome.glib.SourceFunc)
except that it lets you specify the priority in casefunction
ends up being scheduled as an idle and also lets you give aGDestroyNotify
fordata
.notify
should not assume that it is called from any particular thread or with any particular context acquired.- Parameters:
priority
- the priority at which to runfunction
function
- function to call
-
isOwner
public boolean isOwner()Determines whether this thread holds the (recursive) ownership of thisGLib.MainContext
. This is useful to know before waiting on another thread that may be blocking to get ownership of this MainContext.- Returns:
true
if current thread is owner of this MainContext.
-
iteration
public boolean iteration(boolean mayBlock) 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 andmayBlock
istrue
, waiting for a source to become ready, then dispatching the highest priority events sources that are ready. Otherwise, ifmayBlock
isfalse
sources are not waited to become ready, only those highest priority events sources will be dispatched (if any), that are ready at this given moment without further waiting.Note that even when
mayBlock
istrue
, it is still possible foriteration(boolean)
to returnfalse
, since the wait may be interrupted for other reasons than an event source becoming ready.- Parameters:
mayBlock
- whether the call may block.- Returns:
true
if events were dispatched.
-
pending
public boolean pending()Checks if any sources have pending events for the given context.- Returns:
true
if events are pending.
-
popThreadDefault
public void popThreadDefault()Pops this MainContext off the thread-default context stack (verifying that it was on the top of the stack). -
prepare
Prepares to poll sources within a main loop. The resulting information for polling is determined by callingMainContext#query
.You must have successfully acquired the context with
acquire()
before you may call this function.- Parameters:
priority
- location to store priority of highest priority source already ready.- Returns:
true
if some source is ready to be dispatched prior to polling.
-
pushThreadDefault
public void pushThreadDefault()Acquires this MainContext and sets it as the thread-default context for the current thread. This will cause certain asynchronous operations (such as most [gio][gio]-based I/O) which are started in this thread to run under this MainContext and deliver their results to its main loop, rather than running under the global default main context in the main thread. Note that calling this function changes the context returned bygetThreadDefault()
, not the one returned bydefault_()
, so it does not affect the context used by functions likeGLib.idleAdd(int, org.gnome.glib.SourceFunc)
.Normally you would call this function shortly after creating a new thread, passing it a
GLib.MainContext
which will be run by aGLib.MainLoop
in that thread, to set a new default context for all async operations in that thread. In this case you may not need to ever callpopThreadDefault()
, assuming you want the newGLib.MainContext
to be the default for the whole lifecycle of the thread.If you don't have control over how the new thread was created (e.g. in the new thread isn't newly created, or if the thread life cycle is managed by a
GThreadPool
), it is always suggested to wrap the logic that needs to use the newGLib.MainContext
inside apushThreadDefault()
/popThreadDefault()
pair, otherwise threads that are re-used will end up never explicitly releasing theGLib.MainContext
reference they hold.In some cases you may want to schedule a single operation in a non-default context, or temporarily use a non-default context in the main thread. In that case, you can wrap the call to the asynchronous operation inside a
pushThreadDefault()
/popThreadDefault()
pair, but it is up to you to ensure that no other asynchronous operations accidentally get started while the non-default context is active.Beware that libraries that predate this function may not correctly handle being used from a thread with a thread-default context. Eg, see g_file_supports_thread_contexts().
-
ref
Increases the reference count on aGLib.MainContext
object by one.- Returns:
- the this MainContext that was passed in (since 2.6)
-
release
public void release()Releases ownership of a context previously acquired by this thread withacquire()
. If the context was acquired multiple times, the ownership will be released only whenrelease()
is called as many times as it was acquired.You must have successfully acquired the context with
acquire()
before you may call this function. -
removePoll
Removes file descriptor from the set of file descriptors to be polled for a particular context.- Parameters:
fd
- aGPollFD
descriptor previously added withaddPoll(org.gnome.glib.PollFD, int)
-
setPollFunc
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.
- Parameters:
func
- the function to call to poll all file descriptors
-
unref
public void unref()Decreases the reference count on aGLib.MainContext
object by one. If the result is zero, free the context and free all associated memory. -
wait_
Deprecated.UseisOwner()
and separate locking instead.Tries to become the owner of the specified context, as withacquire()
. But if another thread is the owner, atomically dropmutex
and wait oncond
until that owner releases ownership or untilcond
is signaled, then try again (once) to become the owner.- Parameters:
cond
- a condition variablemutex
- a mutex, currently held- Returns:
true
if the operation succeeded, and this thread is now the owner of this MainContext.
-
wakeup
public void wakeup()If this MainContext is currently blocking initeration(boolean)
waiting for a source to become ready, cause it to stop blocking and return. Otherwise, cause the next invocation ofiteration(boolean)
to return without blocking.This API is useful for low-level control over
GLib.MainContext
; for example, integrating it with main loop implementations such asGLib.MainLoop
.Another related use for this function is when implementing a main loop with a termination condition, computed from multiple threads:
Then in a thread:#define NUM_TASKS 10 static gint tasks_remaining = NUM_TASKS; // (atomic) ... while (g_atomic_int_get (&tasks_remaining) != 0) g_main_context_iteration (NULL, TRUE);
perform_work(); if (g_atomic_int_dec_and_test (&tasks_remaining)) g_main_context_wakeup (NULL);
-
isOwner()
and separate locking instead.