1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2007 Novell, Inc.
* Copyright (C) 2008 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifndef __GSM_APP_H__
#define __GSM_APP_H__
#include <glib-object.h>
#include <sys/types.h>
#include "eggdesktopfile.h"
#include "gsm-manager.h"
#include "gsm-client.h"
G_BEGIN_DECLS
#define GSM_TYPE_APP (gsm_app_get_type ())
G_DECLARE_DERIVABLE_TYPE (GsmApp, gsm_app, GSM, APP, GObject)
struct _GsmAppClass
{
GObjectClass parent_class;
/* signals */
void (*exited) (GsmApp *app);
void (*died) (GsmApp *app);
void (*registered) (GsmApp *app);
/* virtual methods */
gboolean (*impl_start) (GsmApp *app,
GError **error);
gboolean (*impl_restart) (GsmApp *app,
GError **error);
gboolean (*impl_stop) (GsmApp *app,
GError **error);
int (*impl_peek_autostart_delay) (GsmApp *app);
gboolean (*impl_provides) (GsmApp *app,
const char *service);
gboolean (*impl_has_autostart_condition) (GsmApp *app,
const char *service);
gboolean (*impl_is_running) (GsmApp *app);
gboolean (*impl_get_autorestart) (GsmApp *app);
const char *(*impl_get_app_id) (GsmApp *app);
gboolean (*impl_is_disabled) (GsmApp *app);
gboolean (*impl_is_conditionally_disabled) (GsmApp *app);
};
typedef enum
{
GSM_APP_ERROR_GENERAL = 0,
GSM_APP_ERROR_START,
GSM_APP_ERROR_STOP,
GSM_APP_NUM_ERRORS
} GsmAppError;
#define GSM_APP_ERROR gsm_app_error_quark ()
GQuark gsm_app_error_quark (void);
gboolean gsm_app_peek_autorestart (GsmApp *app);
const char *gsm_app_peek_id (GsmApp *app);
const char *gsm_app_peek_app_id (GsmApp *app);
const char *gsm_app_peek_startup_id (GsmApp *app);
GsmManagerPhase gsm_app_peek_phase (GsmApp *app);
gboolean gsm_app_peek_is_disabled (GsmApp *app);
gboolean gsm_app_peek_is_conditionally_disabled (GsmApp *app);
gboolean gsm_app_start (GsmApp *app,
GError **error);
gboolean gsm_app_restart (GsmApp *app,
GError **error);
gboolean gsm_app_stop (GsmApp *app,
GError **error);
gboolean gsm_app_is_running (GsmApp *app);
void gsm_app_exited (GsmApp *app);
void gsm_app_died (GsmApp *app);
gboolean gsm_app_provides (GsmApp *app,
const char *service);
gboolean gsm_app_has_autostart_condition (GsmApp *app,
const char *condition);
void gsm_app_registered (GsmApp *app);
int gsm_app_peek_autostart_delay (GsmApp *app);
/* exported to bus */
gboolean gsm_app_get_app_id (GsmApp *app,
char **id,
GError **error);
gboolean gsm_app_get_startup_id (GsmApp *app,
char **id,
GError **error);
gboolean gsm_app_get_phase (GsmApp *app,
guint *phase,
GError **error);
G_END_DECLS
#endif /* __GSM_APP_H__ */
|