libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
locale.cxx
1// cosmos
2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/locale.hxx>
4#include <cosmos/utils.hxx>
5
6namespace cosmos::locale {
7
8namespace {
9 auto get_cat(Category cat) {
10 return to_integral(cat);
11 }
12}
13
14std::string get(Category category) {
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}
20
21void set(Category category, const SysString val) {
22 if (::setlocale(get_cat(category), val.raw()) == nullptr) {
23 cosmos_throw (ApiError("setlocale()"));
24 }
25}
26
27void set_to_default(Category category) {
28 set(category, "C");
29}
30
31void set_from_environment(Category category) {
32 set(category, "");
33}
34
35} // end ns