]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/process.h
Refactored code to replace hardcoded signal identification strings by constants.
[sojka/lightdm.git] / src / process.h
1 /*
2  * Copyright (C) 2010-2011 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  *
5  * This program is free software: you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License as published by the Free Software
7  * Foundation, either version 3 of the License, or (at your option) any later
8  * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9  * license.
10  */
11
12 #ifndef PROCESS_H_
13 #define PROCESS_H_
14
15 #include <glib-object.h>
16
17 G_BEGIN_DECLS
18
19 #define PROCESS_TYPE (process_get_type())
20 #define PROCESS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PROCESS_TYPE, ProcessClass))
21 #define PROCESS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PROCESS_TYPE, Process))
22 #define PROCESS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PROCESS_TYPE, ProcessClass))
23
24 #define PROCESS_SIGNAL_GOT_DATA   "got-data"
25 #define PROCESS_SIGNAL_GOT_SIGNAL "got-signal"
26 #define PROCESS_SIGNAL_STOPPED    "stopped"
27
28 typedef struct ProcessPrivate ProcessPrivate;
29
30 typedef struct
31 {
32     GObject              parent_instance;
33     ProcessPrivate *priv;
34 } Process;
35
36 typedef struct
37 {
38     GObjectClass parent_class;
39     void (*got_data)(Process *process);
40     void (*got_signal)(Process *process, int signum);
41     void (*stopped)(Process *process);
42 } ProcessClass;
43
44 typedef void (*ProcessRunFunc)(Process *process, gpointer user_data);
45
46 GType process_get_type (void);
47
48 Process *process_get_current (void);
49
50 Process *process_new (ProcessRunFunc run_func, gpointer run_func_data);
51
52 void process_set_log_file (Process *process, const gchar *path, gboolean log_stdout);
53
54 void process_set_clear_environment (Process *process, gboolean clear_environment);
55
56 gboolean process_get_clear_environment (Process *process);
57
58 void process_set_env (Process *process, const gchar *name, const gchar *value);
59
60 const gchar *process_get_env (Process *process, const gchar *name);
61
62 void process_set_command (Process *process, const gchar *command);
63
64 const gchar *process_get_command (Process *process);
65
66 gboolean process_start (Process *process, gboolean block);
67
68 gboolean process_get_is_running (Process *process);
69
70 GPid process_get_pid (Process *process);
71
72 void process_signal (Process *process, int signum);
73
74 void process_stop (Process *process);
75
76 int process_get_exit_status (Process *process);
77
78 G_END_DECLS
79
80 #endif /* PROCESS_H_ */