]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/process.h
Implement XDMCP ForwardQuery
[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 #include "log-file.h"
18
19 G_BEGIN_DECLS
20
21 #define PROCESS_TYPE (process_get_type())
22 #define PROCESS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PROCESS_TYPE, ProcessClass))
23 #define PROCESS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PROCESS_TYPE, Process))
24 #define PROCESS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PROCESS_TYPE, ProcessClass))
25
26 #define PROCESS_SIGNAL_GOT_DATA   "got-data"
27 #define PROCESS_SIGNAL_GOT_SIGNAL "got-signal"
28 #define PROCESS_SIGNAL_STOPPED    "stopped"
29
30 typedef struct ProcessPrivate ProcessPrivate;
31
32 typedef struct
33 {
34     GObject              parent_instance;
35     ProcessPrivate *priv;
36 } Process;
37
38 typedef struct
39 {
40     GObjectClass parent_class;
41     void (*got_data)(Process *process);
42     void (*got_signal)(Process *process, int signum);
43     void (*stopped)(Process *process);
44 } ProcessClass;
45
46 typedef void (*ProcessRunFunc)(Process *process, gpointer user_data);
47
48 GType process_get_type (void);
49
50 Process *process_get_current (void);
51
52 Process *process_new (ProcessRunFunc run_func, gpointer run_func_data);
53
54 void process_set_log_file (Process *process, const gchar *path, gboolean log_stdout, LogMode log_mode);
55
56 void process_set_clear_environment (Process *process, gboolean clear_environment);
57
58 gboolean process_get_clear_environment (Process *process);
59
60 void process_set_env (Process *process, const gchar *name, const gchar *value);
61
62 const gchar *process_get_env (Process *process, const gchar *name);
63
64 void process_set_command (Process *process, const gchar *command);
65
66 const gchar *process_get_command (Process *process);
67
68 gboolean process_start (Process *process, gboolean block);
69
70 gboolean process_get_is_running (Process *process);
71
72 GPid process_get_pid (Process *process);
73
74 void process_signal (Process *process, int signum);
75
76 void process_stop (Process *process);
77
78 int process_get_exit_status (Process *process);
79
80 G_END_DECLS
81
82 #endif /* PROCESS_H_ */