/usr/share/polymake/perllib/Polymake/User.pm is in polymake-common 3.2r2-3.
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 | # Copyright (c) 1997-2018
# Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany)
# http://www.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.
#-------------------------------------------------------------------------------
use strict;
use namespaces;
use warnings qw(FATAL void syntax misc);
use feature 'state';
package Polymake::User;
declare $application;
sub application {
if (@_>1) {
die "usage: application [ \"name\" ]\n";
} elsif (my ($new_app)=@_) {
# This magic provides automatic loading of applications when they are first mentioned
# as a prefix of a user function in the shell input, in a script, documentation example, or tutorial.
state $register_autoload=namespaces::set_autolookup(\&Core::Application::try_auto_load);
if (defined wantarray) {
if (ref($new_app)) {
warn_print( "application() call without effect as the application ", $new_app->name, " already loaded" );
$new_app;
} else {
add Core::Application($new_app);
}
} else {
$new_app=add Core::Application($new_app) unless ref($new_app);
if (defined($application)) {
return if $application == $new_app;
readwrite($application);
}
$application=$new_app;
readonly($application);
}
} else {
# tell the current application
$application;
}
}
#################################################################################
sub include {
my $rc=$application->include_rules(@_);
if ($rc != @_) {
foreach (@_) {
my ($app, $rulefile)= /^($id_re)::/o ? ($application->used->{$1}, $') : ($application, $_);
my ($filename, $ext, $rule_key, $rc)=$app->lookup_rulefile($rulefile);
if (!$rc) {
if ($app->configured->{$rule_key} < 0) {
warn_print( "rulefile $_ is disabled by auto-configuration.\n",
"Try reconfigure \"$_\"; if you really need it." );
} elsif ($app->configured->{$rule_key} =~ /^0\#(?=.)/) {
warn_print( "rulefile $_ can't be loaded because of unsatisfied dependency on $'\n",
"Try to reconfigure the prerequisites if you really need it." );
}
}
}
}
}
#################################################################################
sub load {
my ($name)=@_;
my $filename=$name;
replace_special_paths($filename);
unless (-f $filename
or
defined($application->default_file_suffix) && $filename !~ /\.\w+$/ &&
-f ($filename .= "." . $application->default_file_suffix)) {
croak( "no such file: $name" );
}
my $obj=load Core::Object($filename);
$obj;
}
#################################################################################
sub save {
my ($obj, $filename)=@_;
if (!is_object($obj) || !instanceof Core::Object($obj)) {
croak( "only polymake Objects can be stored with the function save()" );
}
if (defined($obj->parent)) {
croak( "A sub-object can't be saved without its parent" );
}
if (!$obj->persistent || defined($filename)) {
if (defined $filename) {
replace_special_paths($filename);
if ($filename !~ /\.\w+$/) {
$filename .= "." . $obj->default_file_suffix;
}
} else {
if (!length($obj->name)) {
$obj->name=Core::name_of_arg_var(0);
}
if (length($obj->name)) {
$filename=$obj->name.".".$obj->default_file_suffix;
if (-f $filename) {
if ($Shell->interactive) {
print "The file $filename already exists.\n",
"Please specify another file name or confirm it to be overwritten:\n";
$filename=$Shell->enter_filename($filename, { prompt => "data file" }) or return;
} else {
croak( "Can't save an object '", $obj->name, "' since the file $filename already exists.\n",
"Please specify the explicit file name as the second argument to save() or delete the existing file (unlink \"$filename\")" );
}
}
} else {
if ($Shell->interactive) {
print "Please specify the file name for the anonymous ", $obj->type->full_name, " object:\n";
$filename=$Shell->enter_filename("", { prompt => "data file" }) or return;
} else {
my $i=1;
while (-f ($filename=($obj->name=$obj->type->name."_$i".".".$obj->default_file_suffix))) { ++$i }
warn_print( "saving object as $filename" );
}
}
}
$obj->persistent=new Core::XMLfile($filename);
$obj->changed=1;
} elsif (! $obj->changed) {
warn_print( "no changes need to be saved" );
return;
}
$obj->save;
}
#################################################################################
sub save_schema {
if (@_<2) {
die "usage: save_schema(Object or ObjectType, ..., \"filename\"\n";
}
my $filename=pop;
if ($filename !~ /\.\w+$/) {
$filename .= ".rng";
}
replace_special_paths($filename);
my $xf=new Core::XMLfile($filename);
$xf->save_schema(map {
if (is_object($_) && UNIVERSAL::can($_, "type")) {
$_->type
} else {
die "argument ", ref($_) || "'$_'", " is not an object or a type expression\n";
}
} @_);
}
#################################################################################
sub load_data {
my ($filename)=@_;
replace_special_paths($filename);
my $xf=new Core::XMLfile($filename);
scalar($xf->load_data);
}
sub save_data {
my ($data, $filename, $description)=@_;
if (!is_object($data)) {
croak( "only complex data types can be saved in separate files" );
}
if (instanceof Core::Object($data)) {
croak( "an object of type ", $data->type->full_name, " can't be saved with save_data: please use save() instead" );
}
if (defined (my $type=UNIVERSAL::can($data, ".type"))) {
$type=$type->();
if (instanceof Core::PropertyType($type)) {
replace_special_paths($filename);
my $xf=new Core::XMLfile($filename);
$xf->save_data($data, $description);
return;
}
}
croak( "can't save ", ref($data), ": it does not belong to any declared property type" );
}
#################################################################################
use subs qw(rename unlink mkdir chdir rmdir);
sub rename { my ($from, $to)=@_; replace_special_paths($from, $to); CORE::rename($from, $to) or die "rename failed: $!\n"; }
sub unlink { my @list=@_; replace_special_paths(@list); CORE::unlink(@list) or die "unlink failed: $!\n"; }
sub mkdir { my ($path, $mask)=@_; replace_special_paths($path); CORE::mkdir($path, $mask || 0755) or die "mkdir failed: $!\n"; }
sub rmdir { my ($path)=@_; replace_special_paths($path); CORE::rmdir($path) or die "rmdir failed: $!\n"; }
sub chdir {
my $path;
if (my ($path)=@_) {
replace_special_paths($path) if is_string($path);
CORE::chdir($path) or die "chdir failed: $!\n";
} else {
CORE::chdir;
}
}
sub pwd { print Cwd::cwd }
#################################################################################
sub prefer {
if ($_[0] =~ /^($id_re)::/o) {
shift; application($1)->prefer($', @_);
} else {
$application->prefer(@_);
}
}
sub prefer_now {
if ($_[0] =~ /^($id_re)::/o) {
shift; application($1)->prefer_now($', @_);
} else {
$application->prefer_now(@_);
}
}
# an alias, for the sake of symmetry
*set_preference=\&prefer;
sub reset_preference {
if ($_[0] =~ /^($id_re)::/o) {
shift; application($1)->reset_preference($', @_);
} else {
$application->reset_preference(@_);
}
}
#################################################################################
sub disable_rules {
$application->disable_rules(@_);
}
#################################################################################
sub set_custom {
$application->_set_custom($Prefs->custom, Core::name_of_custom_var(1));
}
sub reset_custom {
$application->_reset_custom($Prefs->custom, Core::name_of_custom_var(0));
}
#################################################################################
sub script {
my $name=shift;
replace_special_paths($name);
my ($code, $full_path, $in_app)=find Core::StoredScript($name);
if (defined $code) {
local *ARGV=\@_;
&$code;
} else {
local @ARGV=@_;
# The following awful expression *can't* be broken down into more legible if-else branches
# because all localizations have to occur in this block.
defined($in_app)
? $in_app != $User::application && (local $User::application=$in_app,
ref($INC[0]) ? (local $INC[0]=$in_app) : local_unshift(\@INC, $in_app))
: (local_save_scalar($User::application),
ref($INC[0]) || local_unshift(\@INC, $User::application));
$name="script" . (defined($in_app) ? ":" : "=") . $full_path;
if (wantarray) {
my @ret=do $name;
die $@ if $@;
@ret
} elsif (defined wantarray) {
my $ret=do $name;
die $@ if $@;
$ret
} else {
do $name;
die $@ if $@;
}
}
}
#################################################################################
# prepare for custom variables and preferences
package Polymake::User::Verbose;
*Polymake::Verbose::=get_symtab(__PACKAGE__);
push @Core::UserSettings::add_custom_vars,
sub {
my $ch=$Prefs->create_custom("Polymake::User");
$ch->pkg_help->{__PACKAGE__}=<<'.';
# The following variables control the display of various informational message classes.
.
declare $credits=1;
$ch->add('$credits', <<'.');
# Display the copyright notices and URLs of third-party software:
# 0 - never, 1 - at the first use in the current session, 2 - always
.
declare $rules=1;
$ch->add('$rules', <<'.');
# Display the information about the rules:
# 0 - nothing, 1 - significant failures, 2 - summary and all failed preconditions, 3 - executed rule executed
.
declare $scheduler=0;
$ch->add('$scheduler', <<'.');
# Reveal the internals of the rule scheduler:
# 0 - nothing, 1 - summary and statistics, 2 - initial rule selection,
# 3 - shortest path search (overwhelming amount of data)
.
declare $cpp=0;
$ch->add('$cpp', <<'.');
# Tell about the actions of the perl/C++ interface generator:
# 0 - nothing, 1 - compiler calls and source file updates, 2 - source code generated
.
declare $files=1;
$ch->add('$files', <<'.');
# Notify about nontrivial actions during data file processing
.
declare $external=0;
$ch->add('$external', <<'.');
# Notify about external programs starting in the background
# (not to be mixed up with credits!)
.
package Polymake::User;
declare @start_applications;
$ch->add('@start_applications', <<'.');
# Applications to be loaded at the beginning of each interactive or batch session
.
declare $default_application;
$ch->add('$default_application', <<'.');
# Application to start with as the current one
.
declare @extensions;
$ch->add('@extensions', <<'.', $Core::Customize::state_accumulating);
# A list of directories containing imported and/or locally created extensions
.
declare %disabled_extensions;
$ch->add('%disabled_extensions', <<'.', $Core::Customize::state_config | $Core::Customize::state_hidden | $Core::Customize::state_noexport);
# Extensions which could not be configured for given architecture
.
declare @lookup_scripts;
$ch->add('@lookup_scripts', <<'.', $Core::Customize::state_accumulating);
# A list of directories where to look for scripts
.
declare $history_size=200;
$ch->add('$history_size', <<'.');
# Maximal number of commands stored in the interactive shell's history.
# If set to undef, history list grows unlimited.
.
declare $history_editor=$ENV{VISUAL} || $ENV{EDITOR} || "vi";
$ch->add('$history_editor', <<'.');
# Editor for the ''history'' command.
# Must be a complete shell command. If the temporary file name is expected somewhere in the middle
# of the arguments, please use the placeholder %f.
.
declare $help_key="_k1";
$ch->add('$help_key', <<'.');
# Key to press for interactive help in the shell. Defaults to F1.
.
declare $help_delimit=1;
$ch->add('$help_delimit', <<'.');
# Add delimiters for better readability in help text.
.
$ch->cleanup;
# rescue the old-fashioned lookup_applications list
if (defined (my $lookup_apps=*lookup_applications{ARRAY})) {
push @extensions, @$lookup_apps;
$ch->set('@extensions');
}
# treat relative paths as starting at $HOME
s{^(?:~/|(?!/))}{$ENV{HOME}/} for @extensions, @lookup_scripts;
if (!@start_applications) {
$ch->set('@start_applications', map { m{apps/([^/]+)/rules} } glob("$InstallTop/apps/*/rules/main.rules"));
}
if (!$default_application) {
$ch->set('$default_application', string_list_index(\@start_applications, "polytope")>=0 ? "polytope" : $start_applications[0]);
}
};
1
# Local Variables:
# cperl-indent-level:3
# indent-tabs-mode:nil
# End:
|