]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - liblightdm-gobject/session.c
9af02bc83fe2b863aa822c6b8c8174882f050ac5
[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, const gchar *default_type)
50 {
51     gchar *domain, *name, *type;
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 #ifdef G_KEY_FILE_DESKTOP_KEY_GETTEXT_DOMAIN
61     domain = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_GETTEXT_DOMAIN, NULL);
62 #else
63     domain = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-GNOME-Gettext-Domain", NULL);
64 #endif
65     name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, domain, NULL);
66     if (!name)
67     {
68         g_warning ("Ignoring session without name");
69         g_free (domain);
70         return NULL;
71     }
72
73     try_exec = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_TRY_EXEC, domain, NULL);
74     if (try_exec)
75     {
76         gchar *full_path;
77
78         full_path = g_find_program_in_path (try_exec);
79         g_free (try_exec);
80
81         if (!full_path)
82         {
83             g_free (name);
84             g_free (domain);
85             return NULL;
86         }
87         g_free (full_path);
88     }
89
90     type = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-Session-Type", NULL);
91     if (!type)
92         type = strdup (default_type);
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 = 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, const gchar *default_type)
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, default_type);
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     {
187         const gchar *default_type = "x";
188
189         if (strcmp (dirs[i], WAYLAND_SESSIONS_DIR) == 0)
190             default_type = "wayland";
191
192         sessions = load_sessions_dir (sessions, dirs[i], default_type);
193     }
194  
195     g_strfreev (dirs);
196
197     return sessions;
198 }
199
200 static void
201 update_sessions (void)
202 {
203     gchar *sessions_dir;
204     gchar *remote_sessions_dir;
205     gchar *value;
206
207     if (have_sessions)
208         return;
209
210     sessions_dir = g_strdup (SESSIONS_DIR);
211     remote_sessions_dir = g_strdup (REMOTE_SESSIONS_DIR);
212
213     /* Use session directory from configuration */
214     config_load_from_standard_locations (config_get_instance (), NULL, NULL);
215
216     value = config_get_string (config_get_instance (), "LightDM", "sessions-directory");
217     if (value)
218     {
219         g_free (sessions_dir);
220         sessions_dir = value;
221     }
222
223     value = config_get_string (config_get_instance (), "LightDM", "remote-sessions-directory");
224     if (value)
225     {
226         g_free (remote_sessions_dir);
227         remote_sessions_dir = value;
228     }
229
230     local_sessions = load_sessions (sessions_dir);
231     remote_sessions = load_sessions (remote_sessions_dir);
232
233     g_free (sessions_dir);
234     g_free (remote_sessions_dir);
235
236     have_sessions = TRUE;
237 }
238
239 /**
240  * lightdm_get_sessions:
241  *
242  * Get the available sessions.
243  *
244  * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession
245  **/
246 GList *
247 lightdm_get_sessions (void)
248 {
249     update_sessions ();
250     return local_sessions;
251 }
252
253 /**
254  * lightdm_get_remote_sessions:
255  *
256  * Get the available remote sessions.
257  *
258  * Return value: (element-type LightDMSession) (transfer none): A list of #LightDMSession
259  **/
260 GList *
261 lightdm_get_remote_sessions (void)
262 {
263     update_sessions ();
264     return remote_sessions;
265 }
266
267 /**
268  * lightdm_session_get_key:
269  * @session: A #LightDMSession
270  *
271  * Get the key for a session
272  *
273  * Return value: The session key
274  **/
275 const gchar *
276 lightdm_session_get_key (LightDMSession *session)
277 {
278     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
279     return GET_PRIVATE (session)->key;
280 }
281
282 /**
283  * lightdm_session_get_session_type:
284  * @session: A #LightDMSession
285  *
286  * Get the type a session
287  *
288  * Return value: The session type, e.g. x or mir
289  **/
290 const gchar *
291 lightdm_session_get_session_type (LightDMSession *session)
292 {
293     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
294     return GET_PRIVATE (session)->type;
295 }
296
297 /**
298  * lightdm_session_get_name:
299  * @session: A #LightDMSession
300  *
301  * Get the name for a session
302  *
303  * Return value: The session name
304  **/
305 const gchar *
306 lightdm_session_get_name (LightDMSession *session)
307 {
308     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
309     return GET_PRIVATE (session)->name;
310 }
311
312 /**
313  * lightdm_session_get_comment:
314  * @session: A #LightDMSession
315  *
316  * Get the comment for a session
317  *
318  * Return value: The session comment
319  **/
320 const gchar *
321 lightdm_session_get_comment (LightDMSession *session)
322 {
323     g_return_val_if_fail (LIGHTDM_IS_SESSION (session), NULL);
324     return GET_PRIVATE (session)->comment;
325 }
326
327 static void
328 lightdm_session_init (LightDMSession *session)
329 {
330 }
331
332 static void
333 lightdm_session_set_property (GObject      *object,
334                           guint         prop_id,
335                           const GValue *value,
336                           GParamSpec   *pspec)
337 {
338     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
339 }
340
341 static void
342 lightdm_session_get_property (GObject    *object,
343                           guint       prop_id,
344                           GValue     *value,
345                           GParamSpec *pspec)
346 {
347     LightDMSession *self;
348
349     self = LIGHTDM_SESSION (object);
350
351     switch (prop_id) {
352     case PROP_KEY:
353         g_value_set_string (value, lightdm_session_get_key (self));
354         break;
355     case PROP_NAME:
356         g_value_set_string (value, lightdm_session_get_name (self));
357         break;
358     case PROP_COMMENT:
359         g_value_set_string (value, lightdm_session_get_comment (self));
360         break;
361     default:
362         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
363         break;
364     }
365 }
366
367 static void
368 lightdm_session_finalize (GObject *object)
369 {
370     LightDMSession *self = LIGHTDM_SESSION (object);
371     LightDMSessionPrivate *priv = GET_PRIVATE (self);
372
373     g_free (priv->key);
374     g_free (priv->type);
375     g_free (priv->name);
376     g_free (priv->comment);
377 }
378
379 static void
380 lightdm_session_class_init (LightDMSessionClass *klass)
381 {
382     GObjectClass *object_class = G_OBJECT_CLASS (klass);
383
384     g_type_class_add_private (klass, sizeof (LightDMSessionPrivate));
385
386     object_class->set_property = lightdm_session_set_property;
387     object_class->get_property = lightdm_session_get_property;
388     object_class->finalize = lightdm_session_finalize;
389
390     g_object_class_install_property (object_class,
391                                      PROP_KEY,
392                                      g_param_spec_string ("key",
393                                                           "key",
394                                                           "Session key",
395                                                           NULL,
396                                                           G_PARAM_READABLE));
397     g_object_class_install_property (object_class,
398                                      PROP_NAME,
399                                      g_param_spec_string ("name",
400                                                           "name",
401                                                           "Session name",
402                                                           NULL,
403                                                           G_PARAM_READABLE));
404     g_object_class_install_property (object_class,
405                                      PROP_COMMENT,
406                                      g_param_spec_string ("comment",
407                                                           "comment",
408                                                           "Session comment",
409                                                           NULL,
410                                                           G_PARAM_READABLE));
411 }