"bindtextdomain">

NAME

bindtextdomain, bind_textdomain_codeset, textdomain — text domain manipulation functions

SYNOPSIS

#include <libintl.h>

char *bindtextdomain(const char *
domainname, const char *dirname);
char *bind_textdomain_codeset(const char *
domainname,
       const char *
codeset);
char *textdomain(const char *
domainname);

DESCRIPTION

The textdomain() function shall set or query the name of the current text domain of the calling process. The application shall ensure that the domainname argument is either a null pointer (when querying), an empty string, or a string that, when used by the gettext family of functions to construct a pathname to a messages object, results in a valid pathname. For portable applications, it should only contain characters from the portable filename character set.

The text domain setting made by the last successful call to textdomain() shall remain in effect across subsequent calls to setlocale(), uselocale(), and the gettext family of functions.

Applications should not use text domains whose names begin with the strings "SYS_" or "libc". These prefixes are reserved for implementation use.

The current setting of the text domain can be queried without affecting the current state of the domain by calling textdomain() with domainname set to a null pointer. Calling textdomain() with a domainname argument of an empty string shall set the text domain to the default domain, "messages".

The bindtextdomain() function shall set or query the binding of a text domain to a dirname that is used by the gettext family of functions to construct a pathname to a messages object in the text domain:

If a text domain is bound to a relative pathname and the current working directory is changed after the binding is established, the pathnames used by the gettext family of functions to locate messages objects for that text domain are unspecified.

The bind_textdomain_codeset() function shall set or query the binding of a text domain to the output codeset used by the gettext family of functions for message strings retrieved from messages objects for the text domain specified by domainname:

If codeset is a null pointer and domainname is a non-empty string, bind_textdomain_codeset() shall return the current codeset for the named domain, or a null pointer if a codeset has not yet been set. The bind_textdomain_codeset() function can be called multiple times. If successfully called multiple times with the same domainname argument, the last such call shall override the setting made by the previous such call.

RETURN VALUE

The return value from a successful textdomain() call shall be a pointer to a string containing the current setting of the text domain. If domainname is a null pointer, textdomain() shall return a pointer to the string containing the current text domain. If textdomain() was not previously called and domainname is a null string, the name of the default text domain shall be returned. The name of the default text domain shall be the string "messages". If textdomain() fails, a null pointer shall be returned and errno shall be set to indicate the error.

For bindtextdomain() return values see the DESCRIPTION. When bindtextdomain() is called with a non-empty domainname and returns a null pointer, it shall set errno to indicate the error. When bindtextdomain() returns a pathname for a bound text domain, the return value shall be a pointer to a copy of the dirname string passed to the bindtextdomain() call that created the binding. The returned string shall remain valid until the next successful call to bindtextdomain() with a non-empty dirname and same domainname. The application shall ensure that it does not modify the returned string.

A call to the bind_textdomain_codeset() function with a non-empty domainname argument shall return one of the following:

The application shall ensure that it does not modify the returned string. A subsequent call to bind_textdomain_codeset() with a non-empty domainname argument might invalidate the returned pointer or overwrite the string content. The returned pointer might also be invalidated if the calling thread is terminated. If bind_textdomain_codeset() fails, a null pointer shall be returned and errno shall be set to indicate the error.

ERRORS

For the conditions under which bindtextdomain()—if it performs pathname resolution—fails and may fail, refer to open .

In addition, the textdomain(), bindtextdomain(), and bind_textdomain_codeset() functions may fail if:

[ENOMEM]
Insufficient memory available.

The following sections are informative.

EXAMPLES

See the examples for gettext .

APPLICATION USAGE

A text domainname is limited to {TEXTDOMAIN_MAX} bytes.

Application developers are responsible for ensuring that the text domain used is not used by other applications. To minimize the chances of collision, developers can prefix text domains with their company or application name (or both) and an underscore. For example, if your application name was "foo" and you wanted to use the text domain "errors", you could instead use the text domain "foo_errors". Note that if an application can be installed with a configurable name, a text domain prefix based on the application name should change with the application name.

Specifying a relative pathname to the bindtextdomain() function should be avoided, since it may result in messages objects being searched for in a directory relative to the current working directory of the calling process; if the process calls the chdir() function, the directory searched for may also be changed.

Since pathname resolution of dirname might not be performed by bindtextdomain(), but could be performed later by the gettext family of functions, and since the latter have no way to report an error, applications should verify, using for example stat(), that the directory is accessible if this is desired.

RATIONALE

Although the return type of these functions ought to be const char *, it is char * to match historical practice.

Pathname resolution of the dirname argument passed to bindtextdomain() may be performed by bindtextdomain() itself or by the gettext family of functions. If pathname resolution fails in one of the gettext family of functions, it is neither allowed to modify errno nor to return an error, but if pathname resolution fails in bindtextdomain(), it is required to report an error and set errno just like open() does.

Historically, bindtextdomain() did not perform pathname resolution. However, the standard developers decided to allow this as an option so that future implementations can, if desired, open a file descriptor for that directory in bindtextdomain() and then use that file descriptor with openat() in the gettext family of functions.

The dirname parameter to bindtextdomain() may need to be copied to avoid the possibility of the application releasing the memory used by the argument while the gettext family of functions may still need to reference it.

When bindtextdomain() is called with a non-empty domainname and an empty dirname, historical implementations of the gettext family of functions use the empty string for the dirname part of the messages object pathname, resulting in an absolute pathname of the form /localename/categoryname/textdomainname.mo. The standard developers did not believe this behavior to be useful. Using the empty dirname case as a way to remove an existing binding seemed to be a more useful behavior, and would be consistent with the behavior of textdomain(). However, because no historical implementations behave this way, the behavior is left unspecified.

Some implementations set errno to [EAGAIN] to signal memory allocation failures that might succeed if retried and [ENOMEM] for failures that are unlikely to ever succeed, for example due to configured limits. 2.3 Error Numbers permits this behavior; when multiple error conditions are simultaneously true there is no precedence between them.

FUTURE DIRECTIONS

A future version of this standard may require implementations to prefix implementation-provided text domains with either "SYS_" or a prefix related to the implementor's company name to avoid namespace collisions.

A future version of this standard may require bindtextdomain() to remove any binding for domainname when called with a non-empty domainname and an empty dirname.

SEE ALSO

gettext , iconv_open , setlocale , uselocale

XBD <libintl.h> , <limits.h>

XCU msgfmt , xgettext

CHANGE HISTORY

First released in Issue 8.

End of informative text.