]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - liblightdm-gobject/session.c
Refactored code to replace hardcoded signal identification strings by constants.
[sojka/lightdm.git] / liblightdm-gobject / session.c
1 /*
2  * Copyright (C) 2010 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  *
5  * This library is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Lesser General Public License as published by the Free
7  * Software Foundation; either version 2 or version 3 of the License.
8  * See http://www.gnu.org/copyleft/lgpl.html the full text of the license.
9  */
10
11 #include <string.h>
12 #include <gio/gdesktopappinfo.h>
13
14 #include "configuration.h"
15 #include "lightdm/session.h"
16
17 enum {
18     PROP_0,
19     PROP_KEY,
20     PROP_NAME,
21     PROP_COMMENT
22 };
23
24 typedef struct
25 {
26     gchar *key;
27     gchar *type;
28     gchar *name;
29     gchar *comment;
30 } LightDMSessionPrivate;
31
32 G_DEFINE_TYPE (LightDMSession, lightdm_session, G_TYPE_OBJECT);
33
34 #define GET_PRIVATE(obj) G_TYPE_INSTANCE_GET_PRIVATE ((obj), LIGHTDM_TYPE_SESSION, LightDMSessionPrivate)
35
36 static gboolean have_sessions = FALSE;
37 static GList *local_sessions = NULL;
38 static GList *remote_sessions = NULL;
39
40 static gint
41 compare_session (gconstpointer a, gconstpointer b)
42 {
43     LightDMSessionPrivate *priv_a = GET_PRIVATE (a);
44     LightDMSessionPrivate *priv_b = GET_PRIVATE (b);
45     return strcmp (priv_a->name, priv_b->name);
46 }
47
48 static LightDMSession *
49 load_session (GKeyFile *key_file, const gchar *key)
50 {
51     gchar *type, *domain, *name;
52     LightDMSession *session;
53     LightDMSessionPrivate *priv;
54     gchar *try_exec;
55
56     if (g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, NULL) ||
57         g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_HIDDEN, NULL))
58         return NULL;
59
60     type = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-Session-Type", NULL);
61     if (!type)
62         type = "x";
63
64 #ifdef G_KEY_FILE_DESKTOP_KEY_GETTEXT_DOMAIN
65     domain = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_GETTEXT_DOMAIN, NULL);
66 #else
67     domain = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-GNOME-Gettext-Domain", NULL);
68 #endif
69     name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, domain, NULL);
70     if (!name)
71     {
72         g_warning ("Ignoring session without name");
73         g_free (domain);
74         return NULL;
75     }
76
77     try_exec = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_TRY_EXEC, domain, NULL);
78     if (try_exec)
79     {
80         gchar *full_path;
81
82         full_path = g_find_program_in_path (try_exec);
83         g_free (try_exec);
84
85         if (!full_path)
86         {
87             g_free (name);
88             g_free (domain);
89             return NULL;
90         }
91         g_free (full_path);
92     }
93
94     session = g_object_new (LIGHTDM_TYPE_SESSION, NULL);
95     priv = GET_PRIVATE (session);
96
97     g_free (priv->key);
98     priv->key = g_strdup (key);
99
100     g_free (priv->type);
101     priv->type = g_strdup (type);
102
103     g_free (priv->name);
104     priv->name = name;
105
106     g_free (priv->comment);
107     priv->comment = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_COMMENT, domain, NULL);
108     if (!priv->comment)
109         priv->comment = g_strdup ("");
110
111     g_free (domain);
112
113     return session;
114 }
115
116 static GList *
117 load_sessions_dir (GList *sessions, const gchar *sessions_dir)
118 {
119     GDir *directory;
120     GError *error = NULL;
121
122     directory = g_dir_open (sessions_dir, 0, &error);
123     if (error && !g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
124         g_warning ("Failed to open sessions directory: %s", error->message);
125     g_clear_error (&error);
126     if (!directory)
127         return sessions;
128
129     while (TRUE)
130     {
131         const gchar *filename;
132         gchar *path;
133         GKeyFile *key_file;
134         gboolean result;
135
136         filename = g_dir_read_name (directory);
137         if (filename == NULL)
138             break;
139
140         if (!g_str_has_suffix (filename, ".desktop"))
141             continue;
142
143         path = g_build_filename (sessions_dir, filename, NULL);
144
145         key_file = g_key_file_new ();
146         result = g_key_file_load_from_file (key_file, path, G_KEY_FILE_NONE, &error);
147         if (error)
148             g_warning ("Failed to load session file %s: %s:", path, error->message);
149         g_clear_error (&error);
150
151         if (result)
152         {
153             gchar *key;
154             LightDMSession *session;
155
156             key = g_strndup (filename, strlen (filename) - strlen (".desktop"));
157             session = load_session (key_file, key);
158             if (session)
159             {
160                 g_debug ("Loaded session %s (%s, %s)", path, GET_PRIVATE (session)->name, GET_PRIVATE (session)->comment);
161                 sessions = g_list_insert_sorted (sessions, session, compare_session);
162             }
163             else
164                 g_debug ("Ignoring session %s", path);
165             g_free (key);
166         }
167
168         g_free (path);
169         g_key_file_free (key_file);
170     }
171
172     g_dir_close (directory);
173
174     return sessions;
175 }
176
177 static GList *
178 load_sessions (const gchar *sessions_dir)
179 {
180     GList *sessions = NULL;
181     gchar **dirs;
182     int i;
183
184     dirs = g_strsplit (sessions_dir, ":", -1);
185     for (i = 0; dirs[i]; i++)
186         sessions = load_sessions_dir (sessions, dirs[i]);
187     g_strfreev (dirs);
188
189     return sessions;
190 }
191
192 static void
193 update_sessions (void)
194 {
195     gchar *sessions_dir;
196     gchar *remote_sessions_dir;
197     gchar *value;
198
199     if (have_sessions)
200         return;
201
202     sessions_dir = g_strdup (SESSIONS_DIR);
203     remote_sessions_dir = g_strdup (REMOTE_SESSIONS_DIR);
204
205     /* Use session directory from configuration */
206     config_load_from_standard_locations (config_get_instance (), NULL, NULL);
207
208     value = config_get_string (config_get_instance (), "LightDM", "sessions-directory");
209     if (value)
210     {
211         g_free (sessions_dir);
212         sessions_dir = value;
213     }
214
215     value = config_get_string (config_get_instance (), "LightDM", "remote-sessions-directory");
216     if (value)
217     {
218         g_free (remote_sessions_dir);
219         remote_sessions_dir = value;
220     }
221
222     local_sessions = load_sessions (sessions_dir);
223     remote_sessions = load_sessions (remote_sessions_dir);
224
225     g_free (sessions_dir);
226     g_free (remote_sessions_dir);
227
228     have_sessions = TRUE;
229 }
230
231 /**
232  * lightdm_get_sessions:
233  *
234  * Get the available sessions.
235  *
236  * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession
237  **/
238 GList *
239 lightdm_get_sessions (void)
240 {
241     update_sessions ();
242     return local_sessions;
243 }
244
245 /**
246  * lightdm_get_remote_sessions:
247  *
248  * Get the available remote sessions.
249  *
250  * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession
251  **/
252 GList *
253 lightdm_get_remote_sessions (void)
254 {
255     update_sessions ();
256     return remote_sessions;
257 }
258
259 /**
260  * lightdm_session_get_key:
261  * @session: A #LightDMSession
262  *
263  * Get the key for a session
264  *
265  * Return value: The session key
266  **/
267 const gchar *
268 lightdm_session_get_key (LightDMSession *session)
269 {
270     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
271     return GET_PRIVATE (session)->key;
272 }
273
274 /**
275  * lightdm_session_get_session_type:
276  * @session: A #LightDMSession
277  *
278  * Get the type a session
279  *
280  * Return value: The session type, e.g. x or mir
281  **/
282 const gchar *
283 lightdm_session_get_session_type (LightDMSession *session)
284 {
285     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
286     return GET_PRIVATE (session)->type;
287 }
288
289 /**
290  * lightdm_session_get_name:
291  * @session: A #LightDMSession
292  *
293  * Get the name for a session
294  *
295  * Return value: The session name
296  **/
297 const gchar *
298 lightdm_session_get_name (LightDMSession *session)
299 {
300     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
301     return GET_PRIVATE (session)->name;
302 }
303
304 /**
305  * lightdm_session_get_comment:
306  * @session: A #LightDMSession
307  *
308  * Get the comment for a session
309  *
310  * Return value: The session comment
311  **/
312 const gchar *
313 lightdm_session_get_comment (LightDMSession *session)
314 {
315     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
316     return GET_PRIVATE (session)->comment;
317 }
318
319 static void
320 lightdm_session_init (LightDMSession *session)
321 {
322 }
323
324 static void
325 lightdm_session_set_property (GObject      *object,
326                           guint         prop_id,
327                           const GValue *value,
328                           GParamSpec   *pspec)
329 {
330     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
331 }
332
333 static void
334 lightdm_session_get_property (GObject    *object,
335                           guint       prop_id,
336                           GValue     *value,
337                           GParamSpec *pspec)
338 {
339     LightDMSession *self;
340
341     self = LIGHTDM_SESSION (object);
342
343     switch (prop_id) {
344     case PROP_KEY:
345         g_value_set_string (value, lightdm_session_get_key (self));
346         break;
347     case PROP_NAME:
348         g_value_set_string (value, lightdm_session_get_name (self));
349         break;
350     case PROP_COMMENT:
351         g_value_set_string (value, lightdm_session_get_comment (self));
352         break;
353     default:
354         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
355         break;
356     }
357 }
358
359 static void
360 lightdm_session_finalize (GObject *object)
361 {
362     LightDMSession *self = LIGHTDM_SESSION (object);
363     LightDMSessionPrivate *priv = GET_PRIVATE (self);
364
365     g_free (priv->key);
366     g_free (priv->type);
367     g_free (priv->name);
368     g_free (priv->comment);
369 }
370
371 static void
372 lightdm_session_class_init (LightDMSessionClass *klass)
373 {
374     GObjectClass *object_class = G_OBJECT_CLASS (klass);
375
376     g_type_class_add_private (klass, sizeof (LightDMSessionPrivate));
377
378     object_class->set_property = lightdm_session_set_property;
379     object_class->get_property = lightdm_session_get_property;
380     object_class->finalize = lightdm_session_finalize;
381
382     g_object_class_install_property (object_class,
383                                      PROP_KEY,
384                                      g_param_spec_string ("key",
385                                                           "key",
386                                                           "Session key",
387                                                           NULL,
388                                                           G_PARAM_READABLE));
389     g_object_class_install_property (object_class,
390                                      PROP_NAME,
391                                      g_param_spec_string ("name",
392                                                           "name",
393                                                           "Session name",
394                                                           NULL,
395                                                           G_PARAM_READABLE));
396     g_object_class_install_property (object_class,
397                                      PROP_COMMENT,
398                                      g_param_spec_string ("comment",
399                                                           "comment",
400                                                           "Session comment",
401                                                           NULL,
402                                                           G_PARAM_READABLE));
403 }