Synopsis#include <glib.h> const gchar* g_get_application_name (void); void g_set_application_name (const gchar *application_name); gchar* g_get_prgname (void); void g_set_prgname (const gchar *prgname); const gchar* g_getenv (const gchar *variable); gboolean g_setenv (const gchar *variable, const gchar *value, gboolean overwrite); void g_unsetenv (const gchar *variable); gchar** g_listenv (void); const gchar* g_get_user_name (void); const gchar* g_get_real_name (void); const gchar* g_get_user_cache_dir (void); const gchar* g_get_user_data_dir (void); const gchar* g_get_user_config_dir (void); enum GUserDirectory; const gchar* g_get_user_special_dir (GUserDirectory directory); const gchar* const * g_get_system_data_dirs (void); const gchar* const * g_get_system_config_dirs (void); const gchar* g_get_host_name (void); const gchar* g_get_home_dir (void); const gchar* g_get_tmp_dir (void); gchar* g_get_current_dir (void); const gchar* g_basename (const gchar *file_name); #define g_dirname gboolean g_path_is_absolute (const gchar *file_name); const gchar* g_path_skip_root (const gchar *file_name); gchar* g_path_get_basename (const gchar *file_name); gchar* g_path_get_dirname (const gchar *file_name); gchar* g_build_filename (const gchar *first_element, ...); gchar* g_build_filenamev (gchar **args); gchar* g_build_path (const gchar *separator, const gchar *first_element, ...); gchar* g_build_pathv (const gchar *separator, gchar **args); char* g_format_size_for_display (goffset size); gchar* g_find_program_in_path (const gchar *program); gint g_bit_nth_lsf (gulong mask, gint nth_bit); gint g_bit_nth_msf (gulong mask, gint nth_bit); guint g_bit_storage (gulong number); guint g_spaced_primes_closest (guint num); void g_atexit (GVoidFunc func); guint g_parse_debug_string (const gchar *string, const GDebugKey *keys, guint nkeys); GDebugKey; void (*GVoidFunc) (void); void (*GFreeFunc) (gpointer data); void g_qsort_with_data (gconstpointer pbase, gint total_elems, gsize size, GCompareDataFunc compare_func, gpointer user_data); void g_nullify_pointer (gpointer *nullify_location); Detailsg_get_application_name ()const gchar* g_get_application_name (void);
Gets a human-readable name for the application, as set by
Since 2.2 g_set_application_name ()void g_set_application_name (const gchar *application_name);
Sets a human-readable name for the application. This name should be
localized if possible, and is intended for display to the user.
Contrast with Note that for thread safety reasons, this function can only be called once. The application name will be used in contexts such as error messages, or when displaying an application's name in the task list.
Since 2.2 g_get_prgname ()gchar* g_get_prgname (void);
Gets the name of the program. This name should not
be localized, contrast with
g_set_prgname ()void g_set_prgname (const gchar *prgname);
Sets the name of the program. This name should not
be localized, contrast with
g_getenv ()const gchar* g_getenv (const gchar *variable); Returns the value of an environment variable. The name and value are in the GLib file name encoding. On UNIX, this means the actual bytes which might or might not be in some consistent character set and encoding. On Windows, it is in UTF-8. On Windows, in case the environment variable's value contains references to other environment variables, they are expanded.
g_setenv ()gboolean g_setenv (const gchar *variable, const gchar *value, gboolean overwrite); Sets an environment variable. Both the variable's name and value should be in the GLib file name encoding. On UNIX, this means that they can be any sequence of bytes. On Windows, they should be in UTF-8. Note that on some systems, when variables are overwritten, the memory used for the previous variables and its value isn't reclaimed.
Since 2.4 g_unsetenv ()void g_unsetenv (const gchar *variable); Removes an environment variable from the environment. Note that on some systems, when variables are overwritten, the memory used for the previous variables and its value isn't reclaimed. Furthermore, this function can't be guaranteed to operate in a threadsafe way.
Since 2.4 g_listenv ()gchar** g_listenv (void); Gets the names of all variables set in the environment.
Since 2.8 g_get_user_name ()const gchar* g_get_user_name (void); Gets the user name of the current user. The encoding of the returned string is system-defined. On UNIX, it might be the preferred file name encoding, or something else, and there is no guarantee that it is even consistent on a machine. On Windows, it is always UTF-8.
g_get_real_name ()const gchar* g_get_real_name (void);
Gets the real name of the user. This usually comes from the user's entry
in the
g_get_user_cache_dir ()const gchar* g_get_user_cache_dir (void); Returns a base directory in which to store non-essential, cached data specific to particular user. On UNIX platforms this is determined using the mechanisms described in the XDG Base Directory Specification
Since 2.6 g_get_user_data_dir ()const gchar* g_get_user_data_dir (void); Returns a base directory in which to access application data such as icons that is customized for a particular user. On UNIX platforms this is determined using the mechanisms described in the XDG Base Directory Specification
Since 2.6 g_get_user_config_dir ()const gchar* g_get_user_config_dir (void); Returns a base directory in which to store user-specific application configuration information such as user preferences and settings. On UNIX platforms this is determined using the mechanisms described in the XDG Base Directory Specification
Since 2.6 enum GUserDirectorytypedef enum {
G_USER_DIRECTORY_DESKTOP,
G_USER_DIRECTORY_DOCUMENTS,
G_USER_DIRECTORY_DOWNLOAD,
G_USER_DIRECTORY_MUSIC,
G_USER_DIRECTORY_PICTURES,
G_USER_DIRECTORY_PUBLIC_SHARE,
G_USER_DIRECTORY_TEMPLATES,
G_USER_DIRECTORY_VIDEOS,
G_USER_N_DIRECTORIES
} GUserDirectory;
These are logical ids for special directories which are defined
depending on the platform used. You should use The GUserDirectory enumeration can be extended at later date. Not every platform has a directory for every logical id in this enumeration.
Since 2.14 g_get_user_special_dir ()const gchar* g_get_user_special_dir (GUserDirectory directory); Returns the full path of a special directory using its logical id.
On Unix this is done using the XDG special user directories.
For compatibility with existing practise, Depending on the platform, the user might be able to change the path of the special directory without requiring the session to restart; GLib will not reflect any change once the special directories are loaded.
Since 2.14 g_get_system_data_dirs ()const gchar* const * g_get_system_data_dirs (void); Returns an ordered list of base directories in which to access system-wide application data. On UNIX platforms this is determined using the mechanisms described in the XDG Base Directory Specification On Windows the first elements in the list are the Application Data and Documents folders for All Users. (These can be determined only on Windows 2000 or later and are not present in the list on other Windows versions.) See documentation for CSIDL_COMMON_APPDATA and CSIDL_COMMON_DOCUMENTS. Then follows the "share" subfolder in the installation folder for the package containing the DLL that calls this function, if it can be determined. Finally the list contains the "share" subfolder in the installation folder for GLib, and in the installation folder for the package the application's .exe file belongs to. The installation folders above are determined by looking up the folder where the module (DLL or EXE) in question is located. If the folder's name is "bin", its parent is used, otherwise the folder itself. Note that on Windows the returned list can vary depending on where this function is called.
Since 2.6 g_get_system_config_dirs ()const gchar* const * g_get_system_config_dirs (void); Returns an ordered list of base directories in which to access system-wide configuration information. On UNIX platforms this is determined using the mechanisms described in the XDG Base Directory Specification
Since 2.6 g_get_host_name ()const gchar* g_get_host_name (void); Return a name for the machine. The returned name is not necessarily a fully-qualified domain name, or even present in DNS or some other name service at all. It need not even be unique on your local network or site, but usually it is. Callers should not rely on the return value having any specific properties like uniqueness for security purposes. Even if the name of the machine is changed while an application is running, the return value from this function does not change. The returned string is owned by GLib and should not be modified or freed. If no name can be determined, a default fixed string "localhost" is returned.
Since 2.8 g_get_home_dir ()const gchar* g_get_home_dir (void); Gets the current user's home directory as defined in the password database.
Note that in contrast to traditional UNIX tools, this function
prefers
One of the reasons for this decision is that applications in many
cases need special handling to deal with the case where
Since applications are in general not written
to deal with these situations it was considered better to make
const char *homedir = g_getenv ("HOME");
if (!homedir)
homedir = g_get_home_dir ();
g_get_tmp_dir ()const gchar* g_get_tmp_dir (void);
Gets the directory to use for temporary files. This is found from
inspecting the environment variables
g_get_current_dir ()gchar* g_get_current_dir (void); Gets the current directory. The returned string should be freed when no longer needed. The encoding of the returned string is system defined. On Windows, it is always UTF-8.
g_basename ()const gchar* g_basename (const gchar *file_name); Warning
Gets the name of the file without any leading directory components. It returns a pointer into the given file name string.
g_dirname#define g_dirname Warning
This function is deprecated and will be removed in the next major
release of GLib. Use Gets the directory components of a file name. If the file name has no directory components "." is returned. The returned string should be freed when no longer needed.
g_path_is_absolute ()gboolean g_path_is_absolute (const gchar *file_name);
Returns
g_path_skip_root ()const gchar* g_path_skip_root (const gchar *file_name);
Returns a pointer into
g_path_get_basename ()gchar* g_path_get_basename (const gchar *file_name);
Gets the last component of the filename. If
g_path_get_dirname ()gchar* g_path_get_dirname (const gchar *file_name); Gets the directory components of a file name. If the file name has no directory components "." is returned. The returned string should be freed when no longer needed.
g_build_filename ()gchar* g_build_filename (const gchar *first_element, ...); Creates a filename from a series of elements using the correct separator for filenames.
On Unix, this function behaves identically to
On Windows, it takes into account that either the backslash
( No attempt is made to force the resulting filename to be an absolute path. If the first element is a relative path, the result will be a relative path.
g_build_filenamev ()gchar* g_build_filenamev (gchar **args);
Behaves exactly like
Since 2.8 g_build_path ()gchar* g_build_path (const gchar *separator, const gchar *first_element, ...);
Creates a path from a series of elements using Empty elements are ignored. The number of leading copies of the separator on the result is the same as the number of leading copies of the separator on the first non-empty element.
The number of trailing copies of the separator on the result is
the same as the number of trailing copies of the separator on
the last non-empty element. (Determination of the number of
trailing copies is done without stripping leading copies, so
if the separator is However, if there is only a single non-empty element, and there are no characters in that element not part of the leading or trailing separators, then the result is exactly the original value of that element. Other than for determination of the number of leading and trailing copies of the separator, elements consisting only of copies of the separator are ignored.
g_build_pathv ()gchar* g_build_pathv (const gchar *separator, gchar **args);
Behaves exactly like
Since 2.8 g_format_size_for_display ()char* g_format_size_for_display (goffset size); Formats a size (for example the size of a file) into a human readable string. Sizes are rounded to the nearest size prefix (KB, MB, GB) and are displayed rounded to the nearest tenth. E.g. the file size 3292528 bytes will be converted into the string "3.1 MB". The prefix units base is 1024 (i.e. 1 KB is 1024 bytes).
This string should be freed with
Since 2.16 g_find_program_in_path ()gchar* g_find_program_in_path (const gchar *program);
Locates the first executable named
On Windows, it looks for the file in the same way as
g_bit_nth_lsf ()gint g_bit_nth_lsf (gulong mask, gint nth_bit);
Find the position of the first bit set in
g_bit_nth_msf ()gint g_bit_nth_msf (gulong mask, gint nth_bit);
Find the position of the first bit set in
g_bit_storage ()guint g_bit_storage (gulong number);
Gets the number of bits used to hold
g_spaced_primes_closest ()guint g_spaced_primes_closest (guint num);
Gets the smallest prime number from a built-in array of primes which
is larger than The built-in array of primes ranges from 11 to 13845163 such that each prime is approximately 1.5-2 times the previous prime.
g_atexit ()void g_atexit (GVoidFunc func); Specifies a function to be called at normal program termination.
Since GLib 2.8.2, on Windows
The behaviour of
On POSIX systems, calling
Some POSIX systems implement On other POSIX systems, before a dynamically loaded module is unloaded, the registered atexit functions (if any) residing in that module are called, regardless where the code that registered them resided. This is presumably the most robust approach.
As can be seen from the above, for portability it's best to avoid
calling
g_parse_debug_string ()guint g_parse_debug_string (const gchar *string, const GDebugKey *keys, guint nkeys);
Parses a string containing debugging options
into a
GDebugKeytypedef struct {
gchar *key;
guint value;
} GDebugKey;
Associates a string with a bit flag.
Used in GVoidFunc ()void (*GVoidFunc) (void);
Declares a type of function which takes no arguments and has no return value.
It is used to specify the type function passed to GFreeFunc ()void (*GFreeFunc) (gpointer data); Declares a type of function which takes an arbitrary data pointer argument and has no return value. It is not currently used in GLib or GTK+.
g_qsort_with_data ()void g_qsort_with_data (gconstpointer pbase, gint total_elems, gsize size, GCompareDataFunc compare_func, gpointer user_data);
This is just like the standard C
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||