]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/session-config.c
Remove warning about Mir IDs when not using Mir
[sojka/lightdm.git] / src / session-config.c
1 /*
2  * Copyright (C) 2013 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  *
5  * This program is free software: you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License as published by the Free Software
7  * Foundation, either version 3 of the License, or (at your option) any later
8  * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9  * license.
10  */
11
12 #include "session-config.h"
13
14 struct SessionConfigPrivate
15 {
16     /* Session type */
17     gchar *session_type;
18
19     /* Desktop names */
20     gchar **desktop_names;
21
22     /* Command to run */
23     gchar *command;
24
25     /* TRUE if can run a greeter inside the session */
26     gboolean allow_greeter;
27 };
28
29 G_DEFINE_TYPE (SessionConfig, session_config, G_TYPE_OBJECT);
30
31 SessionConfig *
32 session_config_new_from_file (const gchar *filename, const gchar *default_session_type, GError **error)
33 {
34     GKeyFile *desktop_file;
35     SessionConfig *config;
36     gchar *command;
37
38     desktop_file = g_key_file_new ();
39     if (!g_key_file_load_from_file (desktop_file, filename, G_KEY_FILE_NONE, error))
40         return NULL;
41     command = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_EXEC, NULL);
42     if (!command)
43     {
44         g_set_error (error,
45                      G_KEY_FILE_ERROR,
46                      G_KEY_FILE_ERROR_KEY_NOT_FOUND,
47                      "No Exec option in session file: %s", filename);
48         return NULL;
49     }
50
51     config = g_object_new (SESSION_CONFIG_TYPE, NULL);
52     config->priv->command = command;
53     config->priv->session_type = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-Session-Type", NULL);
54     if (!config->priv->session_type)
55         config->priv->session_type = g_strdup (default_session_type);
56
57     config->priv->desktop_names = g_key_file_get_string_list (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "DesktopNames", NULL, NULL);
58     if (!config->priv->desktop_names)
59     {
60         gchar *name;
61
62         name = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-DesktopName", NULL);
63         if (name)
64         {
65             config->priv->desktop_names = g_malloc (sizeof (gchar *) * 2);
66             config->priv->desktop_names[0] = name;
67             config->priv->desktop_names[1] = NULL;
68         }
69     }
70     config->priv->allow_greeter = g_key_file_get_boolean (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-Allow-Greeter", NULL);
71
72     g_key_file_free (desktop_file);
73
74     return config;
75 }
76
77 const gchar *
78 session_config_get_command (SessionConfig *config)
79 {
80     g_return_val_if_fail (config != NULL, NULL);
81     return config->priv->command;
82 }
83
84 const gchar *
85 session_config_get_session_type (SessionConfig *config)
86 {
87     g_return_val_if_fail (config != NULL, NULL);
88     return config->priv->session_type;
89 }
90
91 gchar **
92 session_config_get_desktop_names (SessionConfig *config)
93 {
94     g_return_val_if_fail (config != NULL, NULL);
95     return config->priv->desktop_names;
96 }
97
98 gboolean
99 session_config_get_allow_greeter (SessionConfig *config)
100 {
101     g_return_val_if_fail (config != NULL, FALSE);
102     return config->priv->allow_greeter;
103 }
104
105 static void
106 session_config_init (SessionConfig *config)
107 {
108     config->priv = G_TYPE_INSTANCE_GET_PRIVATE (config, SESSION_CONFIG_TYPE, SessionConfigPrivate);
109 }
110
111 static void
112 session_config_finalize (GObject *object)
113 {
114     SessionConfig *self = SESSION_CONFIG (object);
115
116     g_free (self->priv->session_type);
117     g_strfreev (self->priv->desktop_names);
118     g_free (self->priv->command);
119
120     G_OBJECT_CLASS (session_config_parent_class)->finalize (object);
121 }
122
123 static void
124 session_config_class_init (SessionConfigClass *klass)
125 {
126     GObjectClass *object_class = G_OBJECT_CLASS (klass);
127
128     object_class->finalize = session_config_finalize;
129
130     g_type_class_add_private (klass, sizeof (SessionConfigPrivate));
131 }