gd_fragment_namespace—report or change the root namespace of a fragment of a dirfile database
#include <getdata.h>
const char *gd_fragment_namespace(DIRFILE *dirfile, int fragment_index, char *new_namespace);
The gd_fragment_namespace() function can be used to update and/or query the root namespace of a fragment in the dirfile(5) database specified by dirfile.
If new_namespace is NULL, then the current root namespace of the fragment indexed by fragment_index is returned. If new_namespace is non-NULL, then the root namespace is first changed to the string provided before being reported. The new namespace may optionally contain a single, trailing dot (.). To remove an existing root namespace, pass a pointer to the empty string ("") as new_namespace.
The root namespace of the root format file (the one indexed by fragment_index=0) may not be changed. It is always the empty string.
The dirfile argument must point to a valid DIRFILE object previously created by a call to gd_open(3).
Upon successful completion, gd_fragment_namespace() returns a non-NULL pointer to a read-only string containing the current root namespace of the fragment specified. This will be a copy of the string new_namespace, if that parameter was non-NULL. If the fragment's root namespace is empty, a pointer to the empty string ("") will be returned.
On error, this function returns NULL and sets the dirfile error to a non-zero error value. Possible dirfile error values are:
The dirfile error may be retrieved by calling gd_error(3). A descriptive error string for the last error encountered can be obtained from a call to gd_error_string(3).
The gd_fragment_namespace() function appeared in GetData-0.10.0.
gd_alter_affixes(3), gd_include_ns(3), gd_open(3), dirfile(5), dirfile-format(5)