source: trunk/src/binutils/intl/loadmsgcat.c@ 239

Last change on this file since 239 was 10, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 5.5 KB
Line 
1/* Load needed message catalogs
2 Copyright (C) 1995, 1996, 1997 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 fstat __fstat
48# define open __open
49# define close __close
50# define read __read
51# define mmap __mmap
52# define munmap __munmap
53#endif
54
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. */
58int _nl_msg_cat_cntr = 0;
59
60
61/* Load the message catalogs specified by FILENAME. If it is no valid
62 message catalog do nothing. */
63void
64_nl_load_domain (domain_file)
65 struct loaded_l10nfile *domain_file;
66{
67 int fd;
68 struct stat st;
69 struct mo_file_header *data = (struct mo_file_header *) -1;
70#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
71 || defined _LIBC
72 int use_mmap = 0;
73#endif
74 struct loaded_domain *domain;
75
76 domain_file->decided = 1;
77 domain_file->data = NULL;
78
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
82 syntax. */
83 if (domain_file->filename == NULL)
84 return;
85
86 /* Try to open the addressed file. */
87 fd = open (domain_file->filename, O_RDONLY);
88 if (fd == -1)
89 return;
90
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))
94 {
95 /* Something went wrong. */
96 close (fd);
97 return;
98 }
99
100#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
101 || defined _LIBC
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,