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