]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - liblightdm-gobject/session.c
Merge from trunk
[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 *config_path = NULL;
196     gchar *sessions_dir;
197     gchar *remote_sessions_dir;
198     gboolean result;
199     GError *error = NULL;
200
201     if (have_sessions)
202         return;
203
204     sessions_dir = g_strdup (SESSIONS_DIR);
205     remote_sessions_dir = g_strdup (REMOTE_SESSIONS_DIR);
206
207     /* Use session directory from configuration */
208     /* FIXME: This should be sent in the greeter connection */
209     config_path = g_build_filename (CONFIG_DIR, "lightdm.conf", NULL);
210     /* FIXME: This should load from lightdm.conf.d as well */
211     result = config_load_from_file (config_get_instance (), config_path, &error);
212     if (error && !g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
213         g_warning ("Failed to open configuration file: %s", error->message);
214     g_clear_error (&error);
215     if (result)
216     {
217         gchar *value;
218       
219         value = config_get_string (config_get_instance (), "LightDM", "sessions-directory");
220         if (value)
221         {
222             g_free (sessions_dir);
223             sessions_dir = value;
224         }
225
226         value = config_get_string (config_get_instance (), "LightDM", "remote-sessions-directory");
227         if (value)
228         {
229             g_free (remote_sessions_dir);
230             remote_sessions_dir = value;
231         }
232     }
233     g_free (config_path);
234
235     local_sessions = load_sessions (sessions_dir);
236     remote_sessions = load_sessions (remote_sessions_dir);
237
238     g_free (sessions_dir);
239     g_free (remote_sessions_dir);
240
241     have_sessions = TRUE;
242 }
243
244 /**
245  * lightdm_get_sessions:
246  *
247  * Get the available sessions.
248  *
249  * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession
250  **/
251 GList *
252 lightdm_get_sessions (void)
253 {
254     update_sessions ();
255     return local_sessions;
256 }
257
258 /**
259  * lightdm_get_remote_sessions:
260  *
261  * Get the available remote sessions.
262  *
263  * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession
264  **/
265 GList *
266 lightdm_get_remote_sessions (void)
267 {
268     update_sessions ();
269     return remote_sessions;
270 }
271
272 /**
273  * lightdm_session_get_key:
274  * @session: A #LightDMSession
275  * 
276  * Get the key for a session
277  * 
278  * Return value: The session key
279  **/
280 const gchar *
281 lightdm_session_get_key (LightDMSession *session)
282 {
283     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
284     return GET_PRIVATE (session)->key;
285 }
286
287 /**
288  * lightdm_session_get_session_type:
289  * @session: A #LightDMSession
290  * 
291  * Get the type a session
292  * 
293  * Return value: The session type, e.g. x or mir
294  **/
295 const gchar *
296 lightdm_session_get_session_type (LightDMSession *session)
297 {
298     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
299     return GET_PRIVATE (session)->type;
300 }
301
302 /**
303  * lightdm_session_get_name:
304  * @session: A #LightDMSession
305  * 
306  * Get the name for a session
307  * 
308  * Return value: The session name
309  **/
310 const gchar *
311 lightdm_session_get_name (LightDMSession *session)
312 {
313     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
314     return GET_PRIVATE (session)->name;
315 }
316
317 /**
318  * lightdm_session_get_comment:
319  * @session: A #LightDMSession
320  * 
321  * Get the comment for a session
322  * 
323  * Return value: The session comment
324  **/
325 const gchar *
326 lightdm_session_get_comment (LightDMSession *session)
327 {
328     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
329     return GET_PRIVATE (session)->comment;
330 }
331
332 static void
333 lightdm_session_init (LightDMSession *session)
334 {
335 }
336
337 static void
338 lightdm_session_set_property (GObject      *object,
339                           guint         prop_id,
340                           const GValue *value,
341                           GParamSpec   *pspec)
342 {
343     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
344 }
345
346 static void
347 lightdm_session_get_property (GObject    *object,
348                           guint       prop_id,
349                           GValue     *value,
350                           GParamSpec *pspec)
351 {
352     LightDMSession *self;
353
354     self = LIGHTDM_SESSION (object);
355
356     switch (prop_id) {
357     case PROP_KEY:
358         g_value_set_string (value, lightdm_session_get_key (self));
359         break;
360     case PROP_NAME:
361         g_value_set_string (value, lightdm_session_get_name (self));
362         break;
363     case PROP_COMMENT:
364         g_value_set_string (value, lightdm_session_get_comment (self));
365         break;
366     default:
367         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
368         break;
369     }
370 }
371
372 static void
373 lightdm_session_finalize (GObject *object)
374 {
375     LightDMSession *self = LIGHTDM_SESSION (object);
376     LightDMSessionPrivate *priv = GET_PRIVATE (self);
377
378     g_free (priv->key);
379     g_free (priv->type);
380     g_free (priv->name);
381     g_free (priv->comment);
382 }
383
384 static void
385 lightdm_session_class_init (LightDMSessionClass *klass)
386 {
387     GObjectClass *object_class = G_OBJECT_CLASS (klass);
388   
389     g_type_class_add_private (klass, sizeof (LightDMSessionPrivate));
390
391     object_class->set_property = lightdm_session_set_property;
392     object_class->get_property = lightdm_session_get_property;
393     object_class->finalize = lightdm_session_finalize;
394
395     g_object_class_install_property (object_class,
396                                      PROP_KEY,
397                                      g_param_spec_string ("key",
398                                                           "key",
399                                                           "Session key",
400                                                           NULL,
401                                                           G_PARAM_READABLE));
402     g_object_class_install_property (object_class,
403                                      PROP_NAME,
404                                      g_param_spec_string ("name",
405                                                           "name",
406                                                           "Session name",
407                                                           NULL,
408                                                           G_PARAM_READABLE));
409     g_object_class_install_property (object_class,
410                                      PROP_COMMENT,
411                                      g_param_spec_string ("comment",
412                                                           "comment",
413                                                           "Session comment",
414                                                           NULL,
415                                                           G_PARAM_READABLE));
416 }