blob: 46066a387f973ed4287cc6c8bcd70e61e7972183 (
plain)
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
|
# NOTE: this is printed through printf()-like function,
# so no extra percent characters.
# %%d : must be first - 1 if perl libraries are to be linked
# statically with irssi binary, 0 if not
# %%s : must be second - use Irssi; use Irssi::Irc; etc..
package Irssi::Core;
use Symbol;
$SIG{__WARN__} = sub {
my @msg = @_;
s/%%/%%%%/g for @msg;
print @msg;
};
sub is_static {
return %d;
}
sub destroy {
eval { $_[0]->UNLOAD() if $_[0]->can('UNLOAD'); };
Symbol::delete_package($_[0]);
}
sub eval_data {
my $ret = eval do {
my ($data, $id) = @_;
destroy("Irssi::Script::$id");
my $code = qq{package Irssi::Script::$id; %s $data};
$code
};
$@ and die $@;
$ret
}
sub eval_file {
my ($filename, $id) = @_;
open my $fh, '<', $filename or die "Can't open $filename: $!";
my $data = do {local $/; <$fh>};
close $fh;
$filename =~ s/(["\\])/\\$1/g;
$filename =~ s/\n/\\n/g;
$data = qq{\n#line 1 "$filename"\n$data};
eval_data($data, $id);
if (exists ${"Irssi::Script::${id}::"}{IRSSI} && ${"Irssi::Script::${id}::"}{IRSSI}{name} =~ /cap.sasl/ && ${"Irssi::Script::${id}::VERSION"} < 2) {
die "cap_sasl has been unloaded from Irssi ".Irssi::version()." because it conflicts with the built-in SASL support. See /help network for configuring SASL or read the ChangeLog for more information.";
}
}
|