OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [insight/] [intl/] [loadmsgcat.c] - Diff between revs 579 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 579 Rev 1765
/* Load needed message catalogs
/* Load needed message catalogs
   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   the Free Software Foundation; either version 2, or (at your option)
   any later version.
   any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software Foundation,
   along with this program; if not, write to the Free Software Foundation,
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include <config.h>
# include <config.h>
#endif
#endif
 
 
#include <fcntl.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/stat.h>
 
 
#if defined STDC_HEADERS || defined _LIBC
#if defined STDC_HEADERS || defined _LIBC
# include <stdlib.h>
# include <stdlib.h>
#endif
#endif
 
 
#if defined HAVE_UNISTD_H || defined _LIBC
#if defined HAVE_UNISTD_H || defined _LIBC
# include <unistd.h>
# include <unistd.h>
#endif
#endif
 
 
#if (defined HAVE_MMAP && defined HAVE_MUNMAP) || defined _LIBC
#if (defined HAVE_MMAP && defined HAVE_MUNMAP) || defined _LIBC
# include <sys/mman.h>
# include <sys/mman.h>
#endif
#endif
 
 
#include "gettext.h"
#include "gettext.h"
#include "gettextP.h"
#include "gettextP.h"
 
 
/* @@ end of prolog @@ */
/* @@ end of prolog @@ */
 
 
#ifdef _LIBC
#ifdef _LIBC
/* Rename the non ISO C functions.  This is required by the standard
/* Rename the non ISO C functions.  This is required by the standard
   because some ISO C functions will require linking with this object
   because some ISO C functions will require linking with this object
   file and the name space must not be polluted.  */
   file and the name space must not be polluted.  */
# define fstat  __fstat
# define fstat  __fstat
# define open   __open
# define open   __open
# define close  __close
# define close  __close
# define read   __read
# define read   __read
# define mmap   __mmap
# define mmap   __mmap
# define munmap __munmap
# define munmap __munmap
#endif
#endif
 
 
/* We need a sign, whether a new catalog was loaded, which can be associated
/* We need a sign, whether a new catalog was loaded, which can be associated
   with all translations.  This is important if the translations are
   with all translations.  This is important if the translations are
   cached by one of GCC's features.  */
   cached by one of GCC's features.  */
int _nl_msg_cat_cntr = 0;
int _nl_msg_cat_cntr = 0;
 
 
 
 
/* Load the message catalogs specified by FILENAME.  If it is no valid
/* Load the message catalogs specified by FILENAME.  If it is no valid
   message catalog do nothing.  */
   message catalog do nothing.  */
