19b52a45c8499ff2910f49dcf60cb121a99e286f
[src/app-framework-binder.git] / src / afb-common.c
1 /*
2  * Copyright (C) 2015-2019 "IoT.bzh"
3  * Author José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define _GNU_SOURCE
19
20 #include <unistd.h>
21 #include <fcntl.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24
25 #include "afb-common.h"
26 #include "locale-root.h"
27
28 static const char *default_locale = NULL;
29 static struct locale_root *rootdir = NULL;
30
31 void afb_common_default_locale_set(const char *locale)
32 {
33         default_locale = locale;
34 }
35
36 const char *afb_common_default_locale_get()
37 {
38         return default_locale;
39 }
40
41 int afb_common_rootdir_set(const char *dirname)
42 {
43         int dirfd, rc;
44         struct locale_root *root;
45         struct locale_search *search;
46
47         rc = -1;
48         dirfd = openat(AT_FDCWD, dirname, O_PATH|O_DIRECTORY);
49         if (dirfd < 0) {
50                 /* TODO message */
51         } else {
52                 root = locale_root_create(dirfd);
53                 if (root == NULL) {
54                         /* TODO message */
55                         close(dirfd);
56                 } else {
57                         rc = 0;
58                         if (default_locale != NULL) {
59                                 search = locale_root_search(root, default_locale, 0);
60                                 if (search == NULL) {
61                                         /* TODO message */
62                                 } else {
63                                         locale_root_set_default_search(root, search);
64                                         locale_search_unref(search);
65                                 }
66                         }
67                         locale_root_unref(rootdir);
68                         rootdir = root;
69                 }
70         }
71         return rc;
72 }
73
74 int afb_common_rootdir_get_fd()
75 {
76         return locale_root_get_dirfd(rootdir);
77 }
78
79 int afb_common_rootdir_open_locale(const char *filename, int flags, const char *locale)
80 {
81         return locale_root_open(rootdir, filename, flags, locale);
82 }
83
84