Blame locale/programs/ld-messages.c

Packit 6c4009
/* Copyright (C) 1995-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Ulrich Drepper <drepper@gnu.org>, 1995.
Packit 6c4009
Packit 6c4009
   This program is free software; you can redistribute it and/or modify
Packit 6c4009
   it under the terms of the GNU General Public License as published
Packit 6c4009
   by the Free Software Foundation; version 2 of the License, or
Packit 6c4009
   (at your option) any later version.
Packit 6c4009
Packit 6c4009
   This program is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 6c4009
   GNU General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU General Public License
Packit 6c4009
   along with this program; if not, see <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifdef HAVE_CONFIG_H
Packit 6c4009
# include <config.h>
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#include <langinfo.h>
Packit 6c4009
#include <sys/types.h>
Packit 6c4009
#include <regex.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
#include <stdint.h>
Packit 6c4009
#include <sys/uio.h>
Packit 6c4009
Packit 6c4009
#include <assert.h>
Packit 6c4009
Packit 6c4009
#include "localedef.h"
Packit 6c4009
#include "linereader.h"
Packit 6c4009
#include "localeinfo.h"
Packit 6c4009
#include "locfile.h"
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* The real definition of the struct for the LC_MESSAGES locale.  */
Packit 6c4009
struct locale_messages_t
Packit 6c4009
{
Packit 6c4009
  const char *yesexpr;
Packit 6c4009
  const char *noexpr;
Packit 6c4009
  const char *yesstr;
Packit 6c4009
  const char *nostr;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
static void
Packit 6c4009
messages_startup (struct linereader *lr, struct localedef_t *locale,
Packit 6c4009
		  int ignore_content)
Packit 6c4009
{
Packit 6c4009
  if (!ignore_content)
Packit 6c4009
    locale->categories[LC_MESSAGES].messages =
Packit 6c4009
      (struct locale_messages_t *) xcalloc (1,
Packit 6c4009
					    sizeof (struct locale_messages_t));
Packit 6c4009
Packit 6c4009
  if (lr != NULL)
Packit 6c4009
    {
Packit 6c4009
      lr->translate_strings = 1;
Packit 6c4009
      lr->return_widestr = 0;
Packit 6c4009
    }
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
void
Packit 6c4009
messages_finish (struct localedef_t *locale, const struct charmap_t *charmap)
Packit 6c4009
{
Packit 6c4009
  struct locale_messages_t *messages
Packit 6c4009
    = locale->categories[LC_MESSAGES].messages;
Packit 6c4009
  int nothing = 0;
Packit 6c4009
Packit 6c4009
  /* Now resolve copying and also handle completely missing definitions.  */
Packit 6c4009
  if (messages == NULL)
Packit 6c4009
    {
Packit 6c4009
      /* First see whether we were supposed to copy.  If yes, find the
Packit 6c4009
	 actual definition.  */
Packit 6c4009
      if (locale->copy_name[LC_MESSAGES] != NULL)
Packit 6c4009
	{
Packit 6c4009
	  /* Find the copying locale.  This has to happen transitively since
Packit 6c4009
	     the locale we are copying from might also copying another one.  */
Packit 6c4009
	  struct localedef_t *from = locale;
Packit 6c4009
Packit 6c4009
	  do
Packit 6c4009
	    from = find_locale (LC_MESSAGES, from->copy_name[LC_MESSAGES],
Packit 6c4009
				from->repertoire_name, charmap);
Packit 6c4009
	  while (from->categories[LC_MESSAGES].messages == NULL
Packit 6c4009
		 && from->copy_name[LC_MESSAGES] != NULL);
Packit 6c4009
Packit 6c4009
	  messages = locale->categories[LC_MESSAGES].messages
Packit 6c4009
	    = from->categories[LC_MESSAGES].messages;
Packit 6c4009
	}
Packit 6c4009
Packit 6c4009
      /* If there is still no definition issue an warning and create an
Packit 6c4009
	 empty one.  */
Packit 6c4009
      if (messages == NULL)
Packit 6c4009
	{
Packit 6c4009
	  record_warning (_("\
Packit 6c4009
No definition for %s category found"), "LC_MESSAGES");
Packit 6c4009
	  messages_startup (NULL, locale, 0);
Packit 6c4009
	  messages = locale->categories[LC_MESSAGES].messages;
Packit 6c4009
	  nothing = 1;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* The fields YESSTR and NOSTR are optional.  */
Packit 6c4009
  if (messages->yesstr == NULL)
Packit 6c4009
    messages->yesstr = "";
Packit 6c4009
  if (messages->nostr == NULL)
Packit 6c4009
    messages->nostr = "";
Packit 6c4009
Packit 6c4009
  if (messages->yesexpr == NULL)
Packit 6c4009
    {
Packit 6c4009
      if (! nothing)
Packit 6c4009
	record_error (0, 0, _("%s: field `%s' undefined"),
Packit 6c4009
		      "LC_MESSAGES", "yesexpr");
Packit 6c4009
      messages->yesexpr = "^[yY]";
Packit 6c4009
    }
Packit 6c4009
  else if (messages->yesexpr[0] == '\0')
Packit 6c4009
    {
Packit 6c4009
      record_error (0, 0, _("\
Packit 6c4009
%s: value for field `%s' must not be an empty string"),
Packit 6c4009
		    "LC_MESSAGES", "yesexpr");
Packit 6c4009
    }
Packit 6c4009
  else
Packit 6c4009
    {
Packit 6c4009
      int result;
Packit 6c4009
      regex_t re;
Packit 6c4009
Packit 6c4009
      /* Test whether it are correct regular expressions.  */
Packit 6c4009
      result = regcomp (&re, messages->yesexpr, REG_EXTENDED);
Packit 6c4009
      if (result != 0 && !be_quiet)
Packit 6c4009
	{
Packit 6c4009
	  char errbuf[BUFSIZ];
Packit 6c4009
Packit 6c4009
	  (void) regerror (result, &re, errbuf, BUFSIZ);
Packit 6c4009
	  record_error (0, 0, _("\
Packit 6c4009
%s: no correct regular expression for field `%s': %s"),
Packit 6c4009
			"LC_MESSAGES", "yesexpr", errbuf);
Packit 6c4009
	}
Packit 6c4009
      else if (result != 0)
Packit 6c4009
	regfree (&re);
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (messages->noexpr == NULL)
Packit 6c4009
    {
Packit 6c4009
      if (! nothing)
Packit 6c4009
	record_error (0, 0, _("%s: field `%s' undefined"),
Packit 6c4009
		      "LC_MESSAGES", "noexpr");
Packit 6c4009
      messages->noexpr = "^[nN]";
Packit 6c4009
    }
Packit 6c4009
  else if (messages->noexpr[0] == '\0')
Packit 6c4009
    {
Packit 6c4009
      record_error (0, 0, _("\
Packit 6c4009
%s: value for field `%s' must not be an empty string"),
Packit 6c4009
		    "LC_MESSAGES", "noexpr");
Packit 6c4009
    }
Packit 6c4009
  else
Packit 6c4009
    {
Packit 6c4009
      int result;
Packit 6c4009
      regex_t re;
Packit 6c4009
Packit 6c4009
      /* Test whether it are correct regular expressions.  */
Packit 6c4009
      result = regcomp (&re, messages->noexpr, REG_EXTENDED);
Packit 6c4009
      if (result != 0 && !be_quiet)
Packit 6c4009
	{
Packit 6c4009
	  char errbuf[BUFSIZ];
Packit 6c4009
Packit 6c4009
	  (void) regerror (result, &re, errbuf, BUFSIZ);
Packit 6c4009
	  record_error (0, 0, _("\
Packit 6c4009
%s: no correct regular expression for field `%s': %s"),
Packit 6c4009
			"LC_MESSAGES", "noexpr", errbuf);
Packit 6c4009
	}
Packit 6c4009
      else if (result != 0)
Packit 6c4009
	regfree (&re);
Packit 6c4009
    }
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
void
Packit 6c4009
messages_output (struct localedef_t *locale, const struct charmap_t *charmap,
Packit 6c4009
		 const char *output_path)
Packit 6c4009
{
Packit 6c4009
  struct locale_messages_t *messages
Packit 6c4009
    = locale->categories[LC_MESSAGES].messages;
Packit 6c4009
  struct locale_file file;
Packit 6c4009
Packit 6c4009
  init_locale_data (&file, _NL_ITEM_INDEX (_NL_NUM_LC_MESSAGES));
Packit 6c4009
  add_locale_string (&file, messages->yesexpr);
Packit 6c4009
  add_locale_string (&file, messages->noexpr);
Packit 6c4009
  add_locale_string (&file, messages->yesstr);
Packit 6c4009
  add_locale_string (&file, messages->nostr);
Packit 6c4009
  add_locale_string (&file, charmap->code_set_name);
Packit 6c4009
  write_locale_data (output_path, LC_MESSAGES, "LC_MESSAGES", &file;;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* The parser for the LC_MESSAGES section of the locale definition.  */
Packit 6c4009
void
Packit 6c4009
messages_read (struct linereader *ldfile, struct localedef_t *result,
Packit 6c4009
	       const struct charmap_t *charmap, const char *repertoire_name,
Packit 6c4009
	       int ignore_content)
Packit 6c4009
{
Packit 6c4009
  struct repertoire_t *repertoire = NULL;
Packit 6c4009
  struct locale_messages_t *messages;
Packit 6c4009
  struct token *now;
Packit 6c4009
  enum token_t nowtok;
Packit 6c4009
Packit 6c4009
  /* Get the repertoire we have to use.  */
Packit 6c4009
  if (repertoire_name != NULL)
Packit 6c4009
    repertoire = repertoire_read (repertoire_name);
Packit 6c4009
Packit 6c4009
  /* The rest of the line containing `LC_MESSAGES' must be free.  */
Packit 6c4009
  lr_ignore_rest (ldfile, 1);
Packit 6c4009
Packit 6c4009
Packit 6c4009
  do
Packit 6c4009
    {
Packit 6c4009
      now = lr_token (ldfile, charmap, result, NULL, verbose);
Packit 6c4009
      nowtok = now->tok;
Packit 6c4009
    }
Packit 6c4009
  while (nowtok == tok_eol);
Packit 6c4009
Packit 6c4009
  /* If we see `copy' now we are almost done.  */
Packit 6c4009
  if (nowtok == tok_copy)
Packit 6c4009
    {
Packit 6c4009
      handle_copy (ldfile, charmap, repertoire_name, result, tok_lc_messages,
Packit 6c4009
		   LC_MESSAGES, "LC_MESSAGES", ignore_content);
Packit 6c4009
      return;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Prepare the data structures.  */
Packit 6c4009
  messages_startup (ldfile, result, ignore_content);
Packit 6c4009
  messages = result->categories[LC_MESSAGES].messages;
Packit 6c4009
Packit 6c4009
  while (1)
Packit 6c4009
    {
Packit 6c4009
      struct token *arg;
Packit 6c4009
Packit 6c4009
      /* Of course we don't proceed beyond the end of file.  */
Packit 6c4009
      if (nowtok == tok_eof)
Packit 6c4009
	break;
Packit 6c4009
Packit 6c4009
      /* Ignore empty lines.  */
Packit 6c4009
      if (nowtok == tok_eol)
Packit 6c4009
	{
Packit 6c4009
	  now = lr_token (ldfile, charmap, result, NULL, verbose);
Packit 6c4009
	  nowtok = now->tok;
Packit 6c4009
	  continue;
Packit 6c4009
	}
Packit 6c4009
Packit 6c4009
      switch (nowtok)
Packit 6c4009
	{
Packit 6c4009
#define STR_ELEM(cat) \
Packit 6c4009
	case tok_##cat:							      \
Packit 6c4009
	  /* Ignore the rest of the line if we don't need the input of	      \
Packit 6c4009
	     this line.  */						      \
Packit 6c4009
	  if (ignore_content)						      \
Packit 6c4009
	    {								      \
Packit 6c4009
	      lr_ignore_rest (ldfile, 0);				      \
Packit 6c4009
	      break;							      \
Packit 6c4009
	    }								      \
Packit 6c4009
									      \
Packit 6c4009
	  if (messages->cat != NULL)					      \
Packit 6c4009
	    {								      \
Packit 6c4009
	      lr_error (ldfile, _("\
Packit 6c4009
%s: field `%s' declared more than once"), "LC_MESSAGES", #cat);		      \
Packit 6c4009
	      lr_ignore_rest (ldfile, 0);				      \
Packit 6c4009
	      break;							      \
Packit 6c4009
	    }								      \
Packit 6c4009
	  now = lr_token (ldfile, charmap, result, repertoire, verbose);      \
Packit 6c4009
	  if (now->tok != tok_string)					      \
Packit 6c4009
	    goto syntax_error;						      \
Packit 6c4009
	  else if (!ignore_content && now->val.str.startmb == NULL)	      \
Packit 6c4009
	    {								      \
Packit 6c4009
	      lr_error (ldfile, _("\
Packit 6c4009
%s: unknown character in field `%s'"), "LC_MESSAGES", #cat);		      \
Packit 6c4009
	      messages->cat = "";					      \
Packit 6c4009
	    }								      \
Packit 6c4009
	  else if (!ignore_content)					      \
Packit 6c4009
	    messages->cat = now->val.str.startmb;			      \
Packit 6c4009
	  break
Packit 6c4009
Packit 6c4009
	  STR_ELEM (yesexpr);
Packit 6c4009
	  STR_ELEM (noexpr);
Packit 6c4009
	  STR_ELEM (yesstr);
Packit 6c4009
	  STR_ELEM (nostr);
Packit 6c4009
Packit 6c4009
	case tok_end:
Packit 6c4009
	  /* Next we assume `LC_MESSAGES'.  */
Packit 6c4009
	  arg = lr_token (ldfile, charmap, result, NULL, verbose);
Packit 6c4009
	  if (arg->tok == tok_eof)
Packit 6c4009
	    break;
Packit 6c4009
	  if (arg->tok == tok_eol)
Packit 6c4009
	    lr_error (ldfile, _("%s: incomplete `END' line"), "LC_MESSAGES");
Packit 6c4009
	  else if (arg->tok != tok_lc_messages)
Packit 6c4009
	    lr_error (ldfile, _("\
Packit 6c4009
%1$s: definition does not end with `END %1$s'"), "LC_MESSAGES");
Packit 6c4009
	  lr_ignore_rest (ldfile, arg->tok == tok_lc_messages);
Packit 6c4009
	  return;
Packit 6c4009
Packit 6c4009
	default:
Packit 6c4009
	syntax_error:
Packit 6c4009
	  SYNTAX_ERROR (_("%s: syntax error"), "LC_MESSAGES");
Packit 6c4009
	}
Packit 6c4009
Packit 6c4009
      /* Prepare for the next round.  */
Packit 6c4009
      now = lr_token (ldfile, charmap, result, NULL, verbose);
Packit 6c4009
      nowtok = now->tok;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* When we come here we reached the end of the file.  */
Packit 6c4009
  lr_error (ldfile, _("%s: premature end of file"), "LC_MESSAGES");
Packit 6c4009
}