| 1 | /* Load needed message catalogs.
|
|---|
| 2 | Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
|---|
| 3 |
|
|---|
| 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)
|
|---|
| 7 | any later version.
|
|---|
| 8 |
|
|---|
| 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.
|
|---|
| 13 |
|
|---|
| 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. */
|
|---|
| 17 |
|
|---|
| 18 | #ifdef HAVE_CONFIG_H
|
|---|
| 19 | # include <config.h>
|
|---|
| 20 | #endif
|
|---|
| 21 |
|
|---|
| 22 | #include <fcntl.h>
|
|---|
| 23 | #include <sys/types.h>
|
|---|
| 24 | #include <sys/stat.h>
|
|---|
| 25 |
|
|---|
| 26 | #if defined STDC_HEADERS || defined _LIBC
|
|---|
| 27 | # include <stdlib.h>
|
|---|
| 28 | #endif
|
|---|
| 29 |
|
|---|
| 30 | #if defined HAVE_UNISTD_H || defined _LIBC
|
|---|
| 31 | # include <unistd.h>
|
|---|
| 32 | #endif
|
|---|
| 33 |
|
|---|
| 34 | #if (defined HAVE_MMAP && defined HAVE_MUNMAP) || defined _LIBC
|
|---|
| 35 | # include <sys/mman.h>
|
|---|
| 36 | #endif
|
|---|
| 37 |
|
|---|
| 38 | #include "gettext.h"
|
|---|
| 39 | #include "gettextP.h"
|
|---|
| 40 |
|
|---|
| 41 | /* @@ end of prolog @@ */
|
|---|
| 42 |
|
|---|
| 43 | #ifdef _LIBC
|
|---|
| 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 open __open
|
|---|
| 48 | # define close __close
|
|---|
| 49 | # define read __read
|
|---|
| 50 | # define mmap __mmap
|
|---|
| 51 | # define munmap __munmap
|
|---|
| 52 | #endif
|
|---|
| 53 |
|
|---|
| 54 | /* We need a sign, whether a new catalog was loaded, which can be associated
|
|---|
| 55 | with all translations. This is important if the translations are
|
|---|
| 56 | cached by one of GCC's features. */
|
|---|
| 57 | int _nl_msg_cat_cntr = 0;
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 | /* Load the message catalogs specified by FILENAME. If it is no valid
|
|---|
| 61 | message catalog do nothing. */
|
|---|
| 62 | void
|
|---|
| 63 | internal_function
|
|---|
| 64 | _nl_load_domain (domain_file)
|
|---|
| 65 | struct loaded_l10nfile *domain_file;
|
|---|
| 66 | {
|
|---|
| 67 | int fd;
|
|---|
| 68 | size_t size;
|
|---|
| 69 | struct stat st;
|
|---|
| 70 | struct mo_file_header *data = (struct mo_file_header *) -1;
|
|---|
| 71 | #if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
|
|---|
| 72 | || defined _LIBC
|
|---|
| 73 | int use_mmap = 0;
|
|---|
| 74 | #endif
|
|---|
| 75 | struct loaded_domain *domain;
|
|---|
| 76 |
|
|---|
| 77 | domain_file->decided = 1;
|
|---|
| 78 | domain_file->data = NULL;
|
|---|
| 79 |
|
|---|
| 80 | /* If the record does not represent a valid locale the FILENAME
|
|---|
| 81 | might be NULL. This can happen when according to the given
|
|---|
| 82 | specification the locale file name is different for XPG and CEN
|
|---|
| 83 | syntax. */
|
|---|
| 84 | if (domain_file->filename == NULL)
|
|---|
| 85 | return;
|
|---|
| 86 |
|
|---|
| 87 | /* Try to open the addressed file. */
|
|---|
| 88 | fd = open (domain_file->filename, O_RDONLY);
|
|---|
| 89 | if (fd == -1)
|
|---|
| 90 | return;
|
|---|
| 91 |
|
|---|
| 92 | /* We must know about the size of the file. */
|
|---|
| 93 | if (fstat (fd, &st) != 0
|
|---|
| 94 | || (size = (size_t) st.st_size) != st.st_size
|
|---|
| 95 | || size < sizeof (struct mo_file_header))
|
|---|
| 96 | {
|
|---|
| 97 | /* Something went wrong. */
|
|---|
| 98 | close (fd);
|
|---|
| 99 | return;
|
|---|
| 100 | }
|
|---|
| 101 |
|
|---|
| 102 | #if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
|
|---|
| 103 | || defined _LIBC
|
|---|
| 104 | /* Now we are ready to load the file. If mmap() is available we try
|
|---|
| 105 | this first. If not available or it failed we try to load it. */
|
|---|
| 106 | data = (struct mo_file_header *) mmap (NULL, size, PROT_READ,
|
|---|
| 107 | MAP_PRIVATE, fd, 0);
|
|---|
| 108 |
|
|---|
| 109 | if (data != (struct mo_file_header *) -1)
|
|---|
| 110 | {
|
|---|
| 111 | /* mmap() call was successful. */
|
|---|
| 112 | close (fd);
|
|---|
| 113 | use_mmap = 1;
|
|---|
| 114 | }
|
|---|
| 115 | #endif
|
|---|
| 116 |
|
|---|
| 117 | /* If the data is not yet available (i.e. mmap'ed) we try to load
|
|---|
| 118 | it manually. */
|
|---|
| 119 | if (data == (struct mo_file_header *) -1)
|
|---|
| 120 | {
|
|---|
|
|---|