1
/* Load needed message catalogs
2
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
4
This program is free software; you can redistribute it and/or modify
5
it under the terms of the GNU General Public License as published by
6
the Free Software Foundation; either version 2, or (at your option)
9
This program is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
GNU General Public License for more details.
14
You should have received a copy of the GNU General Public License
15
along with this program; if not, write to the Free Software Foundation,
16
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22
#include <sys/types.h>
26
#if defined STDC_HEADERS || defined _LIBC
30
#if defined HAVE_UNISTD_H || defined _LIBC
34
#if (defined HAVE_MMAP && defined HAVE_MUNMAP) || defined _LIBC
35
# include <sys/mman.h>
41
/* @@ end of prolog @@ */
44
/* Rename the non ISO C functions. This is required by the standard
45
because some ISO C functions will require linking with this object
46
file and the name space must not be polluted. */
47
# define fstat __fstat
49
# define close __close
52
# define munmap __munmap
55
/* We need a sign, whether a new catalog was loaded, which can be associated
56
with all translations. This is important if the translations are
57
cached by one of GCC's features. */
58
int _nl_msg_cat_cntr = 0;
61
/* Load the message catalogs specified by FILENAME. If it is no valid
62
message catalog do nothing. */
64
_nl_load_domain (domain_file)
65
struct loaded_l10nfile *domain_file;
69
struct mo_file_header *data = (struct mo_file_header *) -1;
70
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
74
struct loaded_domain *domain;
76
domain_file->decided = 1;
77
domain_file->data = NULL;
79
/* If the record does not represent a valid locale the FILENAME
80
might be NULL. This can happen when according to the given
81
specification the locale file name is different for XPG and CEN
83
if (domain_file->filename == NULL)
86
/* Try to open the addressed file. */
87
fd = open (domain_file->filename, O_RDONLY);
91
/* We must know about the size of the file. */
92
if (fstat (fd, &st) != 0
93
&& st.st_size < (off_t) sizeof (struct mo_file_header))
95
/* Something went wrong. */
100
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
102
/* Now we are ready to load the file. If mmap() is available we try
103
this first. If not available or it failed we try to load it. */
104
data = (struct mo_file_header *) mmap (NULL, st.st_size, PROT_READ,
107
if (data != (struct mo_file_header *) -1)
109
/* mmap() call was successful. */
115
/* If the data is not yet available (i.e. mmap'ed) we try to load
117
if (data == (struct mo_file_header *) -1)
122
data = (struct mo_file_header *) malloc (st.st_size);
126
to_read = st.st_size;
127
read_ptr = (char *) data;
130
long int nb = (long int) read (fd, read_ptr, to_read);
145
/* Using the magic number we can test whether it really is a message
147
if (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED)
149
/* The magic number is wrong: not a message catalog file. */
150
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
153
munmap ((caddr_t) data, st.st_size);
161
= (struct loaded_domain *) malloc (sizeof (struct loaded_domain));
162
if (domain_file->data == NULL)
165
domain = (struct loaded_domain *) domain_file->data;
166
domain->data = (char *) data;
167
domain->must_swap = data->magic != _MAGIC;
169
/* Fill in the information about the available tables. */
170
switch (W (domain->must_swap, data->revision))
173
domain->nstrings = W (domain->must_swap, data->nstrings);
174
domain->orig_tab = (struct string_desc *)
175
((char *) data + W (domain->must_swap, data->orig_tab_offset));
176
domain->trans_tab = (struct string_desc *)
177
((char *) data + W (domain->must_swap, data->trans_tab_offset));
178
domain->hash_size = W (domain->must_swap, data->hash_tab_size);
179
domain->hash_tab = (nls_uint32 *)
180
((char *) data + W (domain->must_swap, data->hash_tab_offset));
183
/* This is an illegal revision. */
184
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
187
munmap ((caddr_t) data, st.st_size);
192
domain_file->data = NULL;
196
/* Show that one domain is changed. This might make some cached
197
translations invalid. */