????

Your IP : 18.191.74.140


Current Path : C:/opt/msys64/usr/share/texinfo/Texinfo/
Upload File :
Current File : C:/opt/msys64/usr/share/texinfo/Texinfo/Report.pm

# Report.pm: prepare error messages.
#
# Copyright 2010-2022 Free Software Foundation, Inc.
# 
# 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
# the Free Software Foundation; either version 3 of the License,
# or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
# 
# Original author: Patrice Dumas <pertusus@free.fr>

package Texinfo::Report;

use 5.00405;
use strict;

# To check if there is no erroneous autovivification
#no autovivification qw(fetch delete exists store strict);

# for fileparse
use File::Basename;

use Locale::Messages;

my $messages_textdomain = 'texinfo';

# this module does not use Texinfo::Common, therefore does not
# obtain those functions, they are defined here
sub __($) {
  my $msgid = shift;
  return Locale::Messages::dgettext($messages_textdomain, $msgid);
}

sub __p($$) {
  my $context = shift;
  my $msgid = shift;
  return Locale::Messages::dpgettext($messages_textdomain, $context, $msgid);
}



sub new(;$)
{
  my $self = shift;
  # if there is no argument, setup a separate Texinfo::Report object,
  # otherwise the structure is added to the converter, nothing is "blessed".
  if (not defined($self)) {
    $self = {};
    bless $self;
  }
  $self->{'errors_warnings'} = [];
  #print STDERR "REPORT NEW $self $self->{'errors_warnings'}\n";
  $self->{'errors_nrs'} = 0;
  return $self;
}

# return the errors and warnings
sub errors($)
{
  my $self = shift;
  return ($self->{'errors_warnings'}, $self->{'error_nrs'});
}

# format a line warning
sub line_warn($$$$)
{
  my $self = shift;
  my $configuration_information = shift;
  my $text = shift;
  chomp ($text);
  my $error_location_info = shift;
  return if (!defined($error_location_info));
  my $warn_line;

  if (defined($error_location_info->{'macro'})
      and $error_location_info->{'macro'} ne '') {
    $warn_line = sprintf(__p("Texinfo source file warning",
                             "warning: %s (possibly involving \@%s)\n"),
                         $text, $error_location_info->{'macro'});
  } else {
    $warn_line = sprintf(__p("Texinfo source file warning",
                             "warning: %s\n"),
                         $text);
  }
  warn $warn_line if (defined($configuration_information)
                      and $configuration_information->get_conf('DEBUG'));
  my %location_info = %{$error_location_info};
  delete $location_info{'file_name'} if (exists ($location_info{'file_name'})
                                  and not defined($location_info{'file_name'}));
  push @{$self->{'errors_warnings'}},
       { 'type' => 'warning', 'text' => $text, 'error_line' => $warn_line,
         %location_info };
}

# format a line error
sub line_error($$$$)
{
  my $self = shift;
  my $configuration_information = shift;
  my $text = shift;
  chomp ($text);
  my $error_location_info = shift;
  if (defined($error_location_info)) {
    my $macro_text = '';
    $macro_text = " (possibly involving \@$error_location_info->{'macro'})"
       if ($error_location_info->{'macro'} ne '');
    my $error_text = "$text$macro_text\n";
    warn $error_text if (defined($configuration_information)
                         and $configuration_information->get_conf('DEBUG'));
    my %location_info = %{$error_location_info};
    delete $location_info{'file_name'} if (exists ($location_info{'file_name'})
                                  and not defined($location_info{'file_name'}));
    push @{$self->{'errors_warnings'}},
         { 'type' => 'error', 'text' => $text,
           'error_line' => $error_text,
           %{$error_location_info} };
  }
  $self->{'error_nrs'}++;
}

sub document_warn($$$)
{
  my $self = shift;
  my $configuration_information = shift;
  my $text = shift;
  chomp($text);

  my $warn_line;
  if (defined($configuration_information)
      and defined($configuration_information->get_conf('PROGRAM'))
      and $configuration_information->get_conf('PROGRAM') ne '') {
    $warn_line = sprintf(__p("whole document warning", "%s: warning: %s\n"),
                  $configuration_information->get_conf('PROGRAM'), $text);
  } else {
    $warn_line = sprintf(__p("whole document warning", "warning: %s\n"),
                         $text);
  }
  push @{$self->{'errors_warnings'}},
    { 'type' => 'warning', 'text' => $text, 'error_line' => $warn_line };
}

