ini-file-read.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /*
  2. File highlight plugin.
  3. Reading and parse rules from ini-files
  4. Copyright (C) 2009 The Free Software Foundation, Inc.
  5. Written by:
  6. Slava Zanko <slavazanko@gmail.com>, 2009.
  7. This file is part of the Midnight Commander.
  8. The Midnight Commander is free software; you can redistribute it
  9. and/or modify it under the terms of the GNU General Public License as
  10. published by the Free Software Foundation; either version 2 of the
  11. License, or (at your option) any later version.
  12. The Midnight Commander is distributed in the hope that it will be
  13. useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  14. of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  19. MA 02110-1301, USA.
  20. */
  21. #include <config.h>
  22. #include <string.h>
  23. #include "lib/global.h"
  24. #include "lib/fileloc.h"
  25. #include "lib/strescape.h"
  26. #include "lib/skin.h"
  27. #include "lib/util.h" /* exist_file() */
  28. #include "lib/filehighlight.h"
  29. #include "internal.h"
  30. /*** global variables ****************************************************************************/
  31. extern mc_skin_t mc_skin__default;
  32. /*** file scope macro definitions ****************************************************************/
  33. /*** file scope type declarations ****************************************************************/
  34. /*** file scope variables ************************************************************************/
  35. /*** file scope functions ************************************************************************/
  36. /* --------------------------------------------------------------------------------------------- */
  37. static void
  38. mc_fhl_parse_fill_color_info (mc_fhl_filter_t * mc_filter, mc_fhl_t * fhl, const gchar * group_name)
  39. {
  40. (void) fhl;
  41. mc_filter->color_pair_index = mc_skin_color_get ("filehighlight", group_name);
  42. }
  43. /* --------------------------------------------------------------------------------------------- */
  44. static gboolean
  45. mc_fhl_parse_get_file_type_id (mc_fhl_t * fhl, const gchar * group_name)
  46. {
  47. mc_fhl_filter_t *mc_filter;
  48. const gchar *types[] = {
  49. "FILE", "FILE_EXE",
  50. "DIR", "LINK_DIR",
  51. "LINK", "HARDLINK", "SYMLINK",
  52. "STALE_LINK",
  53. "DEVICE", "DEVICE_BLOCK", "DEVICE_CHAR",
  54. "SPECIAL", "SPECIAL_SOCKET", "SPECIAL_FIFO", "SPECIAL_DOOR",
  55. NULL
  56. };
  57. int i;
  58. gchar *param_type = mc_config_get_string (fhl->config, group_name, "type", "");
  59. if (*param_type == '\0')
  60. {
  61. g_free (param_type);
  62. return FALSE;
  63. }
  64. for (i = 0; types[i] != NULL; i++)
  65. {
  66. if (strcmp (types[i], param_type) == 0)
  67. break;
  68. }
  69. g_free (param_type);
  70. if (types[i] == NULL)
  71. return FALSE;
  72. mc_filter = g_new0 (mc_fhl_filter_t, 1);
  73. mc_filter->type = MC_FLHGH_T_FTYPE;
  74. mc_filter->file_type = (mc_flhgh_ftype_type) i;
  75. mc_fhl_parse_fill_color_info (mc_filter, fhl, group_name);
  76. g_ptr_array_add (fhl->filters, (gpointer) mc_filter);
  77. return TRUE;
  78. }
  79. /* --------------------------------------------------------------------------------------------- */
  80. static gboolean
  81. mc_fhl_parse_get_regexp (mc_fhl_t * fhl, const gchar * group_name)
  82. {
  83. mc_fhl_filter_t *mc_filter;
  84. gchar *regexp = mc_config_get_string (fhl->config, group_name, "regexp", "");
  85. if (*regexp == '\0')
  86. {
  87. g_free (regexp);
  88. return FALSE;
  89. }
  90. mc_filter = g_new0 (mc_fhl_filter_t, 1);
  91. mc_filter->type = MC_FLHGH_T_FREGEXP;
  92. mc_filter->search_condition = mc_search_new (regexp, -1);
  93. mc_filter->search_condition->is_case_sensitive = TRUE;
  94. mc_filter->search_condition->search_type = MC_SEARCH_T_REGEX;
  95. mc_fhl_parse_fill_color_info (mc_filter, fhl, group_name);
  96. g_ptr_array_add (fhl->filters, (gpointer) mc_filter);
  97. g_free (regexp);
  98. return TRUE;
  99. }
  100. /* --------------------------------------------------------------------------------------------- */
  101. static gboolean
  102. mc_fhl_parse_get_extensions (mc_fhl_t * fhl, const gchar * group_name)
  103. {
  104. mc_fhl_filter_t *mc_filter;
  105. gchar **exts, **exts_orig;
  106. gsize exts_size;
  107. GString *buf;
  108. exts_orig = exts =
  109. mc_config_get_string_list (fhl->config, group_name, "extensions", &exts_size);
  110. if (exts_orig == NULL || exts_orig[0] == NULL)
  111. {
  112. g_strfreev (exts_orig);
  113. return FALSE;
  114. }
  115. buf = g_string_sized_new (64);
  116. for (exts = exts_orig; *exts != NULL; exts++)
  117. {
  118. char *esc_ext;
  119. esc_ext = strutils_regex_escape (*exts);
  120. if (buf->len != 0)
  121. g_string_append_c (buf, '|');
  122. g_string_append (buf, esc_ext);
  123. g_free (esc_ext);
  124. }
  125. g_strfreev (exts_orig);
  126. g_string_prepend (buf, ".*\\.(");
  127. g_string_append (buf, ")$");
  128. mc_filter = g_new0 (mc_fhl_filter_t, 1);
  129. mc_filter->type = MC_FLHGH_T_FREGEXP;
  130. mc_filter->search_condition = mc_search_new (buf->str, -1);
  131. mc_filter->search_condition->is_case_sensitive =
  132. mc_config_get_bool (fhl->config, group_name, "extensions_case", TRUE);
  133. mc_filter->search_condition->search_type = MC_SEARCH_T_REGEX;
  134. mc_fhl_parse_fill_color_info (mc_filter, fhl, group_name);
  135. g_ptr_array_add (fhl->filters, (gpointer) mc_filter);
  136. g_string_free (buf, TRUE);
  137. return TRUE;
  138. }
  139. /* --------------------------------------------------------------------------------------------- */
  140. /*** public functions ****************************************************************************/
  141. /* --------------------------------------------------------------------------------------------- */
  142. gboolean
  143. mc_fhl_read_ini_file (mc_fhl_t * fhl, const gchar * filename)
  144. {
  145. if (fhl == NULL || filename == NULL || !exist_file (filename))
  146. return FALSE;
  147. if (fhl->config != NULL)
  148. return mc_config_read_file (fhl->config, filename, FALSE);
  149. fhl->config = mc_config_init (filename);
  150. return (fhl->config != NULL);
  151. }
  152. /* --------------------------------------------------------------------------------------------- */
  153. gboolean
  154. mc_fhl_init_from_standard_files (mc_fhl_t * fhl)
  155. {
  156. gchar *name;
  157. gboolean ok;
  158. /* ${XDG_CONFIG_HOME}/mc/filehighlight.ini */
  159. name = g_build_filename (mc_config_get_data_path (), MC_FHL_INI_FILE, (char *) NULL);
  160. ok = mc_fhl_read_ini_file (fhl, name);
  161. g_free (name);
  162. if (ok)
  163. return TRUE;
  164. /* ${sysconfdir}/mc/filehighlight.ini */
  165. name = g_build_filename (mc_global.sysconfig_dir, MC_FHL_INI_FILE, (char *) NULL);
  166. ok = mc_fhl_read_ini_file (fhl, name);
  167. g_free (name);
  168. if (ok)
  169. return TRUE;
  170. /* ${datadir}/mc/filehighlight.ini */
  171. name = g_build_filename (mc_global.share_data_dir, MC_FHL_INI_FILE, (char *) NULL);
  172. ok = mc_fhl_read_ini_file (fhl, name);
  173. g_free (name);
  174. return ok;
  175. }
  176. /* --------------------------------------------------------------------------------------------- */
  177. gboolean
  178. mc_fhl_parse_ini_file (mc_fhl_t * fhl)
  179. {
  180. gchar **group_names, **orig_group_names;
  181. mc_fhl_array_free (fhl);
  182. fhl->filters = g_ptr_array_new ();
  183. orig_group_names = group_names = mc_config_get_groups (fhl->config, NULL);
  184. if (group_names == NULL)
  185. return FALSE;
  186. while (*group_names)
  187. {
  188. if (mc_config_has_param (fhl->config, *group_names, "type"))
  189. {
  190. /* parse filetype filter */
  191. mc_fhl_parse_get_file_type_id (fhl, *group_names);
  192. }
  193. if (mc_config_has_param (fhl->config, *group_names, "regexp"))
  194. {
  195. /* parse regexp filter */
  196. mc_fhl_parse_get_regexp (fhl, *group_names);
  197. }
  198. if (mc_config_has_param (fhl->config, *group_names, "extensions"))
  199. {
  200. /* parse extensions filter */
  201. mc_fhl_parse_get_extensions (fhl, *group_names);
  202. }
  203. group_names++;
  204. }
  205. g_strfreev (orig_group_names);
  206. return TRUE;
  207. }
  208. /* --------------------------------------------------------------------------------------------- */