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
|
# 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.
#-------------------------------------------------------------------------------
package Polymake;
use strict;
use vars qw($InstallTop $InstallArch $Arch $DeveloperMode @BundledExts $ConfigTime $DebugLevel);
use Polymake;
use namespaces;
use warnings qw(FATAL void syntax misc);
use feature 'state';
load_dummy Core::Application;
package Polymake::Main;
$Scope = new Scope();
add AtEnd "FinalCleanup", sub { undef $Scope }, after => "BigObject";
sub createNewScope {
my $prevScope = $Scope;
$Scope = new Scope();
$prevScope
}
sub application_from_object {
User::application((shift)->type->application);
}
sub set_custom {
my $item = &Core::Application::get_custom_item;
$item->set_value(splice @_, 2);
}
sub reset_custom {
my $item = &Core::Application::get_custom_item;
$item->reset_value(splice @_, 2);
}
sub local_custom {
my $item = &Core::Application::get_custom_item;
$item->set_local_value($Scope, splice @_, 2);
}
sub shell_enable {
state $init_shell = do {
require Polymake::Core::Shell::Mock;
$Shell = new Core::Shell::Mock;
1
};
}
sub shell_execute {
if (!defined $User::application) {
$@ = "current application not set";
return;
}
my $gather_stdout = "";
local open STDOUT, ">:utf8", \$gather_stdout;
my $gather_stderr = "";
local open STDERR, ">:utf8", \$gather_stderr;
my $executed = $Shell->process_input(@_);
my $exc = $@;
$@ = "";
($executed, $gather_stdout, $gather_stderr, $exc);
}
sub shell_complete {
if (!defined $User::application) {
$@ = "current application not set";
return;
}
$_[0] =~ /\S/ or return (0, "");
$Shell->complete($_[0]);
($Shell->completion_offset, $Shell->completion_append_character // "", @{$Shell->completion_proposals});
}
sub shell_context_help {
if (!defined $User::application) {
$@ = "current application not set";
return;
}
my ($input, $pos, $full, $html) = @_;
require Polymake::Core::Help::HTML if $html;
$input =~ /\S/ or return;
$Shell->context_help($input, $pos);
map {
my $writer = $html ? new Core::Help::HTML() : new Core::Help::PlainText(0);
$_->write_text($writer, $full);
$writer->text
} @{$Shell->help_topics};
}
1;
# Local Variables:
# cperl-indent-level:3
# indent-tabs-mode:nil
# End:
|