doc: update Vala documentation
[automake.git] / lib / Automake / Location.pm
blobbdf343712e91006b27acc0c81452dc4a2079da2d
1 # Copyright (C) 2002-2024 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)
6 # any later version.
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;
18 use 5.006;
19 use strict;
20 use warnings FATAL => 'all';
22 =head1 NAME
24 Automake::Location - a class for location tracking, with a stack of contexts
26 =head1 SYNOPSIS
28 use Automake::Location;
30 # Create a new Location object
31 my $where = new Automake::Location "foo.c:13";
33 # Change the location
34 $where->set ("foo.c:14");
36 # Get the location (without context).
37 # Here this should print "foo.c:14"
38 print $where->get, "\n";
40 # Push a context, and change the location
41 $where->push_context ("included from here");
42 $where->set ("bar.h:1");
44 # Print the location and the stack of context (for debugging)
45 print $where->dump;
46 # This should display
47 # bar.h:1:
48 # foo.c:14: included from here
50 # Get the contexts (list of [$location_string, $description])
51 for my $pair (reverse $where->contexts)
53 my ($loc, $descr) = @{$pair};
54 ...
57 # Pop a context, and reset the location to the previous context.
58 $where->pop_context;
60 # Clone a Location. Use this when storing the state of a location
61 # that would otherwise be modified.
62 my $where_copy = $where->clone;
64 # Serialize a Location object (for passing through a thread queue,
65 # for example)
66 my @array = $where->serialize ();
68 # De-serialize: recreate a Location object from a queue.
69 my $where = new Automake::Location::deserialize ($queue);
71 =head1 DESCRIPTION
73 C<Location> objects are used to keep track of locations in Automake,
74 and used to produce diagnostics.
76 A C<Location> object is made of two parts: a location string, and
77 a stack of contexts.
79 For instance if C<VAR> is defined at line 1 in F<bar.h> which was
80 included at line 14 in F<foo.c>, then the location string should be
81 C<"bar.h:10"> and the context should be the pair (C<"foo.c:14">,
82 C<"included from here">).
84 Section I<SYNOPSIS> shows how to setup such a C<Location>, and access
85 the location string or the stack of contexts.
87 You can pass a C<Location> to C<Automake::Channels::msg>.
89 =cut
91 =head2 Methods
93 =over
95 =item C<$where = new Automake::Location ([$position])>
97 Create and return a new Location object.
99 =cut
101 sub new ($;$)
103 my ($class, $position) = @_;
104 my $self = {
105 position => $position,
106 contexts => [],
108 bless $self, $class;
109 return $self;
112 =item C<$location-E<gt>set ($position)>
114 Change the location to be C<$position>.
116 =cut
118 sub set ($$)
120 my ($self, $position) = @_;
121 $self->{'position'} = $position;
124 =item C<$location-E<gt>get>
126 Get the location (without context).
128 =cut
130 sub get ($)
132 my ($self) = @_;
133 return $self->{'position'};
136 =item C<$location-E<gt>push_context ($context)>
138 Push a context to the location.
140 =cut
142 sub push_context ($$)
144 my ($self, $context) = @_;
145 push @{$self->{'contexts'}}, [$self->get, $context];
146 $self->set (undef);
149 =item C<$where = $location-E<gt>pop_context ($context)>
151 Pop a context, and reset the location to the previous context.
153 =cut
155 sub pop_context ($)
157 my ($self) = @_;
158 my $pair = pop @{$self->{'contexts'}};
159 $self->set ($pair->[0]);
160 return @{$pair};
163 =item C<@contexts = $location-E<gt>get_contexts>
165 Return the array of contexts.
167 =cut
169 sub get_contexts ($)
171 my ($self) = @_;
172 return @{$self->{'contexts'}};
175 =item C<$location = $location-E<gt>clone>
177 Clone a Location. Use this when storing the state of a location
178 that would otherwise be modified.
180 =cut
182 sub clone ($)
184 my ($self) = @_;
185 my $other = new Automake::Location ($self->get);
186 my @contexts = $self->get_contexts;
187 for my $pair (@contexts)
189 push @{$other->{'contexts'}}, [@{$pair}];
191 return $other;
194 =item C<$res = $location-E<gt>dump>
196 Print the location and the stack of context (for debugging).
198 =cut
200 sub dump ($)
202 my ($self) = @_;
203 my $res = ($self->get || 'INTERNAL') . ":\n";
204 for my $pair (reverse $self->get_contexts)
206 $res .= $pair->[0] || 'INTERNAL';
207 $res .= ": $pair->[1]\n";
209 return $res;
212 =item C<@array = $location-E<gt>serialize>
214 Serialize a Location object (for passing through a thread queue,
215 for example).
217 =cut
219 sub serialize ($)
221 my ($self) = @_;
222 my @serial = ();
223 push @serial, $self->get;
224 my @contexts = $self->get_contexts;
225 for my $pair (@contexts)
227 push @serial, @{$pair};
229 push @serial, undef;
230 return @serial;
233 =item C<new Automake::Location::deserialize ($queue)>
235 De-serialize: recreate a Location object from a queue.
237 =cut
239 sub deserialize ($)
241 my ($queue) = @_;
242 my $position = $queue->dequeue ();
243 my $self = new Automake::Location $position;
244 while (my $position = $queue->dequeue ())
246 my $context = $queue->dequeue ();
247 push @{$self->{'contexts'}}, [$position, $context];
249 return $self;
252 =back
254 =head1 SEE ALSO
256 L<Automake::Channels>
258 =head1 HISTORY
260 Written by Alexandre Duret-Lutz E<lt>F<adl@gnu.org>E<gt>.
262 =cut