Blame locale/programs/ld-telephone.c

Packit 6c4009
/* Copyright (C) 1998-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
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 <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 "localeinfo.h"
Packit 6c4009
#include "locfile.h"
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* The real definition of the struct for the LC_TELEPHONE locale.  */
Packit 6c4009
struct locale_telephone_t
Packit 6c4009
{
Packit 6c4009
  const char *tel_int_fmt;
Packit 6c4009
  const char *tel_dom_fmt;
Packit 6c4009
  const char *int_select;
Packit 6c4009
  const char *int_prefix;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
static void
Packit 6c4009
telephone_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_TELEPHONE].telephone = (struct locale_telephone_t *)
Packit 6c4009
      xcalloc (1, sizeof (struct locale_telephone_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
telephone_finish (struct localedef_t *locale, const struct charmap_t *charmap)
Packit 6c4009
{
Packit 6c4009
  struct locale_telephone_t *telephone =
Packit 6c4009
    locale->categories[LC_TELEPHONE].telephone;
Packit 6c4009
  int nothing = 0;
Packit 6c4009
Packit 6c4009
  /* Now resolve copying and also handle completely missing definitions.  */
Packit 6c4009
  if (telephone == 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_TELEPHONE] != 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_TELEPHONE, from->copy_name[LC_TELEPHONE],
Packit 6c4009
				from->repertoire_name, charmap);
Packit 6c4009
	  while (from->categories[LC_TELEPHONE].telephone == NULL
Packit 6c4009
		 && from->copy_name[LC_TELEPHONE] != NULL);
Packit 6c4009
Packit 6c4009
	  telephone = locale->categories[LC_TELEPHONE].telephone
Packit 6c4009
	    = from->categories[LC_TELEPHONE].telephone;
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 (telephone == NULL)
Packit 6c4009
	{
Packit 6c4009
	  record_warning (_("\
Packit 6c4009
No definition for %s category found"), "LC_TELEPHONE");
Packit 6c4009
	  telephone_startup (NULL, locale, 0);
Packit 6c4009
	  telephone = locale->categories[LC_TELEPHONE].telephone;
Packit 6c4009
	  nothing = 1;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (telephone->tel_int_fmt == NULL)
Packit 6c4009
    {
Packit 6c4009
      if (! nothing)
Packit 6c4009
	record_error (0, 0, _("%s: field `%s' not defined"),
Packit 6c4009
		      "LC_TELEPHONE", "tel_int_fmt");
Packit 6c4009
      /* Use as the default value the value of the i18n locale.  */
Packit 6c4009
      telephone->tel_int_fmt = "+%c %a%t%l";
Packit 6c4009
    }
Packit 6c4009
  else
Packit 6c4009
    {
Packit 6c4009
      /* We must check whether the format string contains only the
Packit 6c4009
	 allowed escape sequences.  */
Packit 6c4009
      const char *cp = telephone->tel_int_fmt;
Packit 6c4009
Packit 6c4009
      if (*cp == '\0')
Packit 6c4009
	record_error (0, 0, _("%s: field `%s' must not be empty"),
Packit 6c4009
		      "LC_TELEPHONE", "tel_int_fmt");
Packit 6c4009
      else
Packit 6c4009
	while (*cp != '\0')
Packit 6c4009
	  {
Packit 6c4009
	    if (*cp == '%')
Packit 6c4009
	      {
Packit 6c4009
		if (strchr ("aAcCelt", *++cp) == NULL)
Packit 6c4009
		  {
Packit 6c4009
		    record_error (0, 0, _("\
Packit 6c4009
%s: invalid escape sequence in field `%s'"), "LC_TELEPHONE", "tel_int_fmt");
Packit 6c4009
		    break;
Packit 6c4009
		  }
Packit 6c4009
	      }
Packit 6c4009
	    ++cp;
Packit 6c4009
	  }
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (telephone->tel_dom_fmt == NULL)
Packit 6c4009
    telephone->tel_dom_fmt = "";
Packit 6c4009
  else if (telephone->tel_dom_fmt[0] != '\0')
Packit 6c4009
    {
Packit 6c4009
      /* We must check whether the format string contains only the
Packit 6c4009
	 allowed escape sequences.  */
Packit 6c4009
      const char *cp = telephone->tel_dom_fmt;
Packit 6c4009
Packit 6c4009
      while (*cp != '\0')
Packit 6c4009
	{
Packit 6c4009
	  if (*cp == '%')
Packit 6c4009
	    {
Packit 6c4009
	      if (strchr ("aAcCelt", *++cp) == NULL)
Packit 6c4009
		{
Packit 6c4009
		  record_error (0, 0, _("\
Packit 6c4009
%s: invalid escape sequence in field `%s'"), "LC_TELEPHONE", "tel_dom_fmt");
Packit 6c4009
		  break;
Packit 6c4009
		}
Packit 6c4009
	    }
Packit 6c4009
	  ++cp;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
#define TEST_ELEM(cat) \
Packit 6c4009
  if (telephone->cat == NULL)						      \
Packit 6c4009
    {									      \
Packit 6c4009
      if (verbose && ! nothing)						      \
Packit 6c4009
	record_warning (_("%s: field `%s' not defined"), "LC_TELEPHONE",      \
Packit 6c4009
			#cat);						      \
Packit 6c4009
      telephone->cat = "";						      \
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  TEST_ELEM (int_select);
Packit 6c4009
  TEST_ELEM (int_prefix);
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
void
Packit 6c4009
telephone_output (struct localedef_t *locale, const struct charmap_t *charmap,
Packit 6c4009
		  const char *output_path)
Packit 6c4009
{
Packit 6c4009
  struct locale_telephone_t *telephone =
Packit 6c4009
    locale->categories[LC_TELEPHONE].telephone;
Packit 6c4009
  struct locale_file file;
Packit 6c4009
Packit 6c4009
  init_locale_data (&file, _NL_ITEM_INDEX (_NL_NUM_LC_TELEPHONE));
Packit 6c4009
  add_locale_string (&file, telephone->tel_int_fmt);
Packit 6c4009
  add_locale_string (&file, telephone->tel_dom_fmt);
Packit 6c4009
  add_locale_string (&file, telephone->int_select);
Packit 6c4009
  add_locale_string (&file, telephone->int_prefix);
Packit 6c4009
  add_locale_string (&file, charmap->code_set_name);
Packit 6c4009
  write_locale_data (output_path, LC_TELEPHONE, "LC_TELEPHONE", &file;;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* The parser for the LC_TELEPHONE section of the locale definition.  */
Packit 6c4009
void
Packit 6c4009
telephone_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 locale_telephone_t *telephone;
Packit 6c4009
  struct token *now;
Packit 6c4009
  struct token *arg;
Packit 6c4009
  enum token_t nowtok;
Packit 6c4009
Packit 6c4009
  /* The rest of the line containing `LC_TELEPHONE' must be free.  */
Packit 6c4009
  lr_ignore_rest (ldfile, 1);
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_telephone,
Packit 6c4009
		   LC_TELEPHONE, "LC_TELEPHONE", ignore_content);
Packit 6c4009
      return;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Prepare the data structures.  */
Packit 6c4009
  telephone_startup (ldfile, result, ignore_content);
Packit 6c4009
  telephone = result->categories[LC_TELEPHONE].telephone;
Packit 6c4009
Packit 6c4009
  while (1)
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
      /* Ingore 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
	  arg = lr_token (ldfile, charmap, result, NULL, verbose);	      \
Packit 6c4009
	  if (arg->tok != tok_string)					      \
Packit 6c4009
	    goto err_label;						      \
Packit 6c4009
	  if (telephone->cat != NULL)					      \
Packit 6c4009
	    lr_error (ldfile, _("%s: field `%s' declared more than once"),    \
Packit 6c4009
		      "LC_TELEPHONE", #cat);				      \
Packit 6c4009
	  else if (!ignore_content && arg->val.str.startmb == NULL)	      \
Packit 6c4009
	    {								      \
Packit 6c4009
	      lr_error (ldfile, _("%s: unknown character in field `%s'"),     \
Packit 6c4009
			"LC_TELEPHONE", #cat);				      \
Packit 6c4009
	      telephone->cat = "";					      \
Packit 6c4009
	    }								      \
Packit 6c4009
	  else if (!ignore_content)					      \
Packit 6c4009
	    telephone->cat = arg->val.str.startmb;			      \
Packit 6c4009
	  break
Packit 6c4009
Packit 6c4009
	  STR_ELEM (tel_int_fmt);
Packit 6c4009
	  STR_ELEM (tel_dom_fmt);
Packit 6c4009
	  STR_ELEM (int_select);
Packit 6c4009
	  STR_ELEM (int_prefix);
Packit 6c4009
Packit 6c4009
	case tok_end:
Packit 6c4009
	  /* Next we assume `LC_TELEPHONE'.  */
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_TELEPHONE");
Packit 6c4009
	  else if (arg->tok != tok_lc_telephone)
Packit 6c4009
	    lr_error (ldfile, _("\
Packit 6c4009
%1$s: definition does not end with `END %1$s'"), "LC_TELEPHONE");
Packit 6c4009
	  lr_ignore_rest (ldfile, arg->tok == tok_lc_telephone);
Packit 6c4009
	  return;
Packit 6c4009
Packit 6c4009
	default:
Packit 6c4009
	err_label:
Packit 6c4009
	  SYNTAX_ERROR (_("%s: syntax error"), "LC_TELEPHONE");
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_TELEPHONE");
Packit 6c4009
}