Blame locale/programs/ld-paper.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_PAPER locale.  */
Packit 6c4009
struct locale_paper_t
Packit 6c4009
{
Packit 6c4009
  uint32_t height;
Packit 6c4009
  uint32_t width;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
static void
Packit 6c4009
paper_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_PAPER].paper =
Packit 6c4009
      (struct locale_paper_t *) xcalloc (1, sizeof (struct locale_paper_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
paper_finish (struct localedef_t *locale, const struct charmap_t *charmap)
Packit 6c4009
{
Packit 6c4009
  struct locale_paper_t *paper = locale->categories[LC_PAPER].paper;
Packit 6c4009
  int nothing = 0;
Packit 6c4009
Packit 6c4009
  /* Now resolve copying and also handle completely missing definitions.  */
Packit 6c4009
  if (paper == 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_PAPER] != 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_PAPER, from->copy_name[LC_PAPER],
Packit 6c4009
				from->repertoire_name, charmap);
Packit 6c4009
	  while (from->categories[LC_PAPER].paper == NULL
Packit 6c4009
		 && from->copy_name[LC_PAPER] != NULL);
Packit 6c4009
Packit 6c4009
	  paper = locale->categories[LC_PAPER].paper
Packit 6c4009
	    = from->categories[LC_PAPER].paper;
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 (paper == NULL)
Packit 6c4009
	{
Packit 6c4009
	  record_warning (_("\
Packit 6c4009
No definition for %s category found"), "LC_PAPER");
Packit 6c4009
	  paper_startup (NULL, locale, 0);
Packit 6c4009
	  paper = locale->categories[LC_PAPER].paper;
Packit 6c4009
	  nothing = 1;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (paper->height == 0)
Packit 6c4009
    {
Packit 6c4009
      if (! nothing)
Packit 6c4009
	record_error (0, 0, _("%s: field `%s' not defined"),
Packit 6c4009
		      "LC_PAPER", "height");
Packit 6c4009
      /* Use as default values the values from the i18n locale.  */
Packit 6c4009
      paper->height = 297;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (paper->width == 0)
Packit 6c4009
    {
Packit 6c4009
      if (! nothing)
Packit 6c4009
	record_error (0, 0, _("%s: field `%s' not defined"),
Packit 6c4009
		      "LC_PAPER", "width");
Packit 6c4009
      /* Use as default values the values from the i18n locale.  */
Packit 6c4009
      paper->width = 210;
Packit 6c4009
    }
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
void
Packit 6c4009
paper_output (struct localedef_t *locale, const struct charmap_t *charmap,
Packit 6c4009
	      const char *output_path)
Packit 6c4009
{
Packit 6c4009
  struct locale_paper_t *paper = locale->categories[LC_PAPER].paper;
Packit 6c4009
  struct locale_file file;
Packit 6c4009
Packit 6c4009
  init_locale_data (&file, _NL_ITEM_INDEX (_NL_NUM_LC_PAPER));
Packit 6c4009
  add_locale_uint32 (&file, paper->height);
Packit 6c4009
  add_locale_uint32 (&file, paper->width);
Packit 6c4009
  add_locale_string (&file, charmap->code_set_name);
Packit 6c4009
  write_locale_data (output_path, LC_PAPER, "LC_PAPER", &file;;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* The parser for the LC_PAPER section of the locale definition.  */
Packit 6c4009
void
Packit 6c4009
paper_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_paper_t *paper;
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_PAPER' must be empty.  */
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_paper,
Packit 6c4009
		   LC_PAPER, "LC_PAPER", ignore_content);
Packit 6c4009
      return;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Prepare the data structures.  */
Packit 6c4009
  paper_startup (ldfile, result, ignore_content);
Packit 6c4009
  paper = result->categories[LC_PAPER].paper;
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 INT_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_number)					      \
Packit 6c4009
	    goto err_label;						      \
Packit 6c4009
	  else if (paper->cat != 0)					      \
Packit 6c4009
	    lr_error (ldfile, _("%s: field `%s' declared more than once"),    \
Packit 6c4009
		      "LC_PAPER", #cat);				      \
Packit 6c4009
	  else if (!ignore_content)					      \
Packit 6c4009
	    paper->cat = arg->val.num;					      \
Packit 6c4009
	  break
Packit 6c4009
Packit 6c4009
	  INT_ELEM (height);
Packit 6c4009
	  INT_ELEM (width);
Packit 6c4009
Packit 6c4009
	case tok_end:
Packit 6c4009
	  /* Next we assume `LC_PAPER'.  */
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_PAPER");
Packit 6c4009
	  else if (arg->tok != tok_lc_paper)
Packit 6c4009
	    lr_error (ldfile, _("\
Packit 6c4009
%1$s: definition does not end with `END %1$s'"), "LC_PAPER");
Packit 6c4009
	  lr_ignore_rest (ldfile, arg->tok == tok_lc_paper);
Packit 6c4009
	  return;
Packit 6c4009
Packit 6c4009
	default:
Packit 6c4009
	err_label:
Packit 6c4009
	  SYNTAX_ERROR (_("%s: syntax error"), "LC_PAPER");
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_PAPER");
Packit 6c4009
}