2 paths to configuration files
4 Copyright (C) 2010-2017
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2010.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
32 #include "lib/global.h"
33 #include "lib/fileloc.h"
34 #include "lib/vfs/vfs.h"
35 #include "lib/util.h" /* unix_error_string() */
37 #include "lib/mcconfig.h"
39 /*** global variables ****************************************************************************/
41 /*** file scope macro definitions ****************************************************************/
43 #define MC_OLD_USERCONF_DIR ".mc"
45 /*** file scope type declarations ****************************************************************/
47 /*** file scope variables ************************************************************************/
49 static gboolean xdg_vars_initialized
= FALSE
;
50 static char *mc_config_str
= NULL
;
51 static char *mc_cache_str
= NULL
;
52 static char *mc_data_str
= NULL
;
54 static gboolean config_dir_present
= FALSE
;
58 const char *old_filename
;
61 const char *new_filename
;
62 } mc_config_files_reference
[] =
66 { "ini", &mc_config_str
, MC_CONFIG_FILE
},
67 { "filehighlight.ini", &mc_config_str
, MC_FHL_INI_FILE
},
68 { "mc.keymap", &mc_config_str
, GLOBAL_KEYMAP_FILE
},
69 { "menu", &mc_config_str
, MC_USERMENU_FILE
},
70 { "cedit" PATH_SEP_STR
"Syntax", &mc_config_str
, EDIT_SYNTAX_FILE
},
71 { "cedit" PATH_SEP_STR
"menu", &mc_config_str
, EDIT_HOME_MENU
},
72 { "cedit" PATH_SEP_STR
"edit.indent.rc", &mc_config_str
, EDIT_DIR PATH_SEP_STR
"edit.indent.rc"},
73 { "cedit" PATH_SEP_STR
"edit.spell.rc", &mc_config_str
, EDIT_DIR PATH_SEP_STR
"edit.spell.rc"},
74 { "panels.ini", &mc_config_str
, MC_PANELS_FILE
},
76 /* User should move this file with applying some changes in file */
77 { "", &mc_config_str
, MC_FILEBIND_FILE
},
80 { "skins", &mc_data_str
, MC_SKINS_SUBDIR
},
81 { "fish", &mc_data_str
, FISH_PREFIX
},
82 { "ashrc", &mc_data_str
, "ashrc"},
83 { "bashrc", &mc_data_str
, "bashrc"},
84 { "inputrc", &mc_data_str
, "inputrc"},
85 { "extfs.d", &mc_data_str
, MC_EXTFS_DIR
},
86 { "history", &mc_data_str
, MC_HISTORY_FILE
},
87 { "filepos", &mc_data_str
, MC_FILEPOS_FILE
},
88 { "hotlist", &mc_data_str
, MC_HOTLIST_FILE
},
89 { "cedit" PATH_SEP_STR
"cooledit.clip", &mc_data_str
, EDIT_CLIP_FILE
},
90 { "", &mc_data_str
, MC_MACRO_FILE
},
93 { "log", &mc_cache_str
, "mc.log"},
94 { "Tree", &mc_cache_str
, MC_TREESTORE_FILE
},
95 { "cedit" PATH_SEP_STR
"cooledit.temp", &mc_cache_str
, EDIT_TEMP_FILE
},
96 { "cedit" PATH_SEP_STR
"cooledit.block", &mc_cache_str
, EDIT_BLOCK_FILE
},
106 const char *filename
;
109 } mc_config_migrate_rules_fix
[] =
112 { &mc_config_str
, MC_HOTLIST_FILE
, &mc_data_str
},
114 { &mc_data_str
, MC_USERMENU_FILE
, &mc_config_str
},
115 { &mc_data_str
, EDIT_SYNTAX_FILE
, &mc_config_str
},
116 { &mc_data_str
, EDIT_HOME_MENU
, &mc_config_str
},
117 { &mc_data_str
, EDIT_DIR PATH_SEP_STR
"edit.indent.rc", &mc_config_str
},
118 { &mc_data_str
, EDIT_DIR PATH_SEP_STR
"edit.spell.rc", &mc_config_str
},
119 { &mc_data_str
, MC_FILEBIND_FILE
, &mc_config_str
},
121 { &mc_cache_str
, MC_HISTORY_FILE
, &mc_data_str
},
122 { &mc_cache_str
, MC_FILEPOS_FILE
, &mc_data_str
},
123 { &mc_cache_str
, EDIT_CLIP_FILE
, &mc_data_str
},
125 { &mc_cache_str
, MC_PANELS_FILE
, &mc_config_str
},
130 #endif /* MC_HOMEDIR_XDG */
132 /*** file scope functions *********************************************************************** */
133 /* --------------------------------------------------------------------------------------------- */
136 mc_config_mkdir (const char *directory_name
, GError
** mcerror
)
138 mc_return_if_error (mcerror
);
140 if ((!g_file_test (directory_name
, G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_DIR
)) &&
141 (g_mkdir_with_parents (directory_name
, 0700) != 0))
142 mc_propagate_error (mcerror
, 0, _("Cannot create %s directory"), directory_name
);
145 /* --------------------------------------------------------------------------------------------- */
148 mc_config_init_one_config_path (const char *path_base
, const char *subdir
, GError
** mcerror
)
152 mc_return_val_if_error (mcerror
, FALSE
);
154 full_path
= g_build_filename (path_base
, subdir
, (char *) NULL
);
155 if (g_file_test (full_path
, G_FILE_TEST_EXISTS
))
157 if (g_file_test (full_path
, G_FILE_TEST_IS_DIR
))
159 config_dir_present
= TRUE
;
163 fprintf (stderr
, "%s %s\n", _("FATAL: not a directory:"), full_path
);
168 mc_config_mkdir (full_path
, mcerror
);
169 if (mcerror
!= NULL
&& *mcerror
!= NULL
)
170 MC_PTR_FREE (full_path
);
175 /* --------------------------------------------------------------------------------------------- */
178 mc_config_get_deprecated_path (void)
180 return g_build_filename (mc_config_get_home_dir (), MC_OLD_USERCONF_DIR
, (char *) NULL
);
183 /* --------------------------------------------------------------------------------------------- */
186 mc_config_copy (const char *old_name
, const char *new_name
, GError
** mcerror
)
188 mc_return_if_error (mcerror
);
190 if (g_file_test (old_name
, G_FILE_TEST_IS_REGULAR
))
192 char *contents
= NULL
;
195 if (g_file_get_contents (old_name
, &contents
, &length
, mcerror
))
196 g_file_set_contents (new_name
, contents
, length
, mcerror
);
202 if (g_file_test (old_name
, G_FILE_TEST_IS_DIR
))
206 const char *dir_name
;
208 dir
= g_dir_open (old_name
, 0, mcerror
);
212 if (g_mkdir_with_parents (new_name
, 0700) == -1)
215 mc_propagate_error (mcerror
, 0,
216 _("An error occurred while migrating user settings: %s"),
217 unix_error_string (errno
));
221 while ((dir_name
= g_dir_read_name (dir
)) != NULL
)
223 char *old_name2
, *new_name2
;
225 old_name2
= g_build_filename (old_name
, dir_name
, (char *) NULL
);
226 new_name2
= g_build_filename (new_name
, dir_name
, (char *) NULL
);
227 mc_config_copy (old_name2
, new_name2
, mcerror
);
234 /* --------------------------------------------------------------------------------------------- */
238 mc_config_fix_migrated_rules (void)
242 for (rule_index
= 0; mc_config_migrate_rules_fix
[rule_index
].old_basedir
!= NULL
; rule_index
++)
247 g_build_filename (*mc_config_migrate_rules_fix
[rule_index
].old_basedir
,
248 mc_config_migrate_rules_fix
[rule_index
].filename
, (char *) NULL
);
250 if (g_file_test (old_name
, G_FILE_TEST_EXISTS
))
253 const char *basedir
= *mc_config_migrate_rules_fix
[rule_index
].new_basedir
;
254 const char *filename
= mc_config_migrate_rules_fix
[rule_index
].filename
;
256 new_name
= g_build_filename (basedir
, filename
, (char *) NULL
);
257 rename (old_name
, new_name
);
263 #endif /* MC_HOMEDIR_XDG */
265 /* --------------------------------------------------------------------------------------------- */
268 mc_config_deprecated_dir_present (void)
273 old_dir
= mc_config_get_deprecated_path ();
274 is_present
= g_file_test (old_dir
, G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_DIR
);
277 return is_present
&& !config_dir_present
;
280 /* --------------------------------------------------------------------------------------------- */
281 /*** public functions ****************************************************************************/
282 /* --------------------------------------------------------------------------------------------- */
285 mc_config_init_config_paths (GError
** mcerror
)
287 const char *profile_root
;
289 #if MC_HOMEDIR_XDG == 0
290 char *defined_userconf_dir
;
293 mc_return_if_error (mcerror
);
295 if (xdg_vars_initialized
)
298 profile_root
= mc_get_profile_root ();
301 if (strcmp (profile_root
, mc_config_get_home_dir ()) != 0)
304 * The user overrode the default profile root.
306 * In this case we can't use GLib's g_get_user_{config,cache,data}_dir()
307 * as these functions use the user's home dir as the root.
310 dir
= g_build_filename (profile_root
, ".config", (char *) NULL
);
311 mc_config_str
= mc_config_init_one_config_path (dir
, MC_USERCONF_DIR
, mcerror
);
314 dir
= g_build_filename (profile_root
, ".cache", (char *) NULL
);
315 mc_cache_str
= mc_config_init_one_config_path (dir
, MC_USERCONF_DIR
, mcerror
);
318 dir
= g_build_filename (profile_root
, ".local", "share", (char *) NULL
);
319 mc_data_str
= mc_config_init_one_config_path (dir
, MC_USERCONF_DIR
, mcerror
);
325 mc_config_init_one_config_path (g_get_user_config_dir (), MC_USERCONF_DIR
, mcerror
);
327 mc_config_init_one_config_path (g_get_user_cache_dir (), MC_USERCONF_DIR
, mcerror
);
329 mc_config_init_one_config_path (g_get_user_data_dir (), MC_USERCONF_DIR
, mcerror
);
332 mc_config_fix_migrated_rules ();
333 #else /* MC_HOMEDIR_XDG */
334 defined_userconf_dir
= tilde_expand (MC_USERCONF_DIR
);
335 if (g_path_is_absolute (defined_userconf_dir
))
336 dir
= defined_userconf_dir
;
339 g_free (defined_userconf_dir
);
340 dir
= g_build_filename (profile_root
, MC_USERCONF_DIR
, (char *) NULL
);
343 mc_data_str
= mc_cache_str
= mc_config_str
= mc_config_init_one_config_path (dir
, "", mcerror
);
346 #endif /* MC_HOMEDIR_XDG */
348 xdg_vars_initialized
= TRUE
;
351 /* --------------------------------------------------------------------------------------------- */
354 mc_config_deinit_config_paths (void)
356 if (!xdg_vars_initialized
)
359 g_free (mc_config_str
);
361 g_free (mc_cache_str
);
362 g_free (mc_data_str
);
363 #endif /* MC_HOMEDIR_XDG */
365 g_free (mc_global
.share_data_dir
);
366 g_free (mc_global
.sysconfig_dir
);
368 xdg_vars_initialized
= FALSE
;
371 /* --------------------------------------------------------------------------------------------- */
374 mc_config_get_data_path (void)
376 if (!xdg_vars_initialized
)
377 mc_config_init_config_paths (NULL
);
379 return (const char *) mc_data_str
;
382 /* --------------------------------------------------------------------------------------------- */
385 mc_config_get_cache_path (void)
387 if (!xdg_vars_initialized
)
388 mc_config_init_config_paths (NULL
);
390 return (const char *) mc_cache_str
;
393 /* --------------------------------------------------------------------------------------------- */
396 mc_config_get_home_dir (void)
398 static const char *homedir
= NULL
;
402 /* Prior to GLib 2.36, g_get_home_dir() ignores $HOME, which is why
403 * we read it ourselves. As that function's documentation explains,
404 * using $HOME is good for compatibility with other programs and
405 * for running from test frameworks. */
406 homedir
= g_getenv ("HOME");
407 if (homedir
== NULL
|| *homedir
== '\0')
408 homedir
= g_get_home_dir ();
413 /* --------------------------------------------------------------------------------------------- */
416 mc_config_get_path (void)
418 if (!xdg_vars_initialized
)
419 mc_config_init_config_paths (NULL
);
421 return (const char *) mc_config_str
;
424 /* --------------------------------------------------------------------------------------------- */
427 mc_config_migrate_from_old_place (GError
** mcerror
, char **msg
)
432 mc_return_val_if_error (mcerror
, FALSE
);
434 if (!mc_config_deprecated_dir_present ())
437 old_dir
= mc_config_get_deprecated_path ();
439 g_free (mc_config_init_one_config_path (mc_config_str
, EDIT_DIR
, mcerror
));
441 g_free (mc_config_init_one_config_path (mc_cache_str
, EDIT_DIR
, mcerror
));
442 g_free (mc_config_init_one_config_path (mc_data_str
, EDIT_DIR
, mcerror
));
443 #endif /* MC_HOMEDIR_XDG */
445 mc_return_val_if_error (mcerror
, FALSE
);
447 for (rule_index
= 0; mc_config_files_reference
[rule_index
].old_filename
!= NULL
; rule_index
++)
450 if (*mc_config_files_reference
[rule_index
].old_filename
== '\0')
454 g_build_filename (old_dir
, mc_config_files_reference
[rule_index
].old_filename
,
457 if (g_file_test (old_name
, G_FILE_TEST_EXISTS
))
460 const char *basedir
= *mc_config_files_reference
[rule_index
].new_basedir
;
461 const char *filename
= mc_config_files_reference
[rule_index
].new_filename
;
463 new_name
= g_build_filename (basedir
, filename
, (char *) NULL
);
464 mc_config_copy (old_name
, new_name
, mcerror
);
471 *msg
= g_strdup_printf (_("Your old settings were migrated from %s\n"
472 "to Freedesktop recommended dirs.\n"
473 "To get more info, please visit\n"
474 "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"),
476 #else /* MC_HOMEDIR_XDG */
477 *msg
= g_strdup_printf (_("Your old settings were migrated from %s\n"
478 "to %s\n"), old_dir
, mc_config_str
);
479 #endif /* MC_HOMEDIR_XDG */
486 /* --------------------------------------------------------------------------------------------- */
488 * Get full path to config file by short name.
490 * @param config_name short name
491 * @return full path to config file
495 mc_config_get_full_path (const char *config_name
)
499 if (config_name
== NULL
)
502 if (!xdg_vars_initialized
)
503 mc_config_init_config_paths (NULL
);
505 for (rule_index
= 0; mc_config_files_reference
[rule_index
].old_filename
!= NULL
; rule_index
++)
507 if (strcmp (config_name
, mc_config_files_reference
[rule_index
].new_filename
) == 0)
509 return g_build_filename (*mc_config_files_reference
[rule_index
].new_basedir
,
510 mc_config_files_reference
[rule_index
].new_filename
,
517 /* --------------------------------------------------------------------------------------------- */
519 * Get full path to config file by short name.
521 * @param config_name short name
522 * @return object with full path to config file
526 mc_config_get_full_vpath (const char *config_name
)
528 vfs_path_t
*ret_vpath
;
531 str_path
= mc_config_get_full_path (config_name
);
533 ret_vpath
= vfs_path_from_str (str_path
);
538 /* --------------------------------------------------------------------------------------------- */