/usr/share/perl5/cs/GNUInfo.pm is in info2man 1.1-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | #!/usr/bin/perl
#
# cs::GNUInfo: a module for parsing GNU info files.
# - Cameron Simpson <cs@zip.com.au> 22sep2000
#
=head1 NAME
cs::GNUInfo - parse and transcribe GNU info files
=head1 SYNOPSIS
use cs::GNUInfo;
=head1 DESCRIPTION
The B<cs::GNUInfo> module parses GNU info(1) files
and will transcribe them to perlpod(1) format
for ready conversion to other useful formats.
=cut
use strict qw(vars);
BEGIN { use cs::DEBUG; cs::DEBUG::using(__FILE__); }
use cs::Pathname;
use cs::Source;
use cs::GNUInfo::Node;
package cs::GNUInfo;
require Exporter;
@cs::GNUInfo::ISA=qw();
$cs::GNUInfo::DoDebug=defined($ENV{DEBUG_GNUINFO}) && length($ENV{DEBUG_GNUINFO});
sub dbg { return $cs::GNUInfo::DoDebug if ! @_;
local($_)="@_";
chomp;
warn "$_\n" if $cs::GNUInfo::DoDebug;
}
=head1 GENERAL FUNCTIONS
=over 4
=item parseTypeLine(I<line>)
Extract the block type and following parameters
from the header line of an info block.
Returns an array of B<(I<type>,I<field1>,I<value1>,I<field2>,I<value2>,...)>.
=cut
sub parseTypeLine($)
{ local($_)=@_;
my $type;
my %fields;
/^[^:]*/;
$type=uc($&);
while (/^([^:]+):\s*([^,]+)(,\s*)?/)
{ my($op,$arg)=(uc($1),$2);
$_=$';
$fields{$op}=$arg;
}
dbg("parseTypeLine: type=$type, fields=[".join("|",%fields)."]");
($type,\%fields);
}
=back
=head1 OBJECT CREATION
=over 4
=item new cs::GNUInfo I<file>
Instantiate a new B<cs::GNUInfo> object
based upon the named I<file>.
=cut
sub new($$)
{ my($class,$file)=@_;
my $dir = cs::Pathname::dirname($file);
$file=cs::Pathname::absname($file,$dir);
my $this=
bless
{ ROOTFILE => $file, # context
ROOTDIR => $dir,
FILEQUEUE => [], # pending files
FILESEEN => {}, # files queued before
NODEMAP => {}, # node mapping
NODELIST => [], # node list
NAME => cs::Pathname::basename($file),
}, $class;
$this->NoteFile($file);
$this;
}
=back
=head1 OBJECT METHODS
=over 4
=item RunQueue()
After instantiation
the object is initially empty,
with the named file queued for processing
(via the B<NoteFile> method below).
This method processes every queued file,
which should result in processing of the entire info section
because subsidiary files are queued during this procedure
and processed before return.
=cut
sub RunQueue($)
{ my($this)=@_;
my $Q = $this->{FILEQUEUE};
FILE:
while (@$Q)
{ my $file = shift(@$Q);
dbg("RunQueue $file ...\n");
my $s = new cs::Source(PATH,$file,1);
if (! defined $s)
{ warn "$::cmd: can't open $file: $!\n";
next FILE;
}
$this->ParseSource($s,$file);
}
}
=item NoteFile(I<file>)
Queue the named I<file> for processing.
I<file> is resolved into a full pathname
with respect to the root file of the object.
=cut
sub NoteFile($$)
{ my($this,$file)=@_;
$file=cs::Pathname::absname($file,$this->{ROOTDIR});
if (! exists $this->{FILESEEN}->{$file})
{ dbg("NoteFile($file)");
push(@{$this->{FILEQUEUE}}, $file);
$this->{FILESEEN}->{$file}=1;
}
}
=item ParseSource(I<source>,I<filename>)
Read lines from the B<cs::Source> object I<source>
(associated with the file I<filename>),
assembling them into info structures: text, menus, etc.
=cut
sub ParseSource($$$)
{ my($this,$s,$fname)=@_;
local($_);
BLOCK:
while (defined($_=$s->GetLine()) && length)
{
if (/^\037$/)
# commence block
{
# get header line
if (! defined ($_=$s->GetLine()) || ! length)
# end of file
{ dbg("EOF");
last BLOCK;
}
# commence next block
if (/^\037$/)
{ $s->UnGet($_);
next BLOCK;
}
chomp;
my($type,$F)=parseTypeLine($_);
my $N = new cs::GNUInfo::Node $type;
$N->Fields($F);
if (exists $F->{NODE})
{ dbg("Nodename is \"$F->{NODE}\"");
$N->Name($F->{NODE})
}
my $data = $N->Data();
LINE:
while (defined ($_=$s->GetLine()) && length)
{
# beginning of next block
if (/^\037$/)
{ $s->UnGet($_);
last LINE;
}
if ($type eq FILE)
{ ## dbg("FILE: addline $_");
$N->AddLine($_,$s,$fname);
}
elsif ($type eq INDIRECT)
{ $this->_LineINDIRECT($_,$s,$fname,$F,$data);
}
else
{ chomp;
dbg("$type: push \"$_\"");
push(@$data, $_);
}
}
my $nd = scalar(@$data);
dbg("AddNode type=$type");
$this->AddNode($N);
}
else
# lines outside structure - ignore
{
dbg("SKIP: $_");
}
}
$s->UnGet($_) if defined && length;
}
sub _LineINDIRECT($$$$$)
{ my($this)=shift;
local($_)=shift;
my($s,$fname,$F,$data)=@_;
# file: byte offset
if (/^([^:]+):\s*\d+$/)
{ $this->NoteFile($1);
}
else
{ warn "$::cmd: $fname: unparsed INDIRECT block line: $_\n";
push(@$data,$_);
}
}
sub AddNode($$)
{ my($this,$N)=@_;
# back reference
$N->Info($this);
my $nl = $this->Nodes();
push(@$nl, $N);
my $name = $N->Name();
if (defined $name)
{
my $nm = $this->NodeMap();
if (exists $nm->{$name})
{ warn "$::cmd: AddNode(): repeated nodes named \"$name\", keeping last";
}
$nm->{$name}=$N;
}
$N;
}
sub Nodes($)
{ my($this)=@_;
my $nl = $this->{NODELIST};
wantarray ? @$nl : $nl;
}
sub NodeMap($)
{ my($this)=@_;
my $nm = $this->{NODEMAP};
wantarray ? %$nm : $nm;
}
=item Node(I<nodename>)
Return the B<cs::GNUINfo::Node> object for the supplied I<nodename>.
=cut
sub Node($$)
{ my($this,$name)=@_;
my $nm = $this->NodeMap();
return undef if ! exists $nm->{$name};
$nm->{$name};
}
=item Pod2s(I<sink>)
Write a perlpod(1) transcription of the info object
to the B<cs::Sink> object I<sink>.
=cut
sub Pod2s($$)
{ my($this,$s)=@_;
$s->Put("=head1 NAME\n\n".$this->{NAME}." - $this->{NAME}\n\n");
local($_);
local (%::SeenNode);
my $neednl=0;
my $nl = $this->Nodes();
NODE:
for my $N (@$nl)
{
my $type = $N->Type();
if ($type eq FILE)
{
$N->Pod2s($s);
}
elsif (grep($_ eq $type, "INDIRECT", "TAG TABLE","END TAG TABLE"))
{
dbg("skip node of type \"$type\"");
}
else
{ warn "$::cmd: Pod2s(): unhandled node type \"$type\"";
}
}
}
=back
=head1 BUGS
"B<*note>" tags spanning two lines are not recognised,
and remain in the text.
=head1 SEE ALSO
info2pod(1), info2man(1), pod2man(1), perlpod(1)
=head1 AUTHOR
Cameron Simpson E<lt>cs@zip.com.auE<gt>
=cut
1;
|