]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/session-config.c
session-config: fix DesktopNames
[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 name */
20     gchar *desktop_name;
21
22     /* Command to run */
23     gchar *command;
24
25     /* Compositor command to run (for type mir-container) */
26     gchar *compositor_command;
27 };
28
29 G_DEFINE_TYPE (SessionConfig, session_config, G_TYPE_OBJECT);
30
31 SessionConfig *
32 session_config_new_from_file (const gchar *filename, GError **error)
33 {
34     GKeyFile *desktop_file;
35     SessionConfig *config;
36     gchar *command;
37     gchar **desktop_names;
38
39     desktop_file = g_key_file_new ();
40     if (!g_key_file_load_from_file (desktop_file, filename, G_KEY_FILE_NONE, error))
41         return NULL;
42     command = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_EXEC, NULL);
43     if (!command)
44     {
45         g_set_error (error,
46                      G_KEY_FILE_ERROR,
47                      G_KEY_FILE_ERROR_KEY_NOT_FOUND,
48                      "No Exec option in session file: %s", filename);
49         return NULL;
50     }
51
52     config = g_object_new (SESSION_CONFIG_TYPE, NULL);
53     config->priv->command = command;
54     config->priv->session_type = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-Session-Type", NULL);
55     if (!config->priv->session_type)
56         config->priv->session_type = g_strdup ("x");
57
58     desktop_names = g_key_file_get_string_list (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "DesktopNames", NULL, NULL);
59     if (desktop_names != NULL)
60     {
61         config->priv->desktop_name = g_strjoinv (":", desktop_names);
62         g_strfreev (desktop_names);
63     }
64     if (!config->priv->desktop_name)
65         config->priv->desktop_name = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-DesktopName", NULL);
66     config->priv->compositor_command = g_key_file_get_string (desktop_file, G_KEY_FILE_DESKTOP_GROUP, "X-LightDM-System-Compositor-Command", NULL);
67
68     g_key_file_free (desktop_file);
69
70     return config;
71 }
72
73 const gchar *
74 session_config_get_command (SessionConfig *config)
75 {
76     g_return_val_if_fail (config != NULL, NULL);
77     return config->priv->command;
78 }
79
80 const gchar *
81 session_config_get_session_type (SessionConfig *config)
82 {
83     g_return_val_if_fail (config != NULL, NULL);
84     return config->priv->session_type;
85 }
86
87 const gchar *
88 session_config_get_desktop_name (SessionConfig *config)
89 {
90     g_return_val_if_fail (config != NULL, NULL);
91     return config->priv->desktop_name;
92 }
93
94 const gchar *
95 session_config_get_compositor_command (SessionConfig *config)
96 {
97     g_return_val_if_fail (config != NULL, NULL);
98     return config->priv->compositor_command;
99 }
100
101 static void
102 session_config_init (SessionConfig *config)
103 {
104     config->priv = G_TYPE_INSTANCE_GET_PRIVATE (config, SESSION_CONFIG_TYPE, SessionConfigPrivate);
105     config->priv->desktop_name = NULL;
106 }
107
108 static void
109 session_config_finalize (GObject *object)
110 {
111     SessionConfig *self = SESSION_CONFIG (object);
112
113     g_free (self->priv->session_type);
114     g_free (self->priv->desktop_name);
115     g_free (self->priv->command);
116     g_free (self->priv->compositor_command);
117
118     G_OBJECT_CLASS (session_config_parent_class)->finalize (object);
119 }
120
121 static void
122 session_config_class_init (SessionConfigClass *klass)
123 {
124     GObjectClass *object_class = G_OBJECT_CLASS (klass);
125
126     object_class->finalize = session_config_finalize;
127
128     g_type_class_add_private (klass, sizeof (SessionConfigPrivate));
129 }