get.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /*
  2. Configure module for the Midnight Commander
  3. Copyright (C) 1994-2024
  4. Free Software Foundation, Inc.
  5. This file is part of the Midnight Commander.
  6. The Midnight Commander is free software: you can redistribute it
  7. and/or modify it under the terms of the GNU General Public License as
  8. published by the Free Software Foundation, either version 3 of the License,
  9. or (at your option) any later version.
  10. The Midnight Commander is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <config.h>
  18. #include "lib/global.h"
  19. #include "lib/strutil.h"
  20. #include "lib/mcconfig.h"
  21. /*** global variables ****************************************************************************/
  22. /*** file scope macro definitions ****************************************************************/
  23. /*** file scope type declarations ****************************************************************/
  24. /*** file scope variables ************************************************************************/
  25. /*** file scope functions ************************************************************************/
  26. /* --------------------------------------------------------------------------------------------- */
  27. /*** file scope functions ************************************************************************/
  28. /* --------------------------------------------------------------------------------------------- */
  29. /* --------------------------------------------------------------------------------------------- */
  30. /*** public functions ****************************************************************************/
  31. /* --------------------------------------------------------------------------------------------- */
  32. gchar **
  33. mc_config_get_groups (const mc_config_t *mc_config, gsize *len)
  34. {
  35. gchar **ret = NULL;
  36. if (mc_config != NULL)
  37. ret = g_key_file_get_groups (mc_config->handle, len);
  38. if (ret == NULL)
  39. {
  40. ret = g_try_malloc0 (sizeof (gchar **));
  41. if (len != NULL)
  42. *len = 0;
  43. }
  44. return ret;
  45. }
  46. /* --------------------------------------------------------------------------------------------- */
  47. gchar **
  48. mc_config_get_keys (const mc_config_t *mc_config, const gchar *group, gsize *len)
  49. {
  50. gchar **ret = NULL;
  51. if (mc_config != NULL && group != NULL)
  52. ret = g_key_file_get_keys (mc_config->handle, group, len, NULL);
  53. if (ret == NULL)
  54. {
  55. ret = g_try_malloc0 (sizeof (gchar **));
  56. if (len != NULL)
  57. *len = 0;
  58. }
  59. return ret;
  60. }
  61. /* --------------------------------------------------------------------------------------------- */
  62. gchar *
  63. mc_config_get_string (mc_config_t *mc_config, const gchar *group,
  64. const gchar *param, const gchar *def)
  65. {
  66. GIConv conv;
  67. GString *buffer;
  68. gchar *ret;
  69. estr_t conv_res;
  70. ret = mc_config_get_string_raw (mc_config, group, param, def);
  71. if (mc_global.utf8_display)
  72. return ret;
  73. conv = str_crt_conv_from ("UTF-8");
  74. if (conv == INVALID_CONV)
  75. return ret;
  76. buffer = g_string_new ("");
  77. conv_res = str_convert (conv, ret, buffer);
  78. str_close_conv (conv);
  79. if (conv_res == ESTR_FAILURE)
  80. {
  81. g_string_free (buffer, TRUE);
  82. return ret;
  83. }
  84. g_free (ret);
  85. return g_string_free (buffer, FALSE);
  86. }
  87. /* --------------------------------------------------------------------------------------------- */
  88. gchar *
  89. mc_config_get_string_raw (mc_config_t *mc_config, const gchar *group,
  90. const gchar *param, const gchar *def)
  91. {
  92. gchar *ret;
  93. if (mc_config == NULL || group == NULL || param == NULL)
  94. return g_strdup (def);
  95. if (!mc_config_has_param (mc_config, group, param))
  96. {
  97. if (def != NULL)
  98. mc_config_set_string (mc_config, group, param, def);
  99. return g_strdup (def);
  100. }
  101. ret = g_key_file_get_string (mc_config->handle, group, param, NULL);
  102. return ret != NULL ? ret : g_strdup (def);
  103. }
  104. /* --------------------------------------------------------------------------------------------- */
  105. gboolean
  106. mc_config_get_bool (mc_config_t *mc_config, const gchar *group, const gchar *param, gboolean def)
  107. {
  108. if (mc_config == NULL || group == NULL || param == NULL)
  109. return def;
  110. if (!mc_config_has_param (mc_config, group, param))
  111. {
  112. mc_config_set_bool (mc_config, group, param, def);
  113. return def;
  114. }
  115. return g_key_file_get_boolean (mc_config->handle, group, param, NULL);
  116. }
  117. /* --------------------------------------------------------------------------------------------- */
  118. int
  119. mc_config_get_int (mc_config_t *mc_config, const gchar *group, const gchar *param, int def)
  120. {
  121. if (mc_config == NULL || group == NULL || param == NULL)
  122. return def;
  123. if (!mc_config_has_param (mc_config, group, param))
  124. {
  125. mc_config_set_int (mc_config, group, param, def);
  126. return def;
  127. }
  128. return g_key_file_get_integer (mc_config->handle, group, param, NULL);
  129. }
  130. /* --------------------------------------------------------------------------------------------- */
  131. gchar **
  132. mc_config_get_string_list (mc_config_t *mc_config, const gchar *group,
  133. const gchar *param, gsize *length)
  134. {
  135. if (mc_config == NULL || group == NULL || param == NULL)
  136. return NULL;
  137. return g_key_file_get_string_list (mc_config->handle, group, param, length, NULL);
  138. }
  139. /* --------------------------------------------------------------------------------------------- */
  140. gboolean *
  141. mc_config_get_bool_list (mc_config_t *mc_config, const gchar *group,
  142. const gchar *param, gsize *length)
  143. {
  144. if (mc_config == NULL || group == NULL || param == NULL)
  145. return NULL;
  146. return g_key_file_get_boolean_list (mc_config->handle, group, param, length, NULL);
  147. }
  148. /* --------------------------------------------------------------------------------------------- */
  149. int *
  150. mc_config_get_int_list (mc_config_t *mc_config, const gchar *group,
  151. const gchar *param, gsize *length)
  152. {
  153. if (mc_config == NULL || group == NULL || param == NULL)
  154. return NULL;
  155. return g_key_file_get_integer_list (mc_config->handle, group, param, length, NULL);
  156. }
  157. /* --------------------------------------------------------------------------------------------- */