aboutsummaryrefslogtreecommitdiff
blob: e7fafd28403b5c430899c175a80f951ef86f8782 (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
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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: $

DESCRIPTION="Manage MPI classes"
MAINTAINER="jsbronder@gentoo.org"
SVN_DATE='$Date: $'
VERSION="0.0.2"

inherit path-manipulation config

# The basic idea is we want to allow every use to select their own mpi
# implementation they want, and a ${HOME}/.env.d/mpi file is created for them.
#   A user then is -required- to source the env file.  This sets PATH, MANPATH,
# and LD_LIBRARY_PATH.  I'm sure I'm forgetting something here.
# Calling unset only wipes out the env file, replacing it with what we
# previously added stripped out.

# If you can think of a better way to do this, while still allowing user's
# freedom, please let me know.

# List the valid mpi classes currently installed.
find_classes() {
    local classes
    for f in ${ROOT}/etc/env.d/mpi/*; do
        [[ -f ${f} ]] || continue
        f=$(basename ${f})
        [[ "${f#mpi-}" == "${f}" ]] && continue
        classes=(${classes[@]} ${f})
    done
    echo ${classes[@]}
}

# User's current environment has the class configured in it.
is_in_use() { [ "${ESELECT_MPI_IMP}" == "${1}" ]; }

# User's env file is ready for sourcing for this class
is_enabled() {
    [ "$(var_from_user_envd ESELECT_MPI_IMP)" == "${1}" ]
}

var_from_user_envd(){
    [ ! -f ${user_ev_sh} ] && return 0
    echo "$(source ${user_ev_sh}; echo ${!1})"
}

# Is this a valid class?
is_class() {
    local classes=$(find_classes)
    for i in ${classes[@]}; do
        [[ "${i}" == "${1}" ]] && return 0
    done
    return 1
}

init() {
    local d
    [[ ${UID} -eq 0 ]] && HOME="${ROOT}/root"
    d="$(canonicalise "${ROOT}/${HOME}")"
    d="${d}/.env.d/"
    user_ev_sh="${d}mpi.sh"; 
    user_ev_csh="${d}mpi.csh"; 
    
    if [[ ! -d "${d}" ]]; then
        mkdir "${d}" || die -q "Failed to create ${d}."
    elif [[ ! -w "${d}" ]]; then
        die -q "You do not have permission to mkdir ${d}."
    fi
    [[ -f "${user_ev_sh}" && ! -w "${user_ev_sh}" \
    	&& -f "${user_ev_csh}" && ! -w "${user_ev_csh}" ]] \
        && die -q "You do not have permission to write to ${user_ev_sh} or ${user_ev_csh}."
}

global_env() {
    local d=$(canonicalise "${ROOT}/etc/env.d/mpi/${1}")
    [ -z "${d}" ] && die "Cannot find global env file for ${1}"
    ev=${d}
}

clean_var() { 
   local class v
   local value="${!1}"
   local d="$(canonicalise "${ROOT}/etc/env.d/mpi/${class}")"
   [ -z "${value}" ] && return 0
   [ -z "${d}" ] && continue
   
   for class in $(find_classes); do
       v=$(load_config ${d}/${class} ${1})
       [ -z "${v}" ] && continue
       value="$(echo ${value} | sed -e "s|${v}:||g")"
   done
   echo ${value}
}


### list action ###

describe_list() {  echo "List available classs"; }
describe_list_parameters() { echo "[-p]"; }

do_list() {
    classes=( $(find_classes) )
    init
    if [[ ${@} == *-p* ]]; then
        echo "${classes[@]}"
    else
        write_list_start "Available MPI classs:"
        if [[ -n "${classes[@]}" ]]; then
            for (( i=0; i<${#classes[@]}; i++ )); do
                if is_in_use ${classes[$i]} && is_enabled ${classes[$i]}; then
                    write_kv_list_entry "${classes[$i]}" "Enabled, In Use"
                elif is_in_use ${classes[$i]}; then
                    write_kv_list_entry "${classes[$i]}" "In Use"
                elif is_enabled ${classes[$i]}; then
                    write_kv_list_entry "${classes[$i]}" "Enabled"
                else
                    write_kv_list_entry "${classes[$i]}" "--"
                fi
            done
        else
            write_kv_list_entry "(none found)" ""
        fi
    fi
    return 0
}


### set action ###

describe_set() {
    echo "Select a MPI class."
}

describe_set_parameters() {
    echo "<target>"
}

do_set() {
    local binpath lld manpath

    init
    global_env ${1}

    [[ -z ${1} ]] && die -q "You didnt specifiy any class for use."
    [[ ${#@} -ne 1 ]] && die -q "You may only select exactly one class."
    ! is_class ${1} && die -q "${1} is not an class."
    is_enabled ${1} && return 0
    
   binpath="$(load_config ${ev} PATH):$(clean_var PATH)"
   lld="$(load_config ${ev} LD_LIBRARY_PATH):$(clean_var LD_LIBRARY_PATH)"
   manpath="$(load_config ${ev} MANPATH):$(clean_var MANPATH)"

cat <<-EOF >${user_ev_sh}
export PATH="${binpath}"
export MANPATH="${manpath}"
export LD_LIBRARY_PATH="${lld}"
export ESELECT_MPI_IMP="${1}"
EOF

cat <<-EOF >${user_ev_csh}
setenv PATH "${binpath}"
setenv MANPATH "${manpath}"
setenv LD_LIBRARY_PATH "${lld}"
setenv ESELECT_MPI_IMP "${1}"
EOF

    echo "Remember to source ${user_ev_sh}, ${user_ev_csh} or /etc/profile"
}


### unset action ###
describe_unset() {
    echo "Restore MPI-less environment."
}

do_unset() {
   local binpath lld manpath

   init
   [ -f "${user_ev_sh}" ] && rm -f "${user_ev_sh}"
   [ -f "${user_ev_csh}" ] && rm -f "${user_ev_csh}"

   echo "Remember to source ${user_ev_sh}, ${user_ev_csh} or /etc/profile"
}

### add action (from skel pretty much)
describe_add() {
    echo "Add a new mpi class"
}

describe_add_parameters() {
    echo "<file>"
}

do_add() {
    local class
    [[ ${#@} -ne 1 ]] \
        && die -q "Bad arguments, use:  mpi add /some/full/path/<class>.eselect"

    # If $D is set, we're adding from portage so we want to respect sandbox.
    # Otherwise, respect the ROOT variable.
    local PREFIX=${D:-${ROOT}/}

    # Create directory if necessary
    if [[ ! -e ${PREFIX}/etc/env.d/mpi/ ]]; then
        mkdir -p ${PREFIX}/etc/env.d/mpi/
    else
        if [[ ! -d ${PREFIX}/etc/env.d/mpi/ ]]; then
            die -q "${PREFIX}/etc/env.d/mpi/ exists but isn't a directory!"
        fi
    fi

    class=$(basename ${1}); class=${class%.eselect}
    if ! cp ${1} ${PREFIX}/etc/env.d/mpi/${class}; then
        die -q "Installing ${1} as ${PREFIX}/etc/env.d/mpi/${class} failed!"
    fi
}


### printvar action ###
describe_printvar() { echo "Print variables stored in global env.d file."; }
describe_printvar_parameters() { echo "<class> <variable>"; }

do_printvar() {
    if [[ ${#@} -ne 2 ]] \
        || ! is_class ${1}; then
        die -q "Specify exactly 1 class and 1 variable."
    fi
    global_env ${1}
    echo "$(load_config ${ev} ${2})"
}

# vim: set ft=eselect :