sub document_error($$$)
{
  my $self = shift;
  my $configuration_information = shift;
  my $text = shift;
  chomp($text);
  my $error_line;
  if (defined($configuration_information)
      and defined($configuration_information->get_conf('PROGRAM'))
      and $configuration_information->get_conf('PROGRAM') ne '') {
    $error_line = sprintf("%s: %s\n",
          $configuration_information->get_conf('PROGRAM'), $text);
  } else {
    $error_line = "$text\n";
  }
  push @{$self->{'errors_warnings'}},
    { 'type' => 'error', 'text' => $text, 'error_line' => $error_line };
  $self->{'error_nrs'}++;
}

1;

__END__

=head1 NAME

Texinfo::Report - Error storing for Texinfo modules

=head1 SYNOPSIS

  use Texinfo::Report;

  my $registrar = Texinfo::Report::new();
  
  if ($warning_happened) {
    $registrar->line_warn($converter, sprintf(__("\@%s is wrongly used"),
                       $current->{'cmdname'}), $current->{'source_info'});
  }
  
  my ($errors, $errors_count) = $registrar->errors();
  foreach my $error_message (@$errors) {
    warn $error_message->{'error_line'};
  }

=head1 NOTES

The Texinfo Perl module main purpose is to be used in C<texi2any> to convert
Texinfo to other formats.  There is no promise of API stability.

=head1 DESCRIPTION

The C<Texinfo::Report> module helps with error handling.  It is
used by the Texinfo modules L<Texinfo::Parser> and
L<Texinfo::Convert::Converter>.  To use this module, either create
a new C<Texinfo::Report> object or initialize another object
such as to be able to call C<Texinfo::Report> methods.  In any
case, C<Texinfo::Report::new()> is called to setup the module.

Besides the C<new> method, C<errors> is used for reporting errors, and the
other methods to store errors (and warnings).

=head1 METHODS

No method is exported in the default case.

The C<new> method initializes C<Texinfo::Report> related fields.
The errors collected are available through the C<errors> method, the other
methods allow registering errors and warnings.

=over

=item my $registrar = Texinfo::Report::new()

=item $converter->Texinfo::Report::new()
X<C<Texinfo::Report::new>>

If called without argument, a C<Texinfo::Report> object is initialized and
returned.  This is how the module is used in the Texinfo Parsers, as
a separate object.

If called on a C<$converter>, the C<$converter> is initialized itself
such as to be able to call C<Texinfo::Report> methods.  It is how it is
used in the Converters.

=item ($error_warnings_list, $error_count) = errors($registrar)
X<C<errors>>

This function returns as I<$error_count> the count of errors since
calling C<new>.  The I<$error_warnings_list> is an array of hash references
one for each error, warning or error line continuation.  Each of these has
the following keys:

=over

=item type

May be C<warning>, or C<error>.

=item text

The text of the error.

=item error_line

The text of the error formatted with the file name, line number and macro
name, as needed.

=item line_nr

The line number of the error or warning.

=item file_name

The file name where the error or warning occurs.

=item macro

The user macro name that is expanded at the location of
the error or warning.

=back

=item $registrar->line_warn($text, $configuration_information, $error_location_info)

=item $registrar->line_error($text, $configuration_information, $error_location_info)
X<C<line_warn>>
X<C<line_error>>

Register a warning or an error.  The I<$text> is the text of the
error or warning.  The I<$configuration_information> object gives
some information that can modify the messages or their delivery.
The optional I<$error_location_info> holds the information on the error or
warning location.  The I<$error_location_info> reference on hash may be
obtained from Texinfo elements I<source_info> keys.   It may also
be setup to point to a file name, using the C<file_name> key and
to a line number, using the C<line_nr> key.  The C<file_name> key value
should be a binary string.

The I<source_info> key of Texinfo tree elements is described
in more details in L<Texinfo::Parser/source_info>.

=item $registrar->document_warn($configuration_information, $text)

=item $registrar->document_error($configuration_information, $text)
X<C<document_warn>>
X<C<document_error>>

Register a document-wide error or warning.  I<$text> is the error or
warning message.  The I<$configuration_information> object gives
some information that can modify the messages or their delivery.

=back

=head1 AUTHOR

Patrice Dumas, E<lt>pertusus@free.frE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright 2010- Free Software Foundation, Inc.  See the source file for
all copyright years.

This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.

=cut