-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathr
executable file
·68 lines (49 loc) · 1.65 KB
/
r
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
#!/usr/bin/env perl
use strict;
use File::Spec::Functions qw( splitpath splitdir catpath catdir catfile rootdir );
use Cwd;
die "Usage: r <cmd_to_exec>\n\n Find all lib's to add to PERL5LIB\n" unless @ARGV;
my $mark_file = '.pbs_project';
my ($vol, $cur_dir) = splitpath(getcwd(), 1);
$cur_dir = [splitdir($cur_dir)];
while (1) {
my $dir = catpath($vol, catdir(@$cur_dir));
_exec_cmd($dir) if -e catfile($dir, $mark_file) and -f _;
last if $ENV{HOME} and $dir eq $ENV{HOME};
last if $dir eq rootdir();
pop @$cur_dir;
}
die "Failed to find '$mark_file' file\n";
### Exec command
sub _exec_cmd {
my ($dir) = @_;
chdir($dir);
if (-f 'cpanfile.snapshot' and -d 'local' and !$ENV{R_CARTON_EXEC_DONE}) {
$ENV{R_CARTON_EXEC_DONE} = 1; ## use Carton exec once only!
unshift @ARGV, qw(carton exec), $0;
warn "Using Carton!\n" if $ENV{R_DEBUG};
}
else {
warn "Seting up PERL5LIB for '$dir'\n" if $ENV{R_DEBUG};
$ENV{PERL5LIB} = join(':', _find_libs($dir), split(/:/, $ENV{PERL5LIB} || ''));
warn "Set to PERL5LIB: $ENV{PERL5LIB}\n" if $ENV{R_DEBUG};
}
warn "Exec'ing: @ARGV\n" if $ENV{R_DEBUG};
warn "... with PERL5LIB: $ENV{PERL5LIB}\n" if $ENV{R_DEBUG};
exec(@ARGV);
die "Failed to exec '@ARGV': $!";
}
### Find all lib deps
sub _find_libs {
my @dirs = @_;
my @found;
while (my $dir = shift @dirs) {
my $l = catdir($dir, 'lib');
warn "Check '$dir' for 'lib/'\n" if $ENV{R_DEBUG};
push @found, $l if -d $l;
my $elibs = catdir($dir, 'elib');
next unless opendir(my $dh, $elibs);
push @dirs, grep { -d $_ } map { catfile($elibs, $_) } grep {m/^[^\.]/} readdir($dh);
}
return @found;
}