![]() | ![]() | ![]() | Anjuta Developers Reference Manual | ![]() |
---|
AnjutaLauncher —
struct AnjutaLauncher; struct AnjutaLauncherClass; struct AnjutaLauncherPriv; enum AnjutaLauncherOutputType; void (*AnjutaLauncherOutputCallback) (AnjutaLauncher *launcher, AnjutaLauncherOutputType output_type, const gchar *chars, gpointer user_data); AnjutaLauncher* anjuta_launcher_new (void); gboolean anjuta_launcher_is_busy (AnjutaLauncher *launcher); gboolean anjuta_launcher_execute (AnjutaLauncher *launcher, const gchar *command_str, AnjutaLauncherOutputCallback callback, gpointer callback_data); gboolean anjuta_launcher_execute_v (AnjutaLauncher *launcher, gchar *const argv[], AnjutaLauncherOutputCallback callback, gpointer callback_data); gboolean anjuta_launcher_set_encoding (AnjutaLauncher *launcher, const gchar *charset); void anjuta_launcher_send_stdin (AnjutaLauncher *launcher, const gchar *input_str); void anjuta_launcher_send_ptyin (AnjutaLauncher *launcher, const gchar *input_str); gint anjuta_launcher_get_child_pid (AnjutaLauncher *launcher); void anjuta_launcher_reset (AnjutaLauncher *launcher); void anjuta_launcher_signal (AnjutaLauncher *launcher, int sig); void anjuta_launcher_set_buffered_output (AnjutaLauncher *launcher, gboolean buffered); void anjuta_launcher_set_check_passwd_prompt (AnjutaLauncher *launcher, gboolean buffered); gboolean anjuta_launcher_set_terminal_echo (AnjutaLauncher *launcher, gboolean echo_on);
"busy" void user_function (AnjutaLauncher *anjutalauncher, gboolean arg1, gpointer user_data); "child-exited" void user_function (AnjutaLauncher *anjutalauncher, gint arg1, gint arg2, gulong arg3, gpointer user_data);
struct AnjutaLauncherClass { GObjectClass parent_class; /* Signals */ void (*child_exited_signal) (AnjutaLauncher *launcher, int child_pid, int exit_status, gulong time_taken_in_seconds); void (*busy_signal) (AnjutaLauncher *launcher, gboolean busy_flag); };
typedef enum { ANJUTA_LAUNCHER_OUTPUT_STDOUT, ANJUTA_LAUNCHER_OUTPUT_STDERR, ANJUTA_LAUNCHER_OUTPUT_PTY } AnjutaLauncherOutputType;
void (*AnjutaLauncherOutputCallback) (AnjutaLauncher *launcher, AnjutaLauncherOutputType output_type, const gchar *chars, gpointer user_data);
launcher : | |
output_type : | |
chars : | |
user_data : |
AnjutaLauncher* anjuta_launcher_new (void);
Sets if input (those given in STDIN) should enabled or disabled. By default, it is disabled.
Returns : | a new instance of AnjutaLancher class. |
gboolean anjuta_launcher_is_busy (AnjutaLauncher *launcher);
Tells if the laucher is currently executing any command.
launcher : | a AnjutaLancher object. |
Returns : | TRUE if launcher is busy, otherwisee FALSE. |
gboolean anjuta_launcher_execute (AnjutaLauncher *launcher, const gchar *command_str, AnjutaLauncherOutputCallback callback, gpointer callback_data);
Executes a command in the launcher. Both outputs (STDOUT and STDERR) are delivered to the above callback. The data are delivered as they arrive from the process and could be of any lenght. If the process asks for passwords, the user will be automatically prompted with a dialog to enter it. Please note that not all formats of the password are recognized. Those with the standard 'assword:' substring in the prompt should work well.
launcher : | a AnjutaLancher object. |
command_str : | The command to execute. |
callback : | The callback for delivering output from the process. |
callback_data : | Callback data for the above callback. |
Returns : | TRUE if successfully launched, otherwise FALSE. |
gboolean anjuta_launcher_execute_v (AnjutaLauncher *launcher, gchar *const argv[], AnjutaLauncherOutputCallback callback, gpointer callback_data);
The first of the args is the command itself. The rest are sent to the as it's arguments. This function works similar to anjuta_launcher_execute().
launcher : | a AnjutaLancher object. |
argv : | Command args. |
callback : | The callback for delivering output from the process. |
callback_data : | Callback data for the above callback. |
Returns : | TRUE if successfully launched, otherwise FALSE. |
gboolean anjuta_launcher_set_encoding (AnjutaLauncher *launcher, const gchar *charset);
Sets the character set to use for Input/Output with the process.
launcher : | a AnjutaLancher object. |
charset : | Character set to use for Input/Output with the process. |
Returns : | TRUE if successful, otherwise FALSE. |
void anjuta_launcher_send_stdin (AnjutaLauncher *launcher, const gchar *input_str);
Sends a string to Standard input of the process currently being executed.
launcher : | a AnjutaLancher object. |
input_str : | The string to send to STDIN of the process. |
void anjuta_launcher_send_ptyin (AnjutaLauncher *launcher, const gchar *input_str);
Sends a string to TTY input of the process currently being executed. Mostly useful for entering passwords and other inputs which are directly read from TTY input of the process.
launcher : | a AnjutaLancher object. |
input_str : | The string to send to PTY of the process. |
gint anjuta_launcher_get_child_pid (AnjutaLauncher *launcher);
Gets the Process ID of the child being executed.
launcher : | a AnjutaLancher object. |
Returns : | Process ID of the child. |
void anjuta_launcher_reset (AnjutaLauncher *launcher);
Resets the launcher and kills (SIGTERM) current process, if it is still executing.
launcher : | a AnjutaLancher object. |
void anjuta_launcher_signal (AnjutaLauncher *launcher, int sig);
Sends a kernel signal to the process that is being executed.
launcher : | a AnjutaLancher object. |
sig : | kernel signal ID (e.g. SIGTERM). |
void anjuta_launcher_set_buffered_output (AnjutaLauncher *launcher, gboolean buffered);
launcher : | |
buffered : |
void anjuta_launcher_set_check_passwd_prompt (AnjutaLauncher *launcher, gboolean buffered);
launcher : | |
buffered : |
gboolean anjuta_launcher_set_terminal_echo (AnjutaLauncher *launcher, gboolean echo_on);
launcher : | |
echo_on : | |
Returns : |
void user_function (AnjutaLauncher *anjutalauncher, gboolean arg1, gpointer user_data);
anjutalauncher : | the object which received the signal. |
arg1 : | |
user_data : | user data set when the signal handler was connected. |
void user_function (AnjutaLauncher *anjutalauncher, gint arg1, gint arg2, gulong arg3, gpointer user_data);
anjutalauncher : | the object which received the signal. |
arg1 : | |
arg2 : | |
arg3 : | |
user_data : | user data set when the signal handler was connected. |
<< Children management | Utilities >> |