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 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
|
# Copyright (c) 1997-2024
# Ewgenij Gawrilow, Michael Joswig, and the polymake team
# Technische Universität Berlin, Germany
# https://polymake.org
#
# 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 2, or (at your option) any
# later version: http://www.gnu.org/licenses/gpl.txt.
#
# 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.
#-------------------------------------------------------------------------------
# Application methods and user commands available in interactive mode
use strict;
use namespaces;
use warnings qw(FATAL void syntax misc);
use feature 'state';
package Polymake::Core::InteractiveCommands;
use Term::Cap;
my ($bold, $boldoff, $under, $underoff);
sub init_termcap {
state $termcap = defined($ENV{TERM}) && eval {
my $tc = Term::Cap->Tgetent;
$bold = $tc->Tputs('md');
$boldoff = $tc->Tputs('me');
$under = $tc->Tputs('us');
$underoff = $tc->Tputs('ue');
close Term::Cap::DATA;
1
} // (warn("Term::Cap->Tgetent failed for TERM $ENV{TERM}: $@"), 0);
}
sub Tgetent {
init_termcap && Term::Cap->Tgetent
}
sub underline {
init_termcap;
"$under$_[0]$underoff"
}
sub bold {
init_termcap;
"$bold$_[0]$boldoff"
}
sub clean_text {
init_termcap;
$_[0] =~ s/\[\[(?:.*?\|)?(.*?)\]\]/$under$1$underoff/g;
$_[0] =~ s/''(.*?)''/$1/g;
$_[0] =~ s{(//|__)(.*?)\1}{$under$2$underoff}g;
$_[0] =~ s/\*\*(.*?)\*\*/$bold$1$boldoff/g;
$_[0] .= "\n" unless substr($_[0],-1) eq "\n";
}
###############################################################################################
package Polymake::Core::Application;
has_interactive_commands(1);
###############################################################################################
my %rules_to_wake;
# private
sub store_rule_to_wake {
my ($self, $filename, $ext, $rule_key, $on_rule) = splice @_, 0, 5;
for (;;) {
my $list;
if ($on_rule) {
my ($prereq_app, $prereq_rule_key) = splice @_, 0, 2 or last;
$list = ($rules_to_wake{$prereq_app}->{$prereq_rule_key} //= [ ]);
} else {
my $prereq_ext = shift @_ or last;
$list=($rules_to_wake{$prereq_ext} //= [ ]);
}
if (@$list && $list->[-2] == $self) {
push @{$list->[-1]}, $filename, $ext, $rule_key;
} else {
push @$list, $self, [ $filename, $ext, $rule_key ];
}
}
}
###############################################################################################
# private
sub do_reconfigure {
my ($self, $list, $filename, $ext, $rule_key);
my @woken = @_;
while (($self, $list) = splice @woken, 0, 2) {
my $new_to_wake = @woken;
local if (!defined($self->compile_scope)) {
local unshift @INC, $self;
local scalar $self->compile_scope = new Scope();
}
while (($filename, $ext, $rule_key) = splice @$list, 0, 3) {
my $rc;
local $Extension::loading = $ext;
if (defined (my $code = $self->rule_code->{$rule_key})) {
my $reconf = new Reconf($self, false);
no strict 'refs';
local ref *{$self->pkg."::self"} = sub { $reconf };
if (is_object (my $credit = $self->credits_by_rulefile->{$rule_key})) {
$credit->shown &= ~Rule::Credit::hide;
}
&$code;
$rc = $self->rulefiles->{$rule_key};
} else {
$rc = parse_rulefile($self, $rule_key, $filename);
}
if ($rc && defined (my $to_wake=$rules_to_wake{$self})) {
if (defined ($to_wake=delete $to_wake->{$rule_key})) {
push @woken, @$to_wake;
}
}
}
$_->finalize for @{$self->rules_to_finalize};
@{$self->rules_to_finalize} = ();
for (; $new_to_wake < $#woken; $new_to_wake += 2) {
($self, $list) = @woken[$new_to_wake, $new_to_wake+1];
for (my $i = 0; $i < @$list; $i += 3) {
($filename, $ext, $rule_key) = @$list[$i..$i+2];
delete $self->configured->{$rule_key};
}
}
}
}
###############################################################################################
sub lookup_rulefile_or_key {
my ($self, $rulefile) = @_;
if ($rulefile =~ s/\@(.*)$//) {
# specified by the key including extension URI
if (local $Extension::loading = $Extension::registered_by_URI{$1}) {
lookup_rulefile($self, $rulefile, 1);
} else {
die "unknown extension URI $1\n";
}
} else {
&lookup_rulefile;
}
}
###############################################################################################
sub reconfigure {
my ($self, $rulefile) = @_;
if ($rulefile =~ m{^($id_re)::(.*)}o) {
reconfigure($self->used->{$1} || die("application $1 is not declared as USE'd or IMPORT'ed in the current application\n"), "$2");
} elsif (my ($filename, $ext, $rule_key, $old_status)=&lookup_rulefile_or_key) {
if (defined (my $conf_status = $self->configured->{$rule_key})) {
if (is_string($conf_status) and my ($rules, $what) = $conf_status =~ /^0\#(?:(rule)|ext):(.*)/) {
my @prereq = split /\|/, $what;
die( "rulefile $rulefile requires ",
$rules ? ( @prereq > 1 ? "one of the rulefiles ".join(", ", @prereq) : "another rulefile $what" )
: ( @prereq > 1 ? "one of extensions ".join(", ", @prereq) : "the extension $what" ),
" which must be reconfigured first;\n",
"in the case of success the desired rulefile might be enabled automatically.\n" );
}
delete $self->configured->{$rule_key};
} elsif (defined $old_status) {
die "rulefile $filename does not contain any configuration clauses\n";
} else {
# nothing is known yet about this rulefile
process_included_rule(@_, $filename, $ext, $rule_key);
return;
}
require Polymake::Configure;
do_reconfigure($self, [ $filename, $ext, $rule_key ]);
} else {
die "rulefile $rulefile does not exist in application ", $self->name, "\n";
}
}
###############################################################################################
sub unconfigure {
my ($self, $rulefile) = @_;
if ($rulefile =~ m{^($id_re)::(.*)}o) {
unconfigure($self->used->{$1} || die("application $1 is not declared as USE'd or IMPORT'ed in the current application"), "$2");
} elsif (my ($filename, $ext, $rule_key, $old_status) = &lookup_rulefile_or_key) {
my $config_state = $self->configured->{$rule_key};
if ($config_state > 0) {
if (defined (my $code = $self->rule_code->{$rule_key})) {
my $unconf = new Unconf($self);
no strict 'refs';
local ref *{$self->pkg."::self"} = sub { $unconf };
local $Extension::loading = $ext;
&$code;
} else {
$self->configured->{$rule_key} = -$load_time;
}
} elsif (defined $config_state) {
die "rulefile $rulefile is already unconfigured\n";
} else {
die "rulefile $filename does not contain any configuration clauses\n";
}
} else {
die "rulefile $rulefile does not exist in application ", $self->name, "\n";
}
}
###############################################################################################
# private:
sub valid_configured_entry {
my ($self, $rule_key) = @_;
exists $self->rulefiles->{$rule_key} or do {
if ($rule_key =~ m{^/}) {
-f $rule_key or do {
delete $self->configured->{$rule_key};
false
}
} else {
my ($rulefile, $ext) = split /\@/, $rule_key;
if ($ext
? (($ext = $Extension::registered_by_URI{$ext}) &&
-f $ext->app_dir($self) . "/rules/$rulefile")
: -f $self->top . "/rules/$rulefile") {
!$ext || $ext->is_active;
} else {
delete $self->configured->{$rule_key};
false
}
}
}
}
###############################################################################################
sub list_configured {
my ($self, $state)=@_;
grep {
valid_configured_entry($self, $_) and
($state < 0
? $self->configured->{$_} < 0 || $self->configured->{$_} eq "0" || $self->configured->{$_} =~ /\#$/ :
$state > 0
? $self->configured->{$_} > 0
: $self->configured->{$_} !~ /^0\#/)
} keys %{$self->configured}
}
###############################################################################################
sub first_credit_in {
my ($self, $rule_key) = @_;
LoadPreamble::include_rule($self, $rule_key);
if (defined (my $credit = $self->credits_by_rulefile->{$rule_key})) {
if (is_object($credit)) {
$credit
} else {
$self->credits_by_rulefile->{$rule_key} = lookup_credit($self, $credit)
}
} elsif ($rule_key =~ /\@(bundled:\w+)$/) {
$Extension::registered_by_URI{$1}->credit
} else {
undef
}
}
###############################################################################################
sub extend_in {
my ($self, $ext) = @_;
if ($self->installTop eq $ext->dir || list_index($self->extensions, $ext) >=0 ) {
die "Extension ", $ext->URI, " already contributes to application ", $self->name, "\n";
}
if ($self->installTop ne $InstallTop) {
my $foundation_ext = $Extension::registered_by_dir{$self->installTop};
if (list_index($foundation_ext->requires, $ext) >= 0) {
die "Application ", $self->name, " is founded in extension ", $foundation_ext->URI, " installed at ", $self->installTop, "\n",
"which has the specified extension ", $ext->URI, " among its direct or indirect prerequisites.\n",
"Adding here a contribution to ", $app->name, " would introduce a forbidden cyclic dependency between both extensions.\n",
"You might consider moving the foundation of ", $app->name, " into extension ", $ext->URI, "\n",
"or into a third extension, independent on these ones.\n";
}
if (list_index($ext->requires, $foundation_ext) < 0) {
$ext->add_prerequisites($foundation_ext);
}
}
my $source_tree = $ext->get_source_tree;
my $app_dir = $ext->app_dir($self);
$source_tree->make_dir(map { "$app_dir/$_" } qw(src include perllib rules scripts testsuite));
if ($ext->is_bundled) {
open my $noexport, ">", "$app_dir/.noexport";
print $noexport "testsuite test\n";
close $noexport;
}
# create include symlink
my $link_dir = $ext->dir."/include/apps/polymake";
-d $link_dir or $source_tree->make_dir($link_dir);
my $app_name = $self->name;
my $link = "$link_dir/$app_name";
if (-l $link) {
unlink $link
or die "Can't remove obsolete link $link: $!\n";
} elsif (-e _) {
File::Path::remove_tree($link);
}
symlink "../../../apps/$app_name/include", $link
or die "Can't create a link $link: $!\n";
}
###############################################################################################
sub found {
require Polymake::SourceTree;
(undef, my ($name, $ext)) = @_;
my $src_tree = $ext ? $ext->get_source_tree : new SourceTree($InstallTop);
my $app_dir = ($ext ? $ext->dir : $InstallTop)."/apps/$name";
$src_tree->make_dir(map { "$app_dir/$_" } qw(src include perllib rules scripts testsuite));
unless ($ext) {
open my $noexport, ">", "$app_dir/.noexport";
print $noexport "testsuite test\n";
close $noexport;
}
}
###############################################################################################
package Polymake::Core::Application::LoadPreamble;
use Polymake::Struct (
[ '@ISA' => 'Application' ],
);
# pretend the last configuration step in the preamble to fail
sub configure {
my ($self, $code, $rule_key, $line) = @_;
$line < $self->preamble_end->{$rule_key};
}
*include_required = \&configure;
*require_ext = \&configure;
sub include_rule_block {}
sub add_credit {
my $self = shift;
my $credit = $self->SUPER::add_credit(@_, 1);
$credit->shown = Rule::Credit::hide;
$credit
}
sub include_rule {
my ($self, $rule_key) = @_;
if (my $code = $self->rule_code->{$rule_key}) {
my $credit = $self->credits_by_rulefile->{$rule_key};
if (defined($credit) && !is_object($credit)) {
my $reread = new Reconf($self, true);
no strict 'refs';
local ref *{$self->pkg."::self"} = sub { $reread };
&$code;
}
} else {
local bless $self;
my ($rulefile, $ext_URI) = split /\@/, $rule_key;
local $Extension::loading = $Extension::registered_by_URI{$ext_URI} if $ext_URI;
my $conf = $self->configured->{$rule_key};
local if ($conf > 0 || !defined($conf)) {
local $Shell = new NoShell();
} else {
delete local $self->rulefiles->{$rule_key};
delete local $self->configured->{$rule_key};
}
include_rules($self, $rulefile);
}
}
###############################################################################################
package Polymake::Core::Application::CppDummy;
sub new {
state $dummy=bless [ ], $_[0];
}
sub start_loading {}
###############################################################################################
package Polymake::Core::Application::Reconf;
use Polymake::Struct (
[ new => '$$' ],
[ '$application' => '#1' ],
[ '$simulate_failure' => '#2' ],
);
sub start_preamble { shift }
sub preamble_end { $_[0]->application->preamble_end }
sub cpp { new CppDummy; }
sub add_credit {
my $self = shift;
my $credit = $self->application->add_credit(@_, 1);
if ($self->simulate_failure && $_[1] =~ /\S/) {
$credit->shown = Rule::Credit::hide;
}
$credit
}
sub add_custom { }
sub close_preamble {
my ($app, $rule_key, $line, $success) = @_;
if ($line >= $app->preamble_end->{$rule_key}) {
($app->rulefiles->{$rule_key} &&= return 0) = $success; # avoid repeated execution of the rulefile body
}
$success;
}
sub configure {
my ($self, $code, $rule_key, $line, $optional) = @_;
if ($self->simulate_failure) {
$line < $self->preamble_end->{$rule_key};
} else {
close_preamble($self->application, $rule_key, $line, $self->application->configure($code, $rule_key, $line, $optional));
}
}
sub include_required {
my ($self, $block, $rule_key, $line) = @_;
if ($self->simulate_failure) {
$line < $self->preamble_end->{$rule_key};
} else {
close_preamble($self->application, $rule_key, $line, $self->application->include_required($block, $rule_key, $line));
}
}
sub require_ext {
my ($self, $block, $rule_key, $line) = @_;
if ($self->simulate_failure) {
$line < $self->preamble_end->{$rule_key};
} else {
close_preamble($self->application, $rule_key, $line, $self->application->require_ext($block, $rule_key, $line));
}
}
sub AUTOLOAD {
my $self = shift;
my ($method) = $AUTOLOAD =~ /::(\w+)$/;
$self->application->$method(@_);
}
sub DESTROY { }
###############################################################################################
package Polymake::Core::Application::Unconf;
use Polymake::Struct (
[ new => '$' ],
[ '$application' => '#1' ],
);
sub start_preamble { shift }
sub preamble_end { $_[0]->application->preamble_end }
sub cpp { new CppDummy; }
sub add_credit {
my ($self, $product, $ext_URI, $text) = @_;
my $credit = $self->application->lookup_credit($product);
if ($text =~ /\S/) {
$credit->shown = Rule::Credit::hide;
}
$credit;
}
sub add_custom {
my ($self, $pkg, $varname, $ref) = @_;
if (defined(my $item = UserSettings::get_item($ref))) {
$item->reset_value;
}
}
# pretend the last configuration step in the preamble to fail
sub configure {
my ($self, $code, $rule_key, $line) = @_;
$line < $self->application->preamble_end->{$rule_key} or do {
$self->application->configured->{$rule_key} = -$load_time;
0
}
}
*include_required = \&configure;
*require_ext = \&configure;
sub include_rule_block {}
###############################################################################################
package Polymake::Core::Extension;
sub locate_unknown {
my ($pkg, $URI, $mandatory)=@_;
my $ignore=InteractiveCommands::underline("ignore");
my $skip =InteractiveCommands::underline("skip");
my $stop =InteractiveCommands::underline("stop");
print <<".";
In order to proceed, you should import a polymake extension with URI
$URI
Please download and unpack it, or check it out if it is kept in some repository.
Then enter the top directory (where the description file polymake.ext resides).
In the case this is an old URI of an extension you already have,
please specify its current top directory. To avoid repeating this for each
data file, consider storing the outdated URI in the REPLACE section of that
extension.
If you know that this URI belongs to an obsolete extension which has been
integrated into the core system, please enter $ignore. Then the data will be
processed as if there were no extension attributes in the file.
Finally, if you don't know where to get the extension or don't want to bother
importing it, please enter $stop to stop loading the data file
or $skip to temporarily move the data items into "undecoded" attachments.
.
my $dir=$Shell->enter_filename("",
{ prompt => "extension dir",
check => sub {
if ($_[0] =~ s/^(ignore|stop|skip)$//i) {
$refused{$URI}=lc($1);
return;
}
if (-d $_[0] && -x _) {
return;
}
($_[0] && "The directory $_[0] does not exist or is inaccessible.\n") .
"Please enter a correct location, `ignore', `stop', or `skip'.\n"
},
});
if (length($dir)) {
return provide($pkg, "file://".Cwd::abs_path($dir), $mandatory);
}
undef
}
######################################################################################
sub obliterate {
my ($self) = @_;
my @drop_apps;
if ($self->is_active) {
foreach my $app (list_loaded Application) {
if ($app->installTop eq $self->dir) {
$Prefs->obliterate_application($app->prefs);
$app->cpp->obliterate_extension($self, 1);
$app->delete($app->name);
push @drop_apps, $app;
} elsif (delete_from_list($app->extensions, $self)) {
$app->cpp->obliterate_extension($self);
while (my ($rule_key) = each %{$app->configured}) {
if (index($rule_key, '@'.$self->URI)==0) {
delete $app->configured->{$rule_key};
}
}
}
}
$Settings->obliterate_extension($self);
$Prefs->obliterate_extension($self);
delete_from_list(\@active, $self);
}
delete $registered_by_dir{$self->dir};
delete @registered_by_URI{$self->URI, @{$self->replaces}};
@drop_apps;
}
###############################################################################################
sub may_obliterate {
my ($self)=@_;
if ($self->is_bundled) {
my ($ext_name)= $self->dir =~ $filename_re;
die "Extension $ext_name is bundled with polymake core and may not be obliterated.\n",
"The only legal way to get rid of it is to disable it during the initial configuration:\n",
" configure --without-$ext_name\n";
}
foreach my $ext (values %registered_by_dir) {
if ($ext != $self && contains($ext->requires, $self)) {
die "Extension ", $self->URI, " is a prerequisite for another active extension ", $ext->URI, " installed at ", $ext->dir, "\n",
"If you want to get rid of both, please `obliterate' the latter first.\n";
}
}
}
###############################################################################################
sub new_bundled {
require Polymake::SourceTree;
my ($pkg, $name)=@_;
my $ext_dir="$InstallTop/bundled/$name";
if (-d $ext_dir) {
die "bundled extension $ext_dir already exists\n";
}
my $src_tree=new SourceTree($InstallTop);
$src_tree->make_dir("$ext_dir/apps", "$ext_dir/include", "$ext_dir/support");
open my $META, ">", "$ext_dir/polymake.ext"
or die "can't create description file $ext_dir/polymake.ext: $!\n";
print $META <<'.';
# This is a bundled extension.
# Please describe it briefly here.
# Uncommment and fill the sections below on demand.
# URIs of bundled extensions are written as bundled:NAME .
# CREDIT
# No credits defined so far.
# REQUIRE
# URIs of other bundled extensions which are prerequisite for this one
# REQUIRE_OPT
# URIs of other bundled extensions being optional prerequisites for this one
# CONFLICT
# URIs of other bundled extensions which are incompatible with this one.
.
close $META;
$src_tree->copy_file("$InstallTop/support/configure.pl.template", "$ext_dir/support/configure.pl.template");
my $ext=new($pkg, $ext_dir, "bundled:$name", 1);
$registered_by_URI{$ext->URI}=$ext;
$registered_by_dir{$ext_dir}=$ext;
# at the beginning of its life, the extension does not depend on anything else nor requires any configuration
unshift @BundledExts, $name;
require Polymake::Configure;
Configure::rewrite_config_files($InstallTop, "BundledExts", "@BundledExts");
}
###############################################################################################
sub new_standalone {
my ($pkg, $ext_dir)=@_;
if ($ext_dir =~ m{^\Q${InstallTop}\E(?:/|$)}) {
die <<"---";
A standalone extension can't be created within polymake source tree.
If you have had a bundled extension in mind, please specify its location as "bundled:NAME",
otherwise choose a location outside $InstallTop
---
}
if (-d $ext_dir) {
if (-f "$ext_dir/polymake.ext" || -f "$ext_dir/URI" and -d "$ext_dir/apps") {
if (exists $registered_by_dir{$ext_dir}) {
die "Extension located at $ext_dir is already registered in your settings.\n";
} else {
die "Location $ext_dir seems to contain an already populated polymake extension.\n",
"If you want to use and/or further develop it, please import it with a polymake shell command\n",
" import_extension(\"$ext_dir\");\n";
}
}
if (my @dangerous=(glob("$ext_dir/{apps/*,include/*}"), grep { -e "$ext_dir/$_" } qw(support/configure.pl polymake.ext))) {
die "Location $ext_dir contains files and/or subdirectories which will clash with those automatically created by polymake:\n",
(map { s|^$ext_dir/||;$_."\n" } @dangerous);
}
unless (-w $ext_dir) {
die "You don't have permission to create new files at the specified location $ext_dir\n";
}
} else {
File::Path::make_path($ext_dir);
}
my $ext=new($pkg, $ext_dir);
File::Path::make_path("$ext_dir/apps", "$ext_dir/scripts", "$ext_dir/include", "$ext_dir/support");
$registered_by_URI{$ext->URI}=$ext;
$registered_by_dir{$ext_dir}=$ext;
foreach my $file (qw(configure.pl install.pl generate_ninja_targets.pl)) {
File::Copy::copy("$InstallTop/support/$file.template", "$ext_dir/support");
}
unless (-f "$ext_dir/.gitignore") {
File::Copy::copy("$InstallTop/support/gitignore.template", "$ext_dir/.gitignore");
}
# create the skeleton of the build directory
require Polymake::Configure;
$ext->set_build_dir;
Configure::configure_extension($ext);
}
######################################################################################
# directory, config options => new Extension
sub add {
my ($pkg, $ext_dir, @config_options)=@_;
my $self=new($pkg, $ext_dir);
if (@config_options == 1 && $config_options[0] eq "--help") {
# this will merely print the usage message
$self->configure(@config_options);
} else {
# perform the same checks as in init() but with different reactions on detected problems
if (defined (my $other=$registered_by_URI{$self->URI})) {
if ($other->URI eq $self->URI) {
die "Extension provides the same URI ", $self->URI, " as an already registered extension installed at ", $other->dir, "\n";
} else {
die "Extension ", $self->URI, " is declared as obsoleted by an already registered extension ", $other->URI, " installed at ", $other->dir, "\n";
}
}
my $conflicting=$conflicts{$self->URI};
unless ($conflicting) {
foreach (@{$self->conflicts}) {
$conflicting=$registered_by_URI{$_} and last;
}
}
if ($conflicting) {
die "Extension ", $self->URI, " is declared as conflicting with an already registered extension ", $conflicting->URI,
" installed at ", $conflicting->dir, "\n";
}
my (@prereqs, $disable);
for (@{$self->requires}) {
my $prereq_version= s/\#([\d.]+)$// && $1;
if (defined (my $prereq=$registered_by_URI{$_})) {
if (length($prereq_version)) {
if ($prereq->URI ne $_) {
die "Extension ", $self->URI,
" has as one of its prerequisites a versioned extension URI $_#$prereq_version\n",
"which has been replaced by another extension ", $prereq->URI, " installed at ", $prereq->dir, "\n",
"Revise the REQUIRE section in the extension description file or look for a newer version of this extension.\n";
} elsif (!defined($prereq->version_num)
or
$prereq_version ne $prereq->version && eval("v$prereq_version") gt $prereq->version_num) {
die "Extension ", $self->URI,
" has as one of its prerequisites a versioned URI $_#$prereq_version\n",
"However, the extension installed at ", $prereq->dir,
defined($prereq->version_num) ? "is of an older version ".$prereq->version : "does not specify any version", ".\n";
}
}
push @prereqs, $prereq, @{$prereq->requires};
unless ($prereq->is_active) {
$disable=1;
if ($prereq->is_bundled) {
warn_print( "Prerequisite bundled extension ", $prereq->URI, "\n",
"is not configured for the current architecture $Arch.\n",
"To activate it, you must reconfigure and rebuild the polymake installation.\n",
"Then enable the new extension with a polymake shell command\n",
" reconfigure_extension(\"$self->dir\");\n",
);
} else {
warn_print( "Prerequisite extension ", $prereq->URI, " installed at ", $prereq->dir, "\n",
"is not configured for the current architecture $Arch\n",
"It can be activated with a polymake shell command\n",
" reconfigure_extension(\"", $prereq->URI, "\", options...);\n",
"Then enable the new extension:\n",
" reconfigure_extension(\"$self->dir\");\n",
);
}
}
} else {
die "Extension ", $self->URI, "\n",
"requires an unknown extension $_, therefore can't be imported now.\n",
"If you need it, please first investigate where to get the prerequisite, download, and import it.\n";
}
}
my $postpone;
if (@{$self->replaces}) {
my $ext;
if (my @replaced=grep { defined($ext=$registered_by_URI{$_}) && $ext->URI eq $_ } @{$self->replaces}) {
warn_print( "Extension ", $self->URI, " claims to replace other registered extension", @active_replaced>1 && "s", ":\n",
(map { " ".$_->URI." installed at ".$_->dir."\n" } @active_replaced),
"Activation of the new extension is therefore postponed until the next polymake session,\n",
"when the extension", @active_replaced>1 && "s", " listed above can safely be obliterated automatically.\n",
"You are strongly advised to restart polymake right now to make this change happen as soon as possible." );
$postpone=1;
}
}
$registered_by_dir{$ext_dir}=$self;
$registered_by_URI{$_}=$self for $self->URI, @{$self->replaces};
$conflicts{$_}=$self for @{$self->conflicts};
@{$self->requires}=uniq(@prereqs) if @prereqs;
push @User::extensions, $ext_dir;
if ($disable || !$self->configure(@config_options)) {
warn_print( "Extension ", $self->URI, " is disabled on the current architecture $Arch due to problems depicted in the log above.\n",
"In order to activate it, investigate the reasons, install third-party software if instructed to do so,\n",
"then execute a polymake shell command:\n",
" reconfigure_extension(\"$ext_dir\", options...);" );
$disabled{$ext_dir} = true;
undef
} elsif ($postpone) {
undef
} else {
activate($self);
$self
}
}
}
###############################################################################################
sub reconfigure {
my ($self, @config_options)=@_;
my $ext_dir=$self->dir;
if ($self->is_bundled) {
die "Bundled extension $ext_dir can only be reconfigured together with the core system;\n",
"Please re-run the main configure script.\n";
} elsif ($ext_dir =~ m{^\Q${InstallTop}\E/ext/}o) {
die "Extension $ext_dir is already installed and can't be reconfigured any more.\n";
} elsif (@config_options && !-f "$ext_dir/support/configure.pl" && !-f "$ext_dir/configure.pl") {
die "Extension $ext_dir does not accept any configuration options.\n";
} elsif (!-w $ext_dir) {
die "You don't have write permission in directory $ext_dir.\n";
}
foreach my $prereq (@{$self->requires}) {
unless ($prereq->is_active) {
if ($prereq->is_bundled) {
die "Extension ", $self->URI, " requires a bundled extension ", $prereq->URI, " which is not configured for the current architecture $Arch.\n",
"Please re-configure and re-build polymake enabling that bundled extension;\n",
"if successful, come back to this one.\n";
} else {
die "Extension ", $self->URI, " requires another extension ", $prereq->URI, " installed at ", $prereq->dir, "\n",
"which is currently disabled due to its own configuration problems.\n",
"Please try to reconfigure that extension first; if successful, come back to this one.\n";
}
}
}
require Polymake::Configure;
$self->set_build_dir;
my $err=Configure::configure_extension($self, "--force", @config_options);
if ($err ne "silent\n") {
if ($err) {
print "Configuration script failed with following error(s):\n$err\n";
if ($disabled{$self->dir}) {
print "Extension ", $self->dir,
"\nstays disabled until you successfully retry to configure it.\n";
} else {
print "Extension ", $self->dir,
"\nwill be disabled from the next polymake session on\n",
"unless you successfully retry the configuration now\n";
$disabled{$self->dir} = true;
}
} else {
print "Configuration succeeded without errors.\n";
if (delete $disabled{$self->dir}) {
print "Extension ", $self->URI, " is now enabled for current architecture $Arch.\n";
activate($self);
if (defined(my $to_wake = delete $rules_to_wake{$self})) {
Application::do_reconfigure(@$to_wake);
}
# try to enable dependent extensions
foreach my $ext_dir (@User::extensions) {
if ($disabled{$ext_dir} && defined(my $ext = $registered_by_dir{$ext_dir})) {
unless (grep { !$_->is_active } @{$ext->requires}) {
if (-f "$ext_dir/support/configure.pl" || -f "$ext_dir/configure.pl") {
print "Now you can try to reconfigure the dependent extension ", $ext->URI, " as well.\n";
} elsif ($ext->configure) {
delete $disabled{$ext_dir};
print "Extension ", $ext->URI, " is now enabled for current architecture $Arch.\n";
activate($ext);
if (defined(my $to_wake = delete $rules_to_wake{$ext})) {
Application::do_reconfigure(@$to_wake);
}
}
}
}
}
} else {
print <<".";
All C++ components in the extension will be rebuilt at the start of the next polymake session.
.
}
}
}
}
###############################################################################################
# private:
sub write_initial_description {
my ($self)=@_;
my $src_tree=$self->get_source_tree;
open my $descr, ">", $self->dir."/polymake.ext"
or die "can't create extension description ", $self->dir, "/polymake.ext: $!\n";
print $descr <<'.';
# This is a description file of a polymake extension rooted in this directory.
# Please refer to the documentation under
# https://polymake.org/doku.php/user_guide/extend/extensions
# for detailed explanations of its contents.
# URI is a unique identifier assigned to this extension.
# This is the only mandatory entry in this file.
.
print $descr "URI ", $self->versioned_URI, <<'.';
# Below you can put a short name for your extension.
# NAME
# short name of the extension
# Below you can extol the features implemented in this extension,
# put your copyright notice, or just refer to your website
# unless its address is already contained in the URI.
# CREDIT
# short description
# copyright your name, address, etc.
# If this extension relies on functionality of further extensions,
# please list their URIs below, separated by blanks and/or newlines.
# Each URI can be versioned if certain minimal version is required.
# REQUIRE
# URI URI#version ...
# If this extension was formerly distributed under different URI
# or was merged with other extensions,
# please list the deprecated URIs below.
# REPLACE
# URI ...
# If this extension is known to be incompatible with other extensions,
# please list their URIs below.
# CONFLICT
# URI ...
.
close $descr;
if (-f (my $URIfile=$self->dir."/URI")) {
unlink $URIfile or die "can't remove $URIfile: $!\n";
}
unless (glob($self->dir."/support/configure.pl*")) {
foreach my $filename (qw(configure generate_ninja_targets install)) {
$src_tree->copy_file("$InstallTop/support/$filename.pl.template", "support/$filename.pl.template");
}
}
}
sub add_prerequisites {
my $self=shift;
@{$self->requires}=uniq(@{$self->requires}, map { ($_, @{$_->requires}) } @_);
my $appendURIs=join("", map { " ".$_->URI."\n" } @_);
open my $META, $self->dir."/polymake.ext"
or die "can't open extension description ", $self->dir, "/polymake.ext: $!\n";
local $/;
local $_=<$META>;
close $META;
s{^ (REQUIRE \b .*? \n)\n }{$1$appendURIs\n}xms
or
s{^ \s*\#\s* REQUIRE\b .*\n (?: ^ \s*\#.* \n )* }{REQUIRE\n$appendURIs\n}xm
or
$_ .= "\nREQUIRE\n$appendURIs\n";
{
my ($META_new, $META_k)=new OverwriteFile($self->dir."/polymake.ext");
print $META_new $_;
close $META_new;
}
require Polymake::Configure;
Configure::rewrite_config_files($self->dir, RequireExtensions => $self->list_prerequisite_extensions);
}
###############################################################################################
package Polymake::User;
# TODO: extract commands unrelated to reconfiguration in a separate file,
# for the sake of better legibility
###############################################################################################
sub help {
my ($subject) = @_;
if (length($subject) == 0) {
print $Core::Help::core->display_text;
return;
}
my $help_delim = $help_delimit ? "-------------------\n" : '';
my $top_help;
if ($subject =~ m{^($id_re)(?:$|::|/)}o && defined(my $app = lookup Core::Application($1))) {
$subject = $';
$top_help = $app->help;
} elsif ($subject =~ m{^core/}) {
$subject = $';
$top_help = $Core::Help::core;
} else {
$top_help = $application->help;
}
if (my @topics = uniq( $top_help->get_topics($subject) )) {
my (@subcats, @subtopics, $need_delim);
foreach my $topic (@topics) {
my $text = $topic->display_text;
if (length($text)) {
print $help_delim if $need_delim++;
print $text, "\n";
}
foreach (@{$topic->toc}) {
if ($topic->topics->{$_}->category & 1) {
push @subcats, $_;
} elsif ($_ ne "any") {
push @subtopics, $_;
}
}
}
if (@subcats || @subtopics) {
print $help_delim if $need_delim;
}
my $fp = $topics[0]->full_path =~ s{^/}{}r || $topics[0]->name;
if (@subcats) {
print "Categories of $fp:\n", (join ", ", sort @subcats), "\n";
}
if (@subtopics) {
print "Subtopics of $fp:\n", (join ", ", sort @subtopics), "\n";
}
} elsif (index($subject, "/") < 0
and
@topics = $top_help->find($subject)) {
if (@topics == 1) {
print substr($topics[0]->full_path,1), ":\n", $topics[0]->display_text;
} else {
print "There are ", scalar(@topics), " help topics matching '$subject':\n";
my $n = 0;
if (@topics < 5) {
foreach (@topics) {
print $help_delim, ++$n, ": ", substr($_->full_path,1), ":\n",
$_->display_text, "\n";
}
} else {
$Shell->fill_history({ temporary => 1 },
map {
$subject = substr($_->full_path, 1);
print ++$n, ": $subject\n";
"help '$subject';"
} @topics);
print $help_delim, "Please choose those interesting you via history navigation (ArrowUp/ArrowDown):\n";
}
}
} elsif ($subject eq "credits") {
print "Application ", $application->name, " does not use any third-party software directly\n";
} else {
err_print( "unknown help topic '$subject'" );
}
}
###############################################################################################
sub apropos {
my $expr = shift;
$expr = qr/$expr/i;
if (my @list = uniq( map { $_->list_matching_leaves(sub { length($_[0]->text) && $_[0]->name =~ $expr }) }
map { $_->help, @{$_->help->related } } $application, values %{$application->used} )) {
print map { $_->full_path."\n" } @list;
} else {
print "No matching help items found\n";
}
}
###############################################################################################
sub show_preferences {
my $default_seen;
foreach ($application->prefs->list_active) {
print "$_\n";
$default_seen ||= m/\(\#\)$/;
}
if ($default_seen) {
print "\nPreferences marked with (#) are in effect by default, as specified in the rule files\n";
}
}
###############################################################################################
sub show_credits {
my $brief = shift;
my ($header_shown, $hidden) = (0, 0);
foreach my $credit (sorted_uniq(sort { ($b->product =~ /^_/) - ($a->product =~ /^_/) || $a->product cmp $b->product }
map { values(%{$_->credits}), grep { defined } map { $_->credit } @{$_->extensions} } $application, values %{$application->used} )) {
my $internal = $credit->product =~ /^_/;
if ($credit->shown == Core::Rule::Credit::hide) {
$hidden = true;
} else {
if (!$header_shown && !$internal) {
print "\nApplication ", $application->name, " currently uses following contributed and third-party software packages:\n";
}
if ($brief) {
if (!$internal) {
print ", " if $header_shown;
print $credit->product;
$header_shown = true;
}
} else {
my $text = $credit->text;
Core::InteractiveCommands::clean_text($text);
print "\n", substr($credit->product, $internal), "\n", $text;
$header_shown = !$internal;
}
}
}
if ($brief) {
if ($header_shown) {
print "\nFor more details: show_credits;\n";
}
} elsif (!$header_shown) {
if ($hidden) {
print "\nApplication ", $application->name, " currently does not use any third-party software packages;\n",
"For more details: show_unconfigured;\n";
} else {
print "\nApplication ", $application->name, " does not offer any interfaces to third-party software.\n";
}
} elsif ($hidden || grep { !$_ } map { values %{$_->configured} } $application, values %{$application->used}) {
print "\n", Core::InteractiveCommands::bold("Note:"), " there are also some other interfaces which are currently disabled;\n",
"For more details: show_unconfigured;\n";
}
}
###############################################################################################
sub show_extensions {
if (@Core::Extension::active > $Core::Extension::num_bundled) {
print "Following extensions are loaded:\n",
map { " " . $_->URI . "\n installed at " . $_->dir . "\n\n" .
($_->credit && do { my $text=$_->credit->text; Core::InteractiveCommands::clean_text($text); $text."\n\n" })
} @Core::Extension::active[$Core::Extension::num_bundled .. $#Core::Extension::active];
}
if (keys %Core::Extension::disabled) {
print "Following extensions are registered but not configured for current architecture:\n",
(map { " $_\n" } sort keys %Core::Extension::disabled), "\n";
}
if ($Core::Extension::num_bundled) {
print "Following bundled extensions are configured and used:\n ",
join(", ", map { $_->URI =~ /^bundled:(.*)/ } @Core::Extension::active[0..$Core::Extension::num_bundled-1]),
"\n\n";
}
if (!@Core::Extension::active) {
print "No extensions are currently used\n\n";
}
if (keys %Core::Extension::disabled) {
print <<'.';
To activate an unconfigured extension: help "reconfigure_extension";
.
}
print <<'.';
To import an extension: help "import_extension";
To start an own extension: help "found_extension";
.
}
###############################################################################################
sub found_extension {
my $ext_dir=shift;
my $ext;
if ($ext_dir =~ /^bundled:($id_re)$/o) {
$DeveloperMode or die "A new bundled extension can only be founded from within a git working copy of polymake source tree.\n";
new_bundled Core::Extension($1);
} else {
replace_special_paths($ext_dir);
$ext_dir = Cwd::abs_path($ext_dir);
new_standalone Core::Extension($ext_dir);
push @extensions, $ext_dir;
}
}
###############################################################################################
sub extend_application {
my $where = shift;
my $app = application(@_);
my $ext = lookup Core::Extension($where);
if ($ext->is_bundled) {
$DeveloperMode or die "A bundled extension can only be expanded from within a git working copy of polymake source tree.\n";
}
-w $ext->dir or die "You don't have permission to create new files in ", $ext->dir, "\n";
$app->extend_in($ext);
}
###############################################################################################
sub found_application {
my ($where, $app_name)=@_;
my $app = lookup Core::Application($app_name);
my $exists_in;
if ($app) {
$exists_in = $app->installTop;
} else {
foreach ($InstallTop, @extensions) {
if (-d "$_/apps/$app_name") {
$exists_in=$_; last;
}
}
}
if ($where eq "core") {
$DeveloperMode or die "A new core application can only be founded from within a git working copy of polymake source tree.\n";
if ($exists_in eq $InstallTop) {
die "Application $app_name already exists in the polymake core\n";
} else {
warn_print( "Application $app_name already exists in the extension $exists_in\n",
"Be sure to move the basic definitions, rule files, etc. from there into the core.\n" );
}
found Core::Application($app_name);
} else {
if ($exists_in) {
die "Application $app_name already exists ", $exists_in eq $InstallTop ? "in the polymake core" : "in extension $exists_in", "\n";
}
my $ext = lookup Core::Extension($where);
if ($ext->is_bundled) {
die "A new application can't be founded in a bundled extension; please specify \"core\" as location instead.";
} else {
-w $ext->dir or die "You don't have permission to create new files in ", $ext->dir, "\n";
}
found Core::Application($app_name, $ext);
}
}
###############################################################################################
sub import_extension {
my $ext_dir = shift;
replace_special_paths($ext_dir);
-d $ext_dir or die "Directory $ext_dir does not exist.\n";
$ext_dir = Cwd::abs_path($ext_dir);
if (defined (my $ext = $Core::Extension::registered_by_dir{$ext_dir})) {
if ($ext->is_active) {
die "Extension $ext_dir is already loaded.\n";
} else {
die <<".";
Extension $ext_dir has already been registered,
but could not be configured for the current architecture $Arch.
Please retry the configuration using the command
reconfigure_extension("$ext_dir");
and watch for possible error messages.
To get additional help about configuration options:
reconfigure_extension("$ext_dir", "--help");
.
}
} else {
add Core::Extension($ext_dir, @_);
}
}
###############################################################################################
sub reconfigure_extension {
my $what = shift;
lookup Core::Extension($what)->reconfigure(@_);
}
###############################################################################################
sub obliterate_extension {
my $what = shift;
my $ext = lookup Core::Extension($what);
$ext->may_obliterate;
my $index = string_list_index(\@extensions, $ext->dir);
if ($index < Core::UserSettings::get_item(\@extensions)->reset_to) {
die "Extension ", $ext->URI, " can't be obliterated: it is included by global configuration\n";
}
splice @extensions, $index, 1;
foreach my $app ($ext->obliterate) {
if ($app == $default_application) {
reset_custom $default_application;
}
if ($app == $application) {
application($default_application);
}
delete_string_from_list(\@start_applications, $app->name);
}
delete $Core::Extension::disabled{$ext->dir};
}
###############################################################################################
sub reconfigure {
@_ or die "usage: reconfigure 'rulefile' ...;\n";
$application->reconfigure($_) for @_;
}
sub unconfigure {
@_ or die "usage: unconfigure 'rulefile' ...;\n";
$application->unconfigure($_) for @_;
}
###############################################################################################
sub show_unconfigured {
my (%shown_credits, $credit, $shown);
foreach my $app ($application, values %{$application->used}) {
foreach my $rule_key ($app->list_configured(-1)) {
print $app != $application ? $app->name."::" : "", $rule_key, "\n",
($credit = $app->first_credit_in($rule_key) and !($shown_credits{$credit->product}++))
? ($credit->text, "\n") : ();
$shown = true;
}
}
if ($shown) {
print "\nTo enable an interface: reconfigure(\"", Core::InteractiveCommands::underline("RULEFILE"), "\");\n";
}
}
###############################################################################################
sub export_configured {
my $filename = shift;
my $opts = @_==1 && is_hash($_[0]) ? shift : { @_ };
replace_special_paths($filename);
my @opts = delete @$opts{qw(include_imported suppress)};
if (keys %$opts) {
die "unknown option", keys(%$opts)>1 && "s", ": ", join(" ", keys(%$opts)), "\n";
}
$Settings->save_excerpt($filename, @opts);
}
1
# Local Variables:
# cperl-indent-level:3
# indent-tabs-mode:nil
# End:
|