/usr/share/perl5/Language/INTERCAL/Generate.pm is in clc-intercal 1:1.0~4pre1.-94.-2-2.
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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | package Language::INTERCAL::Generate;
# Creates automatically generated files (ByteCode, Splats) from descriptions
# This file is part of CLC-INTERCAL
# Copyright (c) 2007-2008 Claudio Calvelli, all rights reserved.
# CLC-INTERCAL is copyrighted software. However, permission to use, modify,
# and distribute it is granted provided that the conditions set out in the
# licence agreement are met. See files README and COPYING in the distribution.
# Usage: perl -MLanguage::INTERCAL::Generate -e 'Generate()' [INPUT [OUTPUT]]
# If a file contains the string @@SKIPME@@ this module just copies it unchanged,
# this allows it to process itself.
# INPUT (or standard input) can contain the following commands to generate
# data-dependent lines:
# @@DATA filename@@
# loads filename as a data SPEC (see below)
# (prefix)@@FILL GROUP PRE FIELD POST SIZE SEP@@(suffix)
# fills a line with as many elements from GROUP as possible, then repeats
# with another line until all elements of GROUP have been listed; each
# element will be taken from the given FIELD and the line lenght will
# not exceed SIZE. (prefix) and (suffix) are added at the start and
# the end of each line generated; PRE and POST are added before and
# after each element; SEP is added between elements in the same line.
# The data is sorted by the given FIELD. For example:
# [@@FILL SPLATS 'SP_' NAME '' 76 '/'@@]
# may generate:
# [SP_BCMATCH/SP_CHARSET/SP_CIRCULAR/SP_COMMENT/SP_CREATION/SP_DIGITS]
# [SP_INVALID/SP_IOTYPE/SP_JUNK/SP_NONUMBER/SP_NOSUCHCHAR/SP_ROMAN/SP_SPOTS]
# [SP_THREESPOT/SP_TODO]
# (prefix)@@ALL GROUP FIELD@@(suffix)
# generates as many lines as there are elements of GROUP; each line is
# generated by replacing any @@FIELD@@ in (prefix) and (suffix) with
# the corresponding data, and replacing the @@ALL...@@ with the
# value of FIELD. The data is sorted by the FIELD. For example:
# [@@NUMBER@@ SP_@@ALL SPLATS NAME@@]
# may generate:
# [578 SP_BCMATCH]
# ...
# [1 SP_TODO]
# to insert a literal whirlpool where this can cause confusion use
# @@WHIRLPOOL@@. Note that if your GROUP has a field named WHIRLPOOL
# this will not be accessible.
# @@MULTI GROUP FIELD@@
# (content)
# @@MULTI@@
# is a multiline version of @@ALL...@@: produces a block for each
# element of group, sorted by FIELD, in which each line of (content)
# is subject to the same substitution rules as @@ALL@@. Does not
# automatically insert the FIELD in the output, use @@FIELD@@ for
# that. A special syntax @@FIELD SIZE@@ allows to "fold" FIELD:
# for a multiline field containing blank lines, each block is
# folded separately.
# SPEC contains data specification in the form:
# @GROUP NAME FIELD...
# DATA
# @END [NAME]
# Each FIELD definition has the form NAME=TYPE where TYPE is m (multiline),
# 'd' (digits), 's' (string), 'w' (word) or '@TYPE' (array - cannot be
# used for multiline).
# Each line of DATA is one record followed by the contents of a multiline
# field, if present; alternatively the special line @SOURCE GROUP will
# include the whole of another group. The contents of the multiline field
# must be more indented than the record they refer to and than the record
# that follows, for example:
# DATA
# multiline 1
# multiline 2
# muitiline 3
# NEXT RECORD
# if a line in a multiline field starts with # it will be interpreted as
# a comment and ignored; if it starts with @ it will be interpreted as
# an escape (e.g. @END). These can be escaped with a backslash, which
# will be removed from the beginning of line. Note that backslashes
# anywhere else in the multiline fields are not touched.
# All lines in a multiline field will be joined together, separated by
# a single space (the above sequence produces "multiline 1 multiline 2
# multiline 3"), except a blank line which produces a double newline
# in the field.
use strict;
use Carp;
use File::Spec;
use vars qw($VERSION $PERVERSION);
($VERSION) = ($PERVERSION = "CLC-INTERCAL/Base INTERCAL/Generate.pm 1.-94.-2") =~ /\s(\S+)$/;
my $data_suffix = '.Data';
my %groups;
sub Generate {
@ARGV >= 0 && @ARGV <= 2 or croak "Usage: Generate [INPUT [OUTPUT]]";
my ($input, $output) = @ARGV;
%groups = ();
# translate INPUT into OUTPUT
@ARGV = defined $input ? ($input) : ();
if (defined $output) {
open(STDOUT, '>', $output)
or die "$output: $!";
}
my $skipme = 0;
while (<>) {
my $orig = $_;
if (/\@\@SKIPME\@\@/) {
$skipme = 1;
}
if ($skipme) {
print;
next;
}
if (/^\s*\@\@DATA\s+(.*?)\@\@$/) {
load_spec($1 . $data_suffix);
next;
}
if (s/^(.*)\@\@FILL\s*//) {
my $line_pre = $1;
my $group = get_field($orig, \$_, 'w');
exists $groups{$group}
or die "Unknown group $group";
my $gp = $groups{$group};
my $item_pre = get_field($orig, \$_, 's');
my $item_name = get_field($orig, \$_, 'w');
exists $gp->{fpos}{$item_name}
or die "Unknown field $item_name in group $group";
my $item_pos = $gp->{fpos}{$item_name};
my $item_post = get_field($orig, \$_, 's');
my $line_size = get_field($orig, \$_, 'd');
my $item_sep = get_field($orig, \$_, 's');
s/^\@\@// or die "Missing \@\@ after \@\@FILL";
my $line_post = $_;
my @il = map { $_->[$item_pos] } @{$gp->{data}};
@il = sort_items(@il);
my $line = $line_pre;
for my $item (@il) {
my $nl = $line;
$nl .= $item_sep if $nl ne $line_pre;
$nl .= $item_pre . $item . $item_post;
if (sizeof($nl . $line_post) > $line_size) {
print $line, $line_post if $line ne $line_pre;
$nl = $line_pre . $item_pre . $item . $item_post;
}
$line = $nl;
}
print $line, $line_post if $line ne $line_pre;
next;
}
if (s/^(.*)\@\@ALL\s*//) {
my $line_pre = $1;
my $group = get_field($orig, \$_, 'w');
exists $groups{$group}
or die "Unknown group $group";
my $gp = $groups{$group};
my $item_name = get_field($orig, \$_, 'w');
exists $gp->{fpos}{$item_name}
or die "Unknown field $item_name in group $group";
my $item_pos = $gp->{fpos}{$item_name};
s/^\@\@// or die "Missing \@\@ after \@\@ALL";
my $line_post = $_;
my @il = map { $_->[$item_pos] } @{$gp->{data}};
@il = sort_items(@il);
my $p = $gp->{fpos};
check_escapes($gp, $p, $line_pre);
check_escapes($gp, $p, $line_post);
for my $il (@il) {
for my $item (@{$gp->{data}}) {
next if $item->[$item_pos] ne $il;
my @line = ();
for my $ol ($line_pre, $line_post) {
my $line = $ol;
my $trans = '';
while ($line =~ s/^(.*?)\@\@//) {
$trans .= $1;
$line =~ s/^(.*?)\@\@//
or die "Missing \@\@ closing $line";
my $gn = $1;
my $quote = $gn =~ s/^(['"]?)(\w+)\1$/$2/ ? $1 : '';
my $f;
if ($gn eq 'WHIRLPOOL') {
$f = '@';
} elsif ($gn =~ /^(.*?):(\w+)$/) {
$f = $item->[$p->{$1}];
my @a = @{$item->[$p->{$2}]};
$f =~ s/%/shift @a || '???'/ge;
} else {
$f = $item->[$p->{$gn}];
}
$f =~ s/([\\$quote])/\\$1/g if $quote ne '';
$trans .= $f;
}
push @line, $trans . $line;
}
print $line[0], $il, $line[1];
}
}
next;
}
if (s/^\s*\@\@MULTI\s*//) {
my $group = get_field($orig, \$_, 'w');
exists $groups{$group}
or die "Unknown group $group";
my $gp = $groups{$group};
my $item_name = get_field($orig, \$_, 'w');
exists $gp->{fpos}{$item_name}
or die "Unknown field $item_name in group $group";
my $item_pos = $gp->{fpos}{$item_name};
s/^\@\@\s*$// or die "Missing \@\@ after \@\@MULTI";
my @il = map { $_->[$item_pos] } @{$gp->{data}};
@il = sort_items(@il);
my $p = $gp->{fpos};
my @line = ();
my $found = 0;
while (<>) {
if (/^\s*\@\@MULTI\@\@\s*$/) {
$found = 1;
last;
}
push @line, $_;
check_escapes($gp, $p, $_);
}
$found or die "Missing \@\@MULTI\@\@";
for my $il (@il) {
for my $item (@{$gp->{data}}) {
next if $item->[$item_pos] ne $il;
print translate_escapes($gp, $p, $item, $_) for @line;
}
}
next;
}
if (/\@\@/) {
chomp;
die "Invalid \@\@-escape: $_";
}
print;
}
}
sub get_field {
my ($orig, $line, $type) = @_;
if ($type =~ s/^\@//) {
$$line =~ s/^\[\s*//
or die "Invalid array: missing [";
my @data = ();
while ($$line ne '' && $$line !~ s/^\]\s*//) {
push @data, get_field($orig, $line, $type);
}
return \@data;
}
if ($type eq 'd') {
$$line =~ s/^0x([[:xdigit:]]+)\s*//
and return hex($1);
$$line =~ s/^(\d+)\s*//
and return $1;
die "Invalid number: $_";
}
if ($type eq 'w') {
$$line =~ s/^(\w+)\s*//
or die "Invalid symbol: $_";
return $1;
}
if ($type eq 's') {
if ($$line =~ s/^(['"])//) {
# quoted string
my $quote = $1;
my $data = '';
while ($$line =~ s/^(.*?)([$quote\\])//) {
$data .= $1;
last if $2 eq $quote;
die "Invalid data: \\ at end of line" if $$line eq '';
$data .= substr($$line, 0, 1, '');
}
$$line =~ s/^\s+//;
return $data;
} else {
# bareword
$$line =~ s/^(\S+)\s*//
or die "Invalid string: $_";
return $1;
}
}
die "Internal error: type is '$type'";
}
sub sizeof {
my ($s) = @_;
my $l = 0;
while ($s ne '') {
my $x = substr($s, 0, 1, '');
if ($x eq "\t") {
$l = 8 * (1 + int($l / 8));
} else {
$l++;
}
}
$l;
}
sub sort_items {
sort {
return $a <=> $b if $a =~ /^\d+$/ && $b =~ /^\d+$/;
return -1 if $a =~ /^\d+$/;
return 1 if $b =~ /^\d+$/;
return $a cmp $b;
} @_;
}
sub field_map {
my ($a, $b) = @_;
# we are trying to append $b's data to $a...
my @map = ();
for my $n (@{$b->{fnames}}) {
# $a must have this field
return () if ! exists $a->{fpos}{$n};
# the fields must have the same type
return () if $a->{ftypes}{$n} ne $b->{ftypes}{$n};
my $p = $a->{fpos}{$n};
push @map, $p;
}
@map;
}
sub check_escapes {
my ($gp, $p, $line) = @_;
while ($line =~ s/^.*?\@\@//) {
$line =~ s/^(.*?)\@\@//
or die "Missing \@\@ closing $line";
my $gn = $1;
$gn =~ s/\s+HTML$//i;
$gn =~ s/\s+\d+$//;
next if $gn eq 'WHIRLPOOL';
my $ogn = $gn;
if ($gn =~ s/^(\w+):(\w+)\s*//) {
my $next = $gn;
$gn = $1;
exists $p->{$2}
or die "Invalid field name $2";
substr($gp->{ftypes}{$2}, 0, 1) eq '@'
or die "Field $2 is not an array";
my $mapfrom = get_field($ogn, \$next, 's');
my $prefix = get_field($ogn, \$next, 's');
my $suffix = get_field($ogn, \$next, 's');
}
$gn =~ s/^(['"])(.*)\1$/$2/;
exists $p->{$gn}
or die "Invalid field name $gn";
}
}
sub translate_escapes {
my ($gp, $p, $item, $line) = @_;
my $trans = '';
while ($line =~ s/^(.*?)\@\@//) {
$trans .= $1;
$line =~ s/^(.*?)\@\@//;
my $gn = $1;
if ($gn eq 'WHIRLPOOL') {
$trans .= '@';
next;
}
my $html = $gn =~ s/\s+HTML$//i;
my $fold = $gn =~ s/\s+(\d+)$// ? $1 : undef;
my ($mapfrom, $prefix, $suffix, $mapto);
my $ogn = $gn;
if ($gn =~ s/^(\w+):(\w+)\s*//) {
my $next = $gn;
$gn = $1;
$mapto = $2;
$mapfrom = get_field($ogn, \$next, 's');
$prefix = get_field($ogn, \$next, 's');
$suffix = get_field($ogn, \$next, 's');
}
my $quote = $gn =~ s/^(['"]?)(\w+)\1$/$2/ ? $1 : '';
my $f = $item->[$p->{$gn}];
if (defined $mapto) {
my @a = @{$item->[$p->{$mapto}]};
$f =~ s/$mapfrom/$prefix . (shift @a || '???'). $suffix/ge;
}
if ($html) {
$f =~ s/&/&/gi;
$f =~ s/</</gi;
$f =~ s/>/>/gi;
$f =~ s/"/"/gi;
$f =~ s/I<(.*?)>/<I>$1<\/I>/gi;
$f =~ s/L<Language::INTERCAL::Charset>/<A HREF="charset.html">the chapter on character sets<\/A>/gi;
$f =~ s/L<Language::INTERCAL::(?:ArrayIO|ReadNumber|WriteNumber)>/<A HREF="input_output.html">the chapter on Input\/Output<\/A>/gi;
$f =~ s/L<(.*?)>/<CODE>$1<\/CODE>/gi;
$f =~ s/C<(.*?)>/<CODE>$1<\/CODE>/gi;
$f =~ s/\n\n+/<BR>/g;
}
if (defined $fold) {
my $u = $f;
$f = '';
for my $o (split(/\n\n/, $u)) {
while (sizeof($o) > $fold) {
my $g = '';
while ($o =~ s/^(\S*)(\s+)//) {
my ($n, $s) = ($1, $2);
if (sizeof($g . $n) > $fold) {
$o = $n . $s . $o;
last;
}
$g .= $n . $s;
}
$g =~ s/\s+$//;
$f .= $g . "\n";
}
$f .= $o . "\n\n";
}
$f =~ s/\n\n$//;
}
$f =~ s/([\\$quote])/\\$1/g if $quote ne '';
$trans .= $f;
}
$trans .= $line;
$trans;
}
sub load_spec {
my ($dataname) = @_;
my @gpath = $ENV{CLC_INTERCAL_PATH} ? ($ENV{CLC_INTERCAL_PATH}) : ();
my $dataspec = File::Spec->catfile(@gpath, qw(INTERCAL Generate), $dataname);
unless (open(DATASPEC, '<', $dataspec)) {
$dataspec = undef;
for my $path (@INC) {
my $d = File::Spec->catfile($path, qw(Language INTERCAL Generate), $dataname);
open(DATASPEC, '<', $d) or next;
$dataspec = $d;
last;
}
defined $dataspec
or die "$0: $dataname: $!";
}
print STDERR " ($dataspec)\n";
my $in_group = undef;
my $item_indent = undef;
my $last_multi = undef;
my $blank_line = 0;
while (<DATASPEC>) {
chomp;
last if /^\s*\@\__END__/;
if (/^\s*#|^\s*$/) {
$blank_line = 1;
next;
}
my $bl = $blank_line;
$blank_line = 0;
if (defined $in_group) {
if (s/^\s*\@END\s*//) {
die "group $in_group->{name} ended by \@END $_"
if $in_group->{name} ne $_;
if ($in_group->{has_m}) {
$_->[-1] = ${$_->[-1]} for @{$in_group->{data}};
}
$in_group = undef;
next;
}
if (s/^\s*\@SOURCE\s+//) {
push @{$in_group->{sources}}, $_;
next;
}
die "$0: Invalid \@ escape ($_)" if /^\s*\@/;
my $indent = s/^([ \t]+)// ? sizeof($1) : 0;
if ($in_group->{has_m} &&
defined $item_indent &&
$item_indent < $indent)
{
s/^\\//;
if ($bl) {
$$last_multi .= "\n\n" if $bl;
} elsif ($$last_multi ne '') {
$$last_multi .= ' ';
}
$$last_multi .= $_;
} else {
$item_indent = $indent;
# process group line
my @line = ();
for my $fname (@{$in_group->{fnames}}) {
my $ftype = $in_group->{ftypes}{$fname};
next if $ftype eq 'm';
push @line, get_field($_, \$_, $ftype);
}
die "Extra data at end of line ($_)" if $_ ne '';
if ($in_group->{has_m}) {
my $x = '';
$last_multi = \$x;
push @line, $last_multi;
}
push @{$in_group->{data}}, \@line;
}
} elsif (s/^\s*\@GROUP\s+//) {
my ($group, @fspec) = split;
die "$0: duplicate group $group" if exists $groups{$group};
die "$0: group $group has no fields!" unless @fspec;
my @fnames = ();
my %ftypes = ();
my %fpos = ();
my $has_m = 0;
for my $fs (@fspec) {
$fs =~ /^(\w+)=(.*)$/ or die "Invalid field definition ($fs)";
my ($name, $type) = ($1, lc($2));
exists $ftypes{$type} and die "Duplicate field name ($name)";
$type =~ /^(?:\@*[dws]|m)$/ or die "Invalid field type ($fs)";
die "Sorry, multiline fields must be last" if $has_m;
$has_m = 1 if $type eq 'm';
$fpos{$name} = scalar @fnames;
push @fnames, $name;
$ftypes{$name} = $type;
}
$in_group = {
fnames => \@fnames,
ftypes => \%ftypes,
fpos => \%fpos,
data => [],
sources => [],
name => $group,
has_m => $has_m,
};
$groups{$group} = $in_group;
} else {
die "Invalid line ($_)";
}
}
close DATASPEC;
# process SOURCE
for my $g (values %groups) {
for my $s (@{$g->{sources}}) {
$s ne $g && exists $groups{$s}
or die "Invalid source $s for $g->{name}";
my $d = $groups{$s};
@{$d->{sources}}
and die "Sourcing from a group containing sources ($s) not implemented";
my @map = field_map($g, $d)
or die "$g->{name} cannot source from $s: incompatible fields";
for my $d (@{$d->{data}}) {
push @{$g->{data}}, [map { $d->[$_] } @map];
}
}
}
}
1;
|