libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
locale.hxx File Reference
#include <locale.h>
#include <string>
#include <cosmos/dso_export.h>
#include <cosmos/SysString.hxx>

Go to the source code of this file.

Enumerations

enum class  cosmos::locale::Category : int {
  ALL = LC_ALL , COLLATE = LC_COLLATE , CTYPE = LC_CTYPE , MESSAGES = LC_MESSAGES ,
  MONETARY = LC_MONETARY , NUMERIC = LC_NUMERIC , TIME = LC_TIME
}
 Different Locale Categories that can be configured. More...
 

Functions

std::string cosmos::locale::get (Category category)
 Returns a string describing the currently active locale setting for the given category.
 
void cosmos::locale::set (Category category, const SysString val)
 Set the given locale category to the given value.
 
void cosmos::locale::set_to_default (Category category)
 Set the given locale category to its default value ("C" or "POSIX").
 
void cosmos::locale::set_from_environment (Category category)
 Set the given locale category according to present environment variables.
 

Detailed Description

This header contains locale specific types and functionality.

Beware that the following functions are not thread-safe (by C-API design)

Setting up the locale should be done in the main thread of a program early on so that this poses no problem.

Definition in file locale.hxx.

Enumeration Type Documentation

◆ Category

enum class cosmos::locale::Category : int
strong

Different Locale Categories that can be configured.

Enumerator
ALL 

all aspects of the locale

COLLATE 

comparison of strings

CTYPE 

character classification (e.g. alphanumeric, numeric, ...)

MESSAGES 

natural language messages

MONETARY 

formatting of monetary values

NUMERIC 

non-monetary numeric values

TIME 

formatting of date and time values

Definition at line 27 of file locale.hxx.

27 : int {
28 ALL = LC_ALL,
29 COLLATE = LC_COLLATE,
30 CTYPE = LC_CTYPE,
31 MESSAGES = LC_MESSAGES,
32 MONETARY = LC_MONETARY,
33 NUMERIC = LC_NUMERIC,
34 TIME = LC_TIME
35#ifdef LC_ADDRESS /* the following are GNU extensions */
36 ,ADDRESS = LC_ADDRESS,
37 IDENTIFICATION = LC_IDENTIFICATION,
38 MEASUREMENT = LC_MEASUREMENT,
39 NAME = LC_NAME,
40 PAPER = LC_PAPER,
41 TELEPHONE = LC_TELEPHONE
42#endif
43};
@ CTYPE
character classification (e.g. alphanumeric, numeric, ...)
@ TIME
formatting of date and time values
@ ALL
all aspects of the locale
@ NUMERIC
non-monetary numeric values
@ MESSAGES
natural language messages
@ MONETARY
formatting of monetary values
@ COLLATE
comparison of strings

Function Documentation

◆ get()

COSMOS_API std::string cosmos::locale::get ( Category category)

Returns a string describing the currently active locale setting for the given category.

Definition at line 14 of file locale.cxx.

14 {
15 // this string is potentially statically allocated and will be
16 // overwritten by future calls to setlocale()
17 char *locale = ::setlocale(get_cat(category), nullptr);
18 return locale;
19}

◆ set()

COSMOS_API void cosmos::locale::set ( Category category,
const SysString val )

Set the given locale category to the given value.

This may throw an ApiError if the request cannot be honored.

Definition at line 21 of file locale.cxx.

21 {
22 if (::setlocale(get_cat(category), val.raw()) == nullptr) {
23 cosmos_throw (ApiError("setlocale()"));
24 }
25}

◆ set_from_environment()

COSMOS_API void cosmos::locale::set_from_environment ( Category category)

Set the given locale category according to present environment variables.

This function call will inspect the environment variables and set the given locale category accordingly (setlocale(cat, "").

Definition at line 31 of file locale.cxx.

31 {
32 set(category, "");
33}

◆ set_to_default()

COSMOS_API void cosmos::locale::set_to_default ( Category category)

Set the given locale category to its default value ("C" or "POSIX").

Definition at line 27 of file locale.cxx.

27 {
28 set(category, "C");
29}