2016-08-25 20:03:06 +00:00
#!/usr/bin/env tcsh
2016-04-14 06:33:58 +00:00
2016-05-04 17:28:40 +00:00
# This file must be sourced in tcsh:
2016-04-14 06:33:58 +00:00
#
2016-05-04 17:28:40 +00:00
# source `which env_parallel.tcsh`
2016-04-14 06:33:58 +00:00
#
# after which 'env_parallel' works
#
#
2020-01-09 13:37:41 +00:00
# Copyright (C) 2016-2020 Ole Tange, http://ole.tange.dk and Free
# Software Foundation, Inc.
2016-04-14 06:33:58 +00:00
#
# 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 3 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>
# or write to the Free Software Foundation, Inc., 51 Franklin St,
# Fifth Floor, Boston, MA 02110-1301 USA
2016-10-17 22:02:48 +00:00
set _parallel_exit_CODE = 0
2019-01-21 02:16:23 +00:00
if ( "`alias env_parallel`" == '' || ! $? PARALLEL_CSH) then
2016-04-14 06:33:58 +00:00
# Activate alias
2019-01-21 02:16:23 +00:00
alias env_parallel '(setenv PARALLEL_CSH "\!*"; source `which env_parallel.csh`)'
2016-04-14 06:33:58 +00:00
else
2016-07-10 20:57:33 +00:00
# Get the --env variables if set
# --env _ should be ignored
# and convert a b c to (a|b|c)
# If --env not set: Match everything (.*)
2017-12-04 21:44:34 +00:00
# simple 'tempfile': Return nonexisting filename: /tmp/parXXXXX
alias _tempfile 'perl -e do\{\$t\=\"/tmp/par\".join\"\",map\{\(0..9,\"a\"..\"z\",\"A\"..\"Z\"\)\[rand\(62\)\]\}\(1..5\)\;\}while\(-e\$t\)\;print\"\$t\\n\"'
set _tMpscRIpt = ` _tempfile`
2016-07-10 20:57:33 +00:00
cat <<'EOF' > $_tMpscRIpt
2016-07-14 07:35:39 +00:00
#!/usr/bin/perl
2016-07-10 20:57:33 +00:00
for( @ARGV){
/^_$/ and $next_is_env = 0;
$next_is_env and push @envvar, split/,/, $_ ;
$next_is_env = /^--env$/ ;
}
$vars = join "|" ,map { quotemeta $_ } @envvar;
print $vars ? "($vars)" : "(.*)" ;
'EOF'
2019-01-21 02:16:23 +00:00
set _grep_REGEXP = "`perl $_tMpscRIpt -- $PARALLEL_CSH`"
2016-07-14 07:35:39 +00:00
2016-07-10 20:57:33 +00:00
# Deal with --env _
cat <<'EOF' > $_tMpscRIpt
#!/usr/bin/perl
2019-01-21 02:16:23 +00:00
2016-07-10 20:57:33 +00:00
for( @ARGV){
$next_is_env and push @envvar, split/,/, $_ ;
$next_is_env = /^--env$/ ;
}
if ( grep { /^_$/ } @envvar) {
if ( not open( IN, "<" , "$ENV{HOME}/.parallel/ignored_vars" )) {
2016-07-22 18:39:12 +00:00
print STDERR "parallel: Error: " ,
"Run \"parallel --record-env\" in a clean environment first.\n" ;
2016-07-10 20:57:33 +00:00
} else {
2016-07-22 18:39:12 +00:00
chomp( @ignored_vars = <IN>) ;
2018-07-18 15:29:57 +00:00
$vars = join "|" ,map { quotemeta $_ } @ignored_vars;
2016-07-22 18:39:12 +00:00
print $vars ? "($vars)" : "(,,nO,,VaRs,,)" ;
2016-07-10 20:57:33 +00:00
}
}
'EOF'
2019-01-21 02:16:23 +00:00
set _ignore_UNDERSCORE = "`perl $_tMpscRIpt -- $PARALLEL_CSH`"
2016-07-10 20:57:33 +00:00
rm $_tMpscRIpt
2016-07-14 07:35:39 +00:00
2016-04-14 06:33:58 +00:00
# Get the scalar and array variable names
2018-07-11 16:46:05 +00:00
set _vARnAmES = ( ` set | perl -ne 's/\s.*//; /^(#|_|killring|prompt2|command|PARALLEL_ENV|PARALLEL_TMP)$/ and next; /^' "$_grep_REGEXP" '$/ or next; /^' "$_ignore_UNDERSCORE" '$/ and next; print' ` )
2016-04-14 06:33:58 +00:00
# Make a tmpfile for the variable definitions
2017-12-04 21:44:34 +00:00
set _tMpvARfILe = ` _tempfile`
touch $_tMpvARfILe
2016-04-14 06:33:58 +00:00
# Make a tmpfile for the variable definitions + alias
2017-12-04 21:44:34 +00:00
set _tMpaLLfILe = ` _tempfile`
2016-04-14 06:33:58 +00:00
foreach _vARnAmE ( $_vARnAmES ) ;
2019-01-21 02:16:23 +00:00
# These 3 lines break in csh version 20110502-3
2016-07-10 20:57:33 +00:00
# if not defined: next
eval if '(! $?' $_vARnAmE ') continue'
# if $#myvar <= 1 echo scalar_myvar=$var
eval if '(${#' $_vARnAmE '} <= 1) echo scalar_' $_vARnAmE '=' \" \$ $_vARnAmE \" >> $_tMpvARfILe ;
# if $#myvar > 1 echo array_myvar=$var
eval if '(${#' $_vARnAmE '} > 1) echo array_' $_vARnAmE '="$' $_vARnAmE '"' >> $_tMpvARfILe ;
2016-04-14 06:33:58 +00:00
end
2016-07-10 20:57:33 +00:00
unset _vARnAmE _vARnAmES
2019-01-21 02:16:23 +00:00
# shell quote variables (--plain needed due to ignore if $PARALLEL is set)
2016-04-14 06:33:58 +00:00
# Convert 'scalar_myvar=...' to 'set myvar=...'
# Convert 'array_myvar=...' to 'set array=(...)'
cat $_tMpvARfILe | parallel --plain --shellquote | perl -pe 's/^scalar_(\S+).=/set $1=/ or s/^array_(\S+).=(.*)/set $1=($2)/ && s/\\ / /g;' > $_tMpaLLfILe
# Cleanup
2016-07-10 20:57:33 +00:00
rm $_tMpvARfILe ; unset _tMpvARfILe
2016-04-14 06:33:58 +00:00
# ALIAS TO EXPORT ALIASES:
# Quote ' by putting it inside "
# s/'/'"'"'/g;
# ' => \047 " => \042
# s/\047/\047\042\047\042\047/g;
# Quoted: s/\\047/\\047\\042\\047\\042\\047/g\;
# Remove () from second column
# s/^(\S+)(\s+)\((.*)\)/\1\2\3/;
# Quoted: s/\^\(\\S+\)\(\\s+\)\\\(\(.\*\)\\\)/\\1\\2\\3/\;
# Add ' around second column
# s/^(\S+)(\s+)(.*)/\1\2'\3'/
# \047 => '
# s/^(\S+)(\s+)(.*)/\1\2\047\3\047/;
# Quoted: s/\^\(\\S+\)\(\\s+\)\(.\*\)/\\1\\2\\047\\3\\047/\;
# Quote ! as \!
# s/\!/\\\!/g;
# Quoted: s/\\\!/\\\\\\\!/g;
# Prepend with "\nalias "
# s/^/\001alias /;
# Quoted: s/\^/\\001alias\ /\;
2016-07-10 20:57:33 +00:00
alias | \
2017-12-04 21:44:34 +00:00
perl -ne '/^' "$_grep_REGEXP" '/ or next; /^' "$_ignore_UNDERSCORE" '[^_a-zA-Z]/ and next; print' | \
2019-01-21 02:16:23 +00:00
perl -pe s/\\ 047/\\ 047\\ 042\\ 047\\ 042\\ 047/g\; s/\^ \( \\ S+\) \( \\ s+\) \\ \( \( .\* \) \\ \) /\\ 1\\ 2\\ 3/\; s/\^ \( \\ S+\) \( \\ s+\) \( .\* \) /\\ 1\\ 2\\ 047\\ 3\\ 047/\; s/\^ /\\ 001alias\ /\; s/\\ \! /\\ \\ \\ \! /g >> $_tMpaLLfILe
2016-04-14 06:33:58 +00:00
setenv PARALLEL_ENV "`cat $_tMpaLLfILe; rm $_tMpaLLfILe`" ;
unset _tMpaLLfILe;
2019-01-21 02:16:23 +00:00
# Use $PARALLEL_CSH set in calling alias
2016-04-14 06:33:58 +00:00
parallel
2016-10-17 22:02:48 +00:00
set _parallel_exit_CODE = $status
2016-04-14 06:33:58 +00:00
setenv PARALLEL_ENV
2019-01-21 02:16:23 +00:00
setenv PARALLEL_CSH
2016-04-14 06:33:58 +00:00
endif
2016-10-22 11:46:01 +00:00
( exit $_parallel_exit_CODE )