Package ch.bailu.gtk.gio
Klasse ApplicationCommandLine
java.lang.Object
ch.bailu.gtk.type.Type
ch.bailu.gtk.type.Pointer
ch.bailu.gtk.gobject.Object
ch.bailu.gtk.type.PropertyHolder
ch.bailu.gtk.gio.ApplicationCommandLine
- Alle implementierten Schnittstellen:
PointerInterface
`GApplicationCommandLine` represents a command-line invocation of
an application.
It is created by [class@Gio.Application] and emitted
in the [signal@Gio.Application::command-line] signal and virtual function.
The class contains the list of arguments that the program was invoked
with. It is also possible to query if the commandline invocation was
local (ie: the current process is running in direct response to the
invocation) or remote (ie: some other process forwarded the
commandline to this process).
The `GApplicationCommandLine` object can provide the @argc and @argv
parameters for use with the [struct@GLib.OptionContext] command-line parsing API,
with the [method@Gio.ApplicationCommandLine.get_arguments] function. See
[gapplication-example-cmdline3.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline3.c)
for an example.
The exit status of the originally-invoked process may be set and
messages can be printed to stdout or stderr of that process.
For remote invocation, the originally-invoked process exits when
[method@Gio.ApplicationCommandLine.done] method is called. This method is
also automatically called when the object is disposed.
The main use for `GApplicationCommandLine` (and the
[signal@Gio.Application::command-line] signal) is 'Emacs server' like use cases:
You can set the `EDITOR` environment variable to have e.g. git use
your favourite editor to edit commit messages, and if you already
have an instance of the editor running, the editing will happen
in the running instance, instead of opening a new one. An important
aspect of this use case is that the process that gets started by git
does not return until the editing is done.
Normally, the commandline is completely handled in the
[signal@Gio.Application::command-line] handler. The launching instance exits
once the signal handler in the primary instance has returned, and
the return value of the signal handler becomes the exit status
of the launching instance.
```c
static int
command_line (GApplication *application,
GApplicationCommandLine *cmdline)
{
gchar **argv;
gint argc;
gint i;
argv = g_application_command_line_get_arguments (cmdline, &argc);
g_application_command_line_print (cmdline,
"This text is written back\n"
"to stdout of the caller\n");
for (i = 0; i < argc; i++)
g_print ("argument %d: %s\n", i, argv[i]);
g_strfreev (argv);
return 0;
}
```
The complete example can be found here:
[gapplication-example-cmdline.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline.c)
In more complicated cases, the handling of the commandline can be
split between the launcher and the primary instance.
```c
static gboolean
test_local_cmdline (GApplication *application,
gchar ***arguments,
gint *exit_status)
{
gint i, j;
gchar **argv;
argv = *arguments;
if (argv[0] == NULL)
{
*exit_status = 0;
return FALSE;
}
i = 1;
while (argv[i])
{
if (g_str_has_prefix (argv[i], "--local-"))
{
g_print ("handling argument %s locally\n", argv[i]);
g_free (argv[i]);
for (j = i; argv[j]; j++)
argv[j] = argv[j + 1];
}
else
{
g_print ("not handling argument %s locally\n", argv[i]);
i++;
}
}
*exit_status = 0;
return FALSE;
}
static void
test_application_class_init (TestApplicationClass *class)
{
G_APPLICATION_CLASS (class)->local_command_line = test_local_cmdline;
...
}
```
In this example of split commandline handling, options that start
with `--local-` are handled locally, all other options are passed
to the [signal@Gio.Application::command-line] handler which runs in the primary
instance.
The complete example can be found here:
[gapplication-example-cmdline2.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline2.c)
If handling the commandline requires a lot of work, it may be better to defer it.
```c
static gboolean
my_cmdline_handler (gpointer data)
{
GApplicationCommandLine *cmdline = data;
// do the heavy lifting in an idle
g_application_command_line_set_exit_status (cmdline, 0);
g_object_unref (cmdline); // this releases the application
return G_SOURCE_REMOVE;
}
static int
command_line (GApplication *application,
GApplicationCommandLine *cmdline)
{
// keep the application running until we are done with this commandline
g_application_hold (application);
g_object_set_data_full (G_OBJECT (cmdline),
"application", application,
(GDestroyNotify)g_application_release);
g_object_ref (cmdline);
g_idle_add (my_cmdline_handler, cmdline);
return 0;
}
```
In this example the commandline is not completely handled before
the [signal@Gio.Application::command-line] handler returns. Instead, we keep
a reference to the `GApplicationCommandLine` object and handle it
later (in this example, in an idle). Note that it is necessary to
hold the application until you are done with the commandline.
The complete example can be found here:
[gapplication-example-cmdline3.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline3.c)
an application.
It is created by [class@Gio.Application] and emitted
in the [signal@Gio.Application::command-line] signal and virtual function.
The class contains the list of arguments that the program was invoked
with. It is also possible to query if the commandline invocation was
local (ie: the current process is running in direct response to the
invocation) or remote (ie: some other process forwarded the
commandline to this process).
The `GApplicationCommandLine` object can provide the @argc and @argv
parameters for use with the [struct@GLib.OptionContext] command-line parsing API,
with the [method@Gio.ApplicationCommandLine.get_arguments] function. See
[gapplication-example-cmdline3.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline3.c)
for an example.
The exit status of the originally-invoked process may be set and
messages can be printed to stdout or stderr of that process.
For remote invocation, the originally-invoked process exits when
[method@Gio.ApplicationCommandLine.done] method is called. This method is
also automatically called when the object is disposed.
The main use for `GApplicationCommandLine` (and the
[signal@Gio.Application::command-line] signal) is 'Emacs server' like use cases:
You can set the `EDITOR` environment variable to have e.g. git use
your favourite editor to edit commit messages, and if you already
have an instance of the editor running, the editing will happen
in the running instance, instead of opening a new one. An important
aspect of this use case is that the process that gets started by git
does not return until the editing is done.
Normally, the commandline is completely handled in the
[signal@Gio.Application::command-line] handler. The launching instance exits
once the signal handler in the primary instance has returned, and
the return value of the signal handler becomes the exit status
of the launching instance.
```c
static int
command_line (GApplication *application,
GApplicationCommandLine *cmdline)
{
gchar **argv;
gint argc;
gint i;
argv = g_application_command_line_get_arguments (cmdline, &argc);
g_application_command_line_print (cmdline,
"This text is written back\n"
"to stdout of the caller\n");
for (i = 0; i < argc; i++)
g_print ("argument %d: %s\n", i, argv[i]);
g_strfreev (argv);
return 0;
}
```
The complete example can be found here:
[gapplication-example-cmdline.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline.c)
In more complicated cases, the handling of the commandline can be
split between the launcher and the primary instance.
```c
static gboolean
test_local_cmdline (GApplication *application,
gchar ***arguments,
gint *exit_status)
{
gint i, j;
gchar **argv;
argv = *arguments;
if (argv[0] == NULL)
{
*exit_status = 0;
return FALSE;
}
i = 1;
while (argv[i])
{
if (g_str_has_prefix (argv[i], "--local-"))
{
g_print ("handling argument %s locally\n", argv[i]);
g_free (argv[i]);
for (j = i; argv[j]; j++)
argv[j] = argv[j + 1];
}
else
{
g_print ("not handling argument %s locally\n", argv[i]);
i++;
}
}
*exit_status = 0;
return FALSE;
}
static void
test_application_class_init (TestApplicationClass *class)
{
G_APPLICATION_CLASS (class)->local_command_line = test_local_cmdline;
...
}
```
In this example of split commandline handling, options that start
with `--local-` are handled locally, all other options are passed
to the [signal@Gio.Application::command-line] handler which runs in the primary
instance.
The complete example can be found here:
[gapplication-example-cmdline2.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline2.c)
If handling the commandline requires a lot of work, it may be better to defer it.
```c
static gboolean
my_cmdline_handler (gpointer data)
{
GApplicationCommandLine *cmdline = data;
// do the heavy lifting in an idle
g_application_command_line_set_exit_status (cmdline, 0);
g_object_unref (cmdline); // this releases the application
return G_SOURCE_REMOVE;
}
static int
command_line (GApplication *application,
GApplicationCommandLine *cmdline)
{
// keep the application running until we are done with this commandline
g_application_hold (application);
g_object_set_data_full (G_OBJECT (cmdline),
"application", application,
(GDestroyNotify)g_application_release);
g_object_ref (cmdline);
g_idle_add (my_cmdline_handler, cmdline);
return 0;
}
```
In this example the commandline is not completely handled before
the [signal@Gio.Application::command-line] handler returns. Instead, we keep
a reference to the `GApplicationCommandLine` object and handle it
later (in this example, in an idle). Note that it is necessary to
hold the application until you are done with the commandline.
The complete example can be found here:
[gapplication-example-cmdline3.c](https://gitlab.gnome.org/GNOME/glib/-/blob/HEAD/gio/tests/gapplication-example-cmdline3.c)
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen ch.bailu.gtk.gobject.Object
Object.OnBindingTransformFunc, Object.OnDestroyNotify, Object.OnDuplicateFunc, Object.OnNotify, Object.OnToggleNotify, Object.OnWeakNotify
-
Feldübersicht
Von Klasse geerbte Felder ch.bailu.gtk.gobject.Object
SIGNAL_ON_NOTIFY
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungcreateFileForArg
(Str arg) Creates a #GFile corresponding to a filename that was given as part
of the invocation of @cmdline.createFileForArg
(String arg) Creates a #GFile corresponding to a filename that was given as part
of the invocation of @cmdline.void
done()
Signals that command line processing is completed.static ClassHandler
getCwd()
Gets the working directory of the command line invocation.Gets the value of a particular environment variable of the command
line invocation, as would be returned by g_getenv().Gets the value of a particular environment variable of the command
line invocation, as would be returned by g_getenv().int
Gets the exit status of @cmdline.static int
boolean
Determines if @cmdline represents a remote invocation.Gets the options that were passed to g_application_command_line().static long
static TypeSystem.TypeSize
Gets the platform data associated with the invocation of @cmdline.getStdin()
Gets the stdin of the invoking process.static long
static TypeSystem.TypeSize
void
Formats a message and prints it using the stdout print handler in the
invoking process.void
Formats a message and prints it using the stdout print handler in the
invoking process.void
Formats a message and prints it using the stderr print handler in the
invoking process.void
Formats a message and prints it using the stderr print handler in the
invoking process.void
printerrLiteral
(Str message) Prints a message using the stderr print handler in the invoking process.void
printerrLiteral
(String message) Prints a message using the stderr print handler in the invoking process.void
printLiteral
(Str message) Prints a message using the stdout print handler in the invoking process.void
printLiteral
(String message) Prints a message using the stdout print handler in the invoking process.void
setExitStatus
(int exit_status) Sets the exit status that will be used when the invoking process
exits.Von Klasse geerbte Methoden ch.bailu.gtk.type.PropertyHolder
getBooleanProperty, getIntProperty, getObjectProperty, getStringProperty, getStrProperty, setBooleanProperty, setIntProperty, setObjectProperty, setStringProperty, setStrProperty
Von Klasse geerbte Methoden ch.bailu.gtk.gobject.Object
addToggleRef, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, disconnect, disconnect, dupData, dupData, dupQdata, forceFloating, freezeNotify, get, get, getData, getData, getProperty, getProperty, getQdata, interfaceFindProperty, interfaceInstallProperty, isFloating, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, replaceData, replaceData, replaceQdata, runDispose, set, set, setData, setData, setDataFull, setDataFull, setProperty, setProperty, setQdata, setQdataFull, stealData, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref
Von Klasse geerbte Methoden ch.bailu.gtk.type.Pointer
asCPointer, cast, connectSignal, disconnectSignals, disconnectSignals, equals, hashCode, throwIfNull, throwNullPointerException, toString, unregisterCallbacks, unregisterCallbacks
Von Klasse geerbte Methoden ch.bailu.gtk.type.Type
asCPointer, asCPointer, asCPointerNotNull, asJnaPointer, asJnaPointer, asPointer, asPointer, cast, cast, throwIfNull
Von Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.bailu.gtk.type.PointerInterface
asCPointerNotNull, asJnaPointer, asPointer, isNotNull, isNull
-
Konstruktordetails
-
Methodendetails
-
getClassHandler
-
createFileForArg
Creates a #GFile corresponding to a filename that was given as part
of the invocation of @cmdline.
This differs from g_file_new_for_commandline_arg() in that it
resolves relative pathnames using the current working directory of
the invoking process rather than the local process.- Parameter:
arg
- an argument from @cmdline- Gibt zurück:
- a new #GFile
-
createFileForArg
Creates a #GFile corresponding to a filename that was given as part
of the invocation of @cmdline.
This differs from g_file_new_for_commandline_arg() in that it
resolves relative pathnames using the current working directory of
the invoking process rather than the local process.- Parameter:
arg
- an argument from @cmdline- Gibt zurück:
- a new #GFile
-
done
public void done()Signals that command line processing is completed.
For remote invocation, it causes the invoking process to terminate.
For local invocation, it does nothing.
This method should be called in the [signal@Gio.Application::command-line]
handler, after the exit status is set and all messages are printed.
After this call, g_application_command_line_set_exit_status() has no effect.
Subsequent calls to this method are no-ops.
This method is automatically called when the #GApplicationCommandLine
object is disposed — so you can omit the call in non-garbage collected
languages. -
getCwd
Gets the working directory of the command line invocation.
The string may contain non-utf8 data.
It is possible that the remote application did not send a working
directory, so this may be %NULL.
The return value should not be modified or freed and is valid for as
long as @cmdline exists.- Gibt zurück:
- the current directory, or %NULL
-
getExitStatus
public int getExitStatus()Gets the exit status of @cmdline. See
g_application_command_line_set_exit_status() for more information.- Gibt zurück:
- the exit status
-
getIsRemote
public boolean getIsRemote()Determines if @cmdline represents a remote invocation.- Gibt zurück:
- %TRUE if the invocation was remote
-
getOptionsDict
Gets the options that were passed to g_application_command_line().
If you did not override local_command_line() then these are the same
options that were parsed according to the #GOptionEntrys added to the
application with g_application_add_main_option_entries() and possibly
modified from your GApplication::handle-local-options handler.
If no options were sent then an empty dictionary is returned so that
you don't need to check for %NULL.
The data has been passed via an untrusted external process, so the types of
all values must be checked before being used.- Gibt zurück:
- a #GVariantDict with the options
-
getPlatformData
Gets the platform data associated with the invocation of @cmdline.
This is a #GVariant dictionary containing information about the
context in which the invocation occurred. It typically contains
information like the current working directory and the startup
notification ID.
It comes from an untrusted external process and hence the types of all
values must be validated before being used.
For local invocation, it will be %NULL.- Gibt zurück:
- the platform data, or %NULL
-
getStdin
Gets the stdin of the invoking process.
The #GInputStream can be used to read data passed to the standard
input of the invoking process.
This doesn't work on all platforms. Presently, it is only available
on UNIX when using a D-Bus daemon capable of passing file descriptors.
If stdin is not available then %NULL will be returned. In the
future, support may be expanded to other platforms.
You must only call this function once per commandline invocation.- Gibt zurück:
- a #GInputStream for stdin
-
getenv
Gets the value of a particular environment variable of the command
line invocation, as would be returned by g_getenv(). The strings may
contain non-utf8 data.
The remote application usually does not send an environment. Use
%G_APPLICATION_SEND_ENVIRONMENT to affect that. Even with this flag
set it is possible that the environment is still not available (due
to invocation messages from other applications).
The return value should not be modified or freed and is valid for as
long as @cmdline exists.- Parameter:
name
- the environment variable to get- Gibt zurück:
- the value of the variable, or %NULL if unset or unsent
-
getenv
Gets the value of a particular environment variable of the command
line invocation, as would be returned by g_getenv(). The strings may
contain non-utf8 data.
The remote application usually does not send an environment. Use
%G_APPLICATION_SEND_ENVIRONMENT to affect that. Even with this flag
set it is possible that the environment is still not available (due
to invocation messages from other applications).
The return value should not be modified or freed and is valid for as
long as @cmdline exists.- Parameter:
name
- the environment variable to get- Gibt zurück:
- the value of the variable, or %NULL if unset or unsent
-
print
Formats a message and prints it using the stdout print handler in the
invoking process.
If @cmdline is a local invocation then this is exactly equivalent to
g_print(). If @cmdline is remote then this is equivalent to calling
g_print() in the invoking process.- Parameter:
format
- a printf-style format string_ellipsis
- arguments, as per @format
-
print
Formats a message and prints it using the stdout print handler in the
invoking process.
If @cmdline is a local invocation then this is exactly equivalent to
g_print(). If @cmdline is remote then this is equivalent to calling
g_print() in the invoking process.- Parameter:
format
- a printf-style format string_ellipsis
- arguments, as per @format
-
printLiteral
Prints a message using the stdout print handler in the invoking process.
Unlike g_application_command_line_print(), @message is not a `printf()`-style
format string. Use this function if @message contains text you don't have
control over, that could include `printf()` escape sequences.- Parameter:
message
- the message
-
printLiteral
Prints a message using the stdout print handler in the invoking process.
Unlike g_application_command_line_print(), @message is not a `printf()`-style
format string. Use this function if @message contains text you don't have
control over, that could include `printf()` escape sequences.- Parameter:
message
- the message
-
printerr
Formats a message and prints it using the stderr print handler in the
invoking process.
If @cmdline is a local invocation then this is exactly equivalent to
g_printerr(). If @cmdline is remote then this is equivalent to
calling g_printerr() in the invoking process.- Parameter:
format
- a printf-style format string_ellipsis
- arguments, as per @format
-
printerr
Formats a message and prints it using the stderr print handler in the
invoking process.
If @cmdline is a local invocation then this is exactly equivalent to
g_printerr(). If @cmdline is remote then this is equivalent to
calling g_printerr() in the invoking process.- Parameter:
format
- a printf-style format string_ellipsis
- arguments, as per @format
-
printerrLiteral
Prints a message using the stderr print handler in the invoking process.
Unlike g_application_command_line_printerr(), @message is not
a `printf()`-style format string. Use this function if @message contains text
you don't have control over, that could include `printf()` escape sequences.- Parameter:
message
- the message
-
printerrLiteral
Prints a message using the stderr print handler in the invoking process.
Unlike g_application_command_line_printerr(), @message is not
a `printf()`-style format string. Use this function if @message contains text
you don't have control over, that could include `printf()` escape sequences.- Parameter:
message
- the message
-
setExitStatus
public void setExitStatus(int exit_status) Sets the exit status that will be used when the invoking process
exits.
The return value of the #GApplication::command-line signal is
passed to this function when the handler returns. This is the usual
way of setting the exit status.
In the event that you want the remote invocation to continue running
and want to decide on the exit status in the future, you can use this
call. For the case of a remote invocation, the remote process will
typically exit when the last reference is dropped on @cmdline. The
exit status of the remote process will be equal to the last value
that was set with this function.
In the case that the commandline invocation is local, the situation
is slightly more complicated. If the commandline invocation results
in the mainloop running (ie: because the use-count of the application
increased to a non-zero value) then the application is considered to
have been 'successful' in a certain sense, and the exit status is
always zero. If the application use count is zero, though, the exit
status of the local #GApplicationCommandLine is used.
This method is a no-op if g_application_command_line_done() has
been called.- Parameter:
exit_status
- the exit status
-
getTypeID
public static long getTypeID() -
getParentTypeID
public static long getParentTypeID() -
getTypeSize
-
getParentTypeSize
-
getInstanceSize
public static int getInstanceSize()
-