1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
* gsp-keyfile.c: GKeyFile extensions
*
* Copyright (C) 2008, 2009 Novell, Inc.
*
* Based on code from panel-keyfile.c (from mate-panel)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* Authors:
* Vincent Untz <vuntz@gnome.org>
*/
#include <string.h>
#include <glib.h>
#include "gsp-keyfile.h"
void
gsp_key_file_populate (GKeyFile *keyfile)
{
gsp_key_file_set_string (keyfile,
G_KEY_FILE_DESKTOP_KEY_TYPE,
"Application");
gsp_key_file_set_string (keyfile,
G_KEY_FILE_DESKTOP_KEY_EXEC,
"/bin/false");
}
//FIXME: kill this when bug #309224 is fixed
gboolean
gsp_key_file_to_file (GKeyFile *keyfile,
const gchar *path,
GError **error)
{
GError *write_error;
gchar *data;
gsize length;
gboolean res;
g_return_val_if_fail (keyfile != NULL, FALSE);
g_return_val_if_fail (path != NULL, FALSE);
write_error = NULL;
data = g_key_file_to_data (keyfile, &length, &write_error);
if (write_error) {
g_propagate_error (error, write_error);
return FALSE;
}
res = g_file_set_contents (path, data, length, &write_error);
g_free (data);
if (write_error) {
g_propagate_error (error, write_error);
return FALSE;
}
return res;
}
gboolean
gsp_key_file_get_boolean (GKeyFile *keyfile,
const gchar *key,
gboolean default_value)
{
GError *error;
gboolean retval;
error = NULL;
retval = g_key_file_get_boolean (keyfile, G_KEY_FILE_DESKTOP_GROUP,
key, &error);
if (error != NULL) {
retval = default_value;
g_error_free (error);
}
return retval;
}
void
gsp_key_file_set_locale_string (GKeyFile *keyfile,
const gchar *key,
const gchar *value)
{
const char *locale;
const char * const *langs_pointer;
int i;
if (value == NULL) {
value = "";
}
locale = NULL;
langs_pointer = g_get_language_names ();
for (i = 0; langs_pointer[i] != NULL; i++) {
/* find first without encoding */
if (strchr (langs_pointer[i], '.') == NULL) {
locale = langs_pointer[i];
break;
}
}
if (locale != NULL) {
g_key_file_set_locale_string (keyfile, G_KEY_FILE_DESKTOP_GROUP,
key, locale, value);
} else {
g_key_file_set_string (keyfile, G_KEY_FILE_DESKTOP_GROUP,
key, value);
}
}
void
gsp_key_file_ensure_C_key (GKeyFile *keyfile,
const char *key)
{
char *C_value;
char *buffer;
/* Make sure we set the "C" locale strings to the terms we set here.
* This is so that if the user logs into another locale they get their
* own description there rather then empty. It is not the C locale
* however, but the user created this entry herself so it's OK */
C_value = gsp_key_file_get_string (keyfile, key);
if (C_value == NULL || C_value [0] == '\0') {
buffer = gsp_key_file_get_locale_string (keyfile, key);
if (buffer) {
gsp_key_file_set_string (keyfile, key, buffer);
g_free (buffer);
}
}
g_free (C_value);
}
|