Unix administration stuff that was hard to find out using Google and caused a lot of try and error. Hereby given back to the net...
|
|
Tweet |
|
Link Collections Linux Security Tools Projects Recent Posts
Comments
|
How-to: Migrate Linux applications to XDG directories
Submitted by Lars Windolf on 30. August 2012 - 14:08.
If you are maintaining a Linux Glib-based or GTK application for some time you might want to migrate it to the XDG way of user data layout. This is something I had to do for Liferea (around since 2003) recently. Also when creating a new application you might ask yourself where to put the user data. This post tries to describe how to access the correct paths using Glib. 1. Preparation: Categorize your dataDetermine what types of data you have. The specification knows three major directories:
In each of the directories your application should create a subfolder with the unique name of the application and place relevant files there. While volatile cache files go into ~/.cache, persistent important data should go to ~/.local/share and all configuration to ~/.config. 2. Migrate the codeThe simple task is to rewrite the old code creating directory paths some arbitrary way to use XDG style directory paths now. As the specification is non-trivial when finding the directory base paths (via multiple paths in $XDG_DATA_DIRS and $XDG_CONFIG_DIRS) it might be good to rely on a library for doing this. 2.1 Using GlibWhen developing for GTK or maybe only using Glib one already gets support since GTK uses Glib and Glib 2.6 introduced support for the XDG base directory specification. So with Glib use the following methods to find the target directories:
Given your application being named "coolApp" and you want to create a cache file named "render.dat" you could use the following C snippet: g_build_filename (g_get_user_cache_dir (), "coolApp", "render.dat", NULL); to produce a path. Most likely you'll get something like "/home/joe/.cache/coolApp/render.dat". 2.2 Using wxWidgetsWhen programming for wxWidgets you need to use the wxStandardPaths class. The methods are
2.3 With KDESince KDE 3.2 it also supports the XDG base specification. But honestly: googling our trying to browse the KDE API I couldn't find any pointers on how to do it. If you know please leave a comment! |
Post new comment