1 # Copyright (C) 2002-2018 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <https://www.gnu.org/licenses/>.
16 package Automake
::Location
;
22 Automake::Location - a class for location tracking, with a stack of contexts
26 use Automake::Location;
28 # Create a new Location object
29 my $where = new Automake::Location "foo.c:13";
32 $where->set ("foo.c:14");
34 # Get the location (without context).
35 # Here this should print "foo.c:14"
36 print $where->get, "\n";
38 # Push a context, and change the location
39 $where->push_context ("included from here");
40 $where->set ("bar.h:1");
42 # Print the location and the stack of context (for debugging)
46 # foo.c:14: included from here
48 # Get the contexts (list of [$location_string, $description])
49 for my $pair (reverse $where->contexts)
51 my ($loc, $descr) = @{$pair};
55 # Pop a context, and reset the location to the previous context.
58 # Clone a Location. Use this when storing the state of a location
59 # that would otherwise be modified.
60 my $where_copy = $where->clone;
62 # Serialize a Location object (for passing through a thread queue,
64 my @array = $where->serialize ();
66 # De-serialize: recreate a Location object from a queue.
67 my $where = new Automake::Location::deserialize ($queue);
71 C<Location> objects are used to keep track of locations in Automake,
72 and used to produce diagnostics.
74 A C<Location> object is made of two parts: a location string, and
77 For instance if C<VAR> is defined at line 1 in F<bar.h> which was
78 included at line 14 in F<foo.c>, then the location string should be
79 C<"bar.h:10"> and the context should be the pair (C<"foo.c:14">,
80 C<"included from here">).
82 Section I<SYNOPSIS> shows how to setup such a C<Location>, and access
83 the location string or the stack of contexts.
85 You can pass a C<Location> to C<Automake::Channels::msg>.
93 =item C<$where = new Automake::Location ([$position])>
95 Create and return a new Location object.
101 my ($class, $position) = @_;
103 position
=> $position,
110 =item C<$location-E<gt>set ($position)>
112 Change the location to be C<$position>.
118 my ($self, $position) = @_;
119 $self->{'position'} = $position;
122 =item C<$location-E<gt>get>
124 Get the location (without context).
131 return $self->{'position'};
134 =item C<$location-E<gt>push_context ($context)>
136 Push a context to the location.
140 sub push_context
($$)
142 my ($self, $context) = @_;
143 push @
{$self->{'contexts'}}, [$self->get, $context];
147 =item C<$where = $location-E<gt>pop_context ($context)>
149 Pop a context, and reset the location to the previous context.
156 my $pair = pop @
{$self->{'contexts'}};
157 $self->set ($pair->[0]);
161 =item C<@contexts = $location-E<gt>get_contexts>
163 Return the array of contexts.
170 return @
{$self->{'contexts'}};
173 =item C<$location = $location-E<gt>clone>
175 Clone a Location. Use this when storing the state of a location
176 that would otherwise be modified.
183 my $other = new Automake
::Location
($self->get);
184 my @contexts = $self->get_contexts;
185 for my $pair (@contexts)
187 push @
{$other->{'contexts'}}, [@
{$pair}];
192 =item C<$res = $location-E<gt>dump>
194 Print the location and the stack of context (for debugging).
201 my $res = ($self->get || 'INTERNAL') . ":\n";
202 for my $pair (reverse $self->get_contexts)
204 $res .= $pair->[0] || 'INTERNAL';
205 $res .= ": $pair->[1]\n";
210 =item C<@array = $location-E<gt>serialize>
212 Serialize a Location object (for passing through a thread queue,
221 push @serial, $self->get;
222 my @contexts = $self->get_contexts;
223 for my $pair (@contexts)
225 push @serial, @
{$pair};
231 =item C<new Automake::Location::deserialize ($queue)>
233 De-serialize: recreate a Location object from a queue.
240 my $position = $queue->dequeue ();
241 my $self = new Automake
::Location
$position;
242 while (my $position = $queue->dequeue ())
244 my $context = $queue->dequeue ();
245 push @
{$self->{'contexts'}}, [$position, $context];
254 L<Automake::Channels>
258 Written by Alexandre Duret-Lutz E<lt>F<adl@gnu.org>E<gt>.