ini-file-read.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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 "src/main.h"
  30. #include "internal.h"
  31. /*** global variables ****************************************************************************/
  32. extern mc_skin_t mc_skin__default;
  33. /*** file scope macro definitions ****************************************************************/
  34. /*** file scope type declarations ****************************************************************/
  35. /*** file scope variables ************************************************************************/
  36. /*** file scope functions ************************************************************************/
  37. /* --------------------------------------------------------------------------------------------- */
  38. static void
  39. mc_fhl_parse_fill_color_info (mc_fhl_filter_t * mc_filter, mc_fhl_t * fhl, const gchar * group_name)
  40. {
  41. (void) fhl;
  42. mc_filter->color_pair_index = mc_skin_color_get ("filehighlight", group_name);
  43. }
  44. /* --------------------------------------------------------------------------------------------- */
  45. static gboolean
  46. mc_fhl_parse_get_file_type_id (mc_fhl_t * fhl, const gchar * group_name)
  47. {
  48. mc_fhl_filter_t *mc_filter;
  49. const gchar *types[] = {
  50. "FILE", "FILE_EXE",
  51. "DIR", "LINK_DIR",
  52. "LINK", "HARDLINK", "SYMLINK",
  53. "STALE_LINK",
  54. "DEVICE", "DEVICE_BLOCK", "DEVICE_CHAR",
  55. "SPECIAL", "SPECIAL_SOCKET", "SPECIAL_FIFO", "SPECIAL_DOOR",
  56. NULL
  57. };
  58. int i;
  59. gchar *param_type = mc_config_get_string (fhl->config, group_name, "type", "");
  60. if (*param_type == '\0')
  61. {
  62. g_free (param_type);
  63. return FALSE;
  64. }
  65. for (i = 0; types[i] != NULL; i++)
  66. {
  67. if (strcmp (types[i], param_type) == 0)
  68. break;
  69. }
  70. g_free (param_type);
  71. if (types[i] == NULL)
  72. return FALSE;
  73. mc_filter = g_new0 (mc_fhl_filter_t, 1);
  74. mc_filter->type = MC_FLHGH_T_FTYPE;
  75. mc_filter->file_type = (mc_flhgh_ftype_type) i;
  76. mc_fhl_parse_fill_color_info (mc_filter, fhl, group_name);
  77. g_ptr_array_add (fhl->filters, (gpointer) mc_filter);
  78. return TRUE;
  79. }
  80. /* --------------------------------------------------------------------------------------------- */
  81. static gboolean
  82. mc_fhl_parse_get_regexp (mc_fhl_t * fhl, const gchar * group_name)
  83. {
  84. mc_fhl_filter_t *mc_filter;
  85. gchar *regexp = mc_config_get_string (fhl->config, group_name, "regexp", "");
  86. if (*regexp == '\0')
  87. {
  88. g_free (regexp);
  89. return FALSE;
  90. }
  91. mc_filter = g_new0 (mc_fhl_filter_t, 1);
  92. mc_filter->type = MC_FLHGH_T_FREGEXP;
  93. mc_filter->search_condition = mc_search_new (regexp, -1);
  94. mc_filter->search_condition->is_case_sensitive = TRUE;
  95. mc_filter->search_condition->search_type = MC_SEARCH_T_REGEX;
  96. mc_fhl_parse_fill_color_info (mc_filter, fhl, group_name);
  97. g_ptr_array_add (fhl->filters, (gpointer) mc_filter);
  98. g_free (regexp);
  99. return TRUE;
  100. }
  101. /* --------------------------------------------------------------------------------------------- */
  102. static gboolean
  103. mc_fhl_parse_get_extensions (mc_fhl_t * fhl, const gchar * group_name)
  104. {
  105. mc_fhl_filter_t *mc_filter;
  106. gchar **exts, **exts_orig;
  107. gsize exts_size;
  108. GString *buf;
  109. exts_orig = exts =
  110. mc_config_get_string_list (fhl->config, group_name, "extensions", &exts_size);
  111. if (exts_orig == NULL || exts_orig[0] == NULL)
  112. {
  113. g_strfreev (exts_orig);
  114. return FALSE;
  115. }
  116. buf = g_string_sized_new (64);
  117. for (exts = exts_orig; *exts != NULL; exts++)
  118. {
  119. char *esc_ext;
  120. esc_ext = strutils_regex_escape (*exts);
  121. if (buf->len != 0)
  122. g_string_append_c (buf, '|');
  123. g_string_append (buf, esc_ext);
  124. g_free (esc_ext);
  125. }
  126. g_strfreev (exts_orig);
  127. g_string_prepend (buf, ".*\\.(");
  128. g_string_append (buf, ")$");
  129. mc_filter = g_new0 (mc_fhl_filter_t, 1);
  130. mc_filter->type = MC_FLHGH_T_FREGEXP;
  131. mc_filter->search_condition = mc_search_new (buf->str, -1);
  132. mc_filter->search_condition->is_case_sensitive =
  133. mc_config_get_bool (fhl->config, group_name, "extensions_case", TRUE);
  134. mc_filter->search_condition->search_type = MC_SEARCH_T_REGEX;
  135. mc_fhl_parse_fill_color_info (mc_filter, fhl, group_name);
  136. g_ptr_array_add (fhl->filters, (gpointer) mc_filter);
  137. g_string_free (buf, TRUE);
  138. return TRUE;
  139. }
  140. /* --------------------------------------------------------------------------------------------- */
  141. /*** public functions ****************************************************************************/
  142. /* --------------------------------------------------------------------------------------------- */
  143. gboolean
  144. mc_fhl_read_ini_file (mc_fhl_t * fhl, const gchar * filename)
  145. {
  146. if (fhl == NULL || filename == NULL || !exist_file (filename))
  147. return FALSE;
  148. if (fhl->config != NULL)
  149. return mc_config_read_file (fhl->config, filename);
  150. fhl->config = mc_config_init (filename);
  151. return (fhl->config != NULL);
  152. }
  153. /* --------------------------------------------------------------------------------------------- */
  154. gboolean
  155. mc_fhl_init_from_standard_files (mc_fhl_t * fhl)
  156. {
  157. gchar *name;
  158. gboolean ok;
  159. name = mc_config_search_conffile(mc_config_get_path (), NULL, MC_FHL_INI_FILE);
  160. if (name == NULL)
  161. return FALSE;
  162. ok = mc_fhl_read_ini_file (fhl, name);
  163. g_free (name);
  164. return ok;
  165. }
  166. /* --------------------------------------------------------------------------------------------- */
  167. gboolean
  168. mc_fhl_parse_ini_file (mc_fhl_t * fhl)
  169. {
  170. gchar **group_names, **orig_group_names;
  171. mc_fhl_array_free (fhl);
  172. fhl->filters = g_ptr_array_new ();
  173. orig_group_names = group_names = mc_config_get_groups (fhl->config, NULL);
  174. if (group_names == NULL)
  175. return FALSE;
  176. while (*group_names)
  177. {
  178. if (mc_config_has_param (fhl->config, *group_names, "type"))
  179. {
  180. /* parse filetype filter */
  181. mc_fhl_parse_get_file_type_id (fhl, *group_names);
  182. }
  183. if (mc_config_has_param (fhl->config, *group_names, "regexp"))
  184. {
  185. /* parse regexp filter */
  186. mc_fhl_parse_get_regexp (fhl, *group_names);
  187. }
  188. if (mc_config_has_param (fhl->config, *group_names, "extensions"))
  189. {
  190. /* parse extensions filter */
  191. mc_fhl_parse_get_extensions (fhl, *group_names);
  192. }
  193. group_names++;
  194. }
  195. g_strfreev (orig_group_names);
  196. return TRUE;
  197. }
  198. /* --------------------------------------------------------------------------------------------- */