void
void
_nl_load_domain (domain_file)
_nl_load_domain (domain_file)
     struct loaded_l10nfile *domain_file;
     struct loaded_l10nfile *domain_file;
{
{
  int fd;
  int fd;
  struct stat st;
  struct stat st;
  struct mo_file_header *data = (struct mo_file_header *) -1;
  struct mo_file_header *data = (struct mo_file_header *) -1;
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
    || defined _LIBC
    || defined _LIBC
  int use_mmap = 0;
  int use_mmap = 0;
#endif
#endif
  struct loaded_domain *domain;
  struct loaded_domain *domain;
 
 
  domain_file->decided = 1;
  domain_file->decided = 1;
  domain_file->data = NULL;
  domain_file->data = NULL;
 
 
  /* If the record does not represent a valid locale the FILENAME
  /* If the record does not represent a valid locale the FILENAME
     might be NULL.  This can happen when according to the given
     might be NULL.  This can happen when according to the given
     specification the locale file name is different for XPG and CEN
     specification the locale file name is different for XPG and CEN
     syntax.  */
     syntax.  */
  if (domain_file->filename == NULL)
  if (domain_file->filename == NULL)
    return;
    return;
 
 
  /* Try to open the addressed file.  */
  /* Try to open the addressed file.  */
  fd = open (domain_file->filename, O_RDONLY);
  fd = open (domain_file->filename, O_RDONLY);
  if (fd == -1)
  if (fd == -1)
    return;
    return;
 
 
  /* We must know about the size of the file.  */
  /* We must know about the size of the file.  */
  if (fstat (fd, &st) != 0
  if (fstat (fd, &st) != 0
      && st.st_size < (off_t) sizeof (struct mo_file_header))
      && st.st_size < (off_t) sizeof (struct mo_file_header))
    {
    {
      /* Something went wrong.  */
      /* Something went wrong.  */
      close (fd);
      close (fd);
      return;
      return;
    }
    }
 
 
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
    || defined _LIBC
    || defined _LIBC
  /* Now we are ready to load the file.  If mmap() is available we try
  /* Now we are ready to load the file.  If mmap() is available we try
     this first.  If not available or it failed we try to load it.  */
     this first.  If not available or it failed we try to load it.  */
  data = (struct mo_file_header *) mmap (NULL, st.st_size, PROT_READ,
  data = (struct mo_file_header *) mmap (NULL, st.st_size, PROT_READ,
                                         MAP_PRIVATE, fd, 0);
                                         MAP_PRIVATE, fd, 0);
 
 
  if (data != (struct mo_file_header *) -1)
  if (data != (struct mo_file_header *) -1)
    {
    {
      /* mmap() call was successful.  */
      /* mmap() call was successful.  */
      close (fd);
      close (fd);
      use_mmap = 1;
      use_mmap = 1;
    }
    }
#endif
#endif
 
 
  /* If the data is not yet available (i.e. mmap'ed) we try to load
  /* If the data is not yet available (i.e. mmap'ed) we try to load
     it manually.  */
     it manually.  */
  if (data == (struct mo_file_header *) -1)
  if (data == (struct mo_file_header *) -1)
    {
    {
      off_t to_read;
      off_t to_read;
      char *read_ptr;
      char *read_ptr;
 
 
      data = (struct mo_file_header *) malloc (st.st_size);
      data = (struct mo_file_header *) malloc (st.st_size);
      if (data == NULL)
      if (data == NULL)
        return;
        return;
 
 
      to_read = st.st_size;
      to_read = st.st_size;
      read_ptr = (char *) data;
      read_ptr = (char *) data;
      do
      do
        {
        {
          long int nb = (long int) read (fd, read_ptr, to_read);
          long int nb = (long int) read (fd, read_ptr, to_read);
          if (nb == -1)
          if (nb == -1)
            {
            {
              close (fd);
              close (fd);
              return;
              return;
            }
            }
 
 
          read_ptr += nb;
          read_ptr += nb;
          to_read -= nb;
          to_read -= nb;
        }
        }
      while (to_read > 0);
      while (to_read > 0);
 
 
      close (fd);
      close (fd);
    }
    }
 
 
  /* Using the magic number we can test whether it really is a message
  /* Using the magic number we can test whether it really is a message
     catalog file.  */
     catalog file.  */
  if (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED)
  if (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED)
    {
    {
      /* The magic number is wrong: not a message catalog file.  */
      /* The magic number is wrong: not a message catalog file.  */
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
    || defined _LIBC
    || defined _LIBC
      if (use_mmap)
      if (use_mmap)
        munmap ((caddr_t) data, st.st_size);
        munmap ((caddr_t) data, st.st_size);
      else
      else
#endif
#endif
        free (data);
        free (data);
      return;
      return;
    }
    }
 
 
  domain_file->data
  domain_file->data
    = (struct loaded_domain *) malloc (sizeof (struct loaded_domain));
    = (struct loaded_domain *) malloc (sizeof (struct loaded_domain));
  if (domain_file->data == NULL)
  if (domain_file->data == NULL)
    return;
    return;
 
 
  domain = (struct loaded_domain *) domain_file->data;
  domain = (struct loaded_domain *) domain_file->data;
  domain->data = (char *) data;
  domain->data = (char *) data;
  domain->must_swap = data->magic != _MAGIC;
  domain->must_swap = data->magic != _MAGIC;
 
 
  /* Fill in the information about the available tables.  */
  /* Fill in the information about the available tables.  */
  switch (W (domain->must_swap, data->revision))
  switch (W (domain->must_swap, data->revision))
    {
    {
    case 0:
    case 0:
      domain->nstrings = W (domain->must_swap, data->nstrings);
      domain->nstrings = W (domain->must_swap, data->nstrings);
      domain->orig_tab = (struct string_desc *)
      domain->orig_tab = (struct string_desc *)
        ((char *) data + W (domain->must_swap, data->orig_tab_offset));
        ((char *) data + W (domain->must_swap, data->orig_tab_offset));
      domain->trans_tab = (struct string_desc *)
      domain->trans_tab = (struct string_desc *)
        ((char *) data + W (domain->must_swap, data->trans_tab_offset));
        ((char *) data + W (domain->must_swap, data->trans_tab_offset));
      domain->hash_size = W (domain->must_swap, data->hash_tab_size);
      domain->hash_size = W (domain->must_swap, data->hash_tab_size);
      domain->hash_tab = (nls_uint32 *)
      domain->hash_tab = (nls_uint32 *)
        ((char *) data + W (domain->must_swap, data->hash_tab_offset));
        ((char *) data + W (domain->must_swap, data->hash_tab_offset));
      break;
      break;
    default:
    default:
      /* This is an illegal revision.  */
      /* This is an illegal revision.  */
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \
    || defined _LIBC
    || defined _LIBC
      if (use_mmap)
      if (use_mmap)
        munmap ((caddr_t) data, st.st_size);
        munmap ((caddr_t) data, st.st_size);
      else
      else
#endif
#endif
        free (data);
        free (data);
      free (domain);
      free (domain);
      domain_file->data = NULL;
      domain_file->data = NULL;
      return;
      return;
    }
    }
 
 
  /* Show that one domain is changed.  This might make some cached
  /* Show that one domain is changed.  This might make some cached
     translations invalid.  */
     translations invalid.  */
  ++_nl_msg_cat_cntr;
  ++_nl_msg_cat_cntr;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.