ini-file-read.c 8.0 KB

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