]> Sergey Matveev's repositories - zsh-autoenv.git/blob - lib/varstash
26b2e7286f6f32d987c711d5f071a82b1e62a48b
[zsh-autoenv.git] / lib / varstash
1 ################################################################################
2 # Stash/unstash support for per-directory variables
3 #
4 # Adopted for zsh-autoenv.
5 #
6 #   Copyright (c) 2009,2012 Dave Olszewski <cxreg@pobox.com>
7 #   http://github.com/cxreg/smartcd
8 #
9 #   This code is released under GPL v2 and the Artistic License, and
10 #   may be redistributed under the terms of either.
11 #
12 #
13 #   This library allows you to save the current value of a given environment
14 #   variable in a temporary location, so that you can modify it, and then
15 #   later restore its original value.
16 #
17 #   Note that you will need to be in the same directory you were in when you
18 #   stashed in order to successfully unstash.  This is because the temporary
19 #   variable is derived from your current working directory's path.
20 #
21 #   Usage:
22 #       stash PATH
23 #       export PATH=/something/else
24 #       [...]
25 #       unstash PATH
26 #
27 #   Note that this was written for use with, and works very well with,
28 #   smartcd.  See the documentation there for examples.
29 #
30 #   An alternate usage is `autostash' which will trigger autounstash when
31 #   leaving the directory, if combined with smartcd.  This reduces the amount
32 #   of explicit configuration you need to provide:
33 #
34 #       autostash PATH
35 #       export PATH=/something/else
36 #
37 #   You may also do both operations on line line, leaving only the very succinct
38 #
39 #       autostash PATH=/something/else
40 #
41 #   If you attempt to stash the same value twice, a warning will be displayed
42 #   and the second stash will not occur.  To make it happen anyway, pass -f
43 #   as the first argument to stash.
44 #
45 #       $ stash FOO
46 #       $ stash FOO
47 #       You have already stashed FOO, please specify "-f" if you want to overwrite another stashed value
48 #       $ stash -f FOO
49 #       $
50 #
51 #   This rule is a bit different if you are assigning a value and the variable
52 #   has already been stashed.  In that case, the new value will be assigned, but
53 #   the stash will not be overwritten.  This allows for non-conflicting chained
54 #   stash-assign rules.
55 #
56 ################################################################################
57
58
59 function stash() {
60     if [[ $1 == "-f" ]]; then
61         local force=1; shift
62     fi
63
64     while [[ -n $1 ]]; do
65         if [[ $1 == "alias" && $2 == *=* ]]; then
66             shift
67             local _stashing_alias_assign=1
68             continue
69         fi
70
71         local stash_expression=$1
72         local stash_which=${stash_expression%%'='*}
73         local stash_name=$(_mangle_var $stash_which)
74
75         # Extract the value and make it double-quote safe
76         local stash_value=${stash_expression#*'='}
77         stash_value=${stash_value//\\/\\\\}
78         stash_value=${stash_value//\"/\\\"}
79         stash_value=${stash_value//\`/\\\`}
80         stash_value=${stash_value//\$/\\\$}
81
82         if [[ ( -n "$(eval echo '$__varstash_alias__'$stash_name)"    ||
83                 -n "$(eval echo '$__varstash_function__'$stash_name)" ||
84                 -n "$(eval echo '$__varstash_array__'$stash_name)"    ||
85                 -n "$(eval echo '$__varstash_export__'$stash_name)"   ||
86                 -n "$(eval echo '$__varstash_variable__'$stash_name)" ||
87                 -n "$(eval echo '$__varstash_nostash__'$stash_name)" )
88                 && -z $force ]]; then
89
90             if [[ -z $already_stashed && ${already_stashed-_} == "_" ]]; then
91                 local already_stashed=1
92             else
93                 already_stashed=1
94             fi
95
96             if [[ $stash_which == $stash_expression ]]; then
97                 if [[ -z $run_from_smartcd ]]; then
98                     echo "You have already stashed $stash_which, please specify \"-f\" if you want to overwrite another stashed value"
99                 fi
100
101                 # Skip remaining work if we're not doing an assignment
102                 shift
103                 continue
104             fi
105         fi
106
107         # Handle any alias that may exist under this name
108         if [[ -z $already_stashed ]]; then
109             local alias_def="$(eval alias $stash_which 2>/dev/null)"
110             if [[ -n $alias_def ]]; then
111                 alias_def=${alias_def#alias }
112                 eval "__varstash_alias__$stash_name=\"$alias_def\""
113                 local stashed=1
114             fi
115         fi
116         if [[ $stash_which != $stash_expression && -n $_stashing_alias_assign ]]; then
117             eval "alias $stash_which=\"$stash_value\""
118         fi
119
120         # Handle any function that may exist under this name
121         if [[ -z $already_stashed ]]; then
122             local function_def="$(declare -f $stash_which)"
123             if [[ -n $function_def ]]; then
124                 # make function definition quote-safe.  because we are going to evaluate the
125                 # source with "echo -e", we need to double-escape the backslashes (so 1 -> 4)
126                 function_def=${function_def//\\/\\\\\\\\}
127                 function_def=${function_def//\"/\\\"}
128                 function_def=${function_def//\`/\\\`}
129                 function_def=${function_def//\$/\\\$}
130                 eval "__varstash_function__$stash_name=\"$function_def\""
131                 local stashed=1
132             fi
133         fi
134
135         # Handle any variable that may exist under this name
136         local vartype="$(declare -p $stash_which 2>/dev/null)"
137         if [[ -n $vartype ]]; then
138             if [[ -n $ZSH_VERSION ]]; then
139                 local pattern="typeset"
140             else
141                 local pattern="declare"
142             fi
143             if [[ $vartype == $pattern" -a"* ]]; then
144                 # varible is an array
145                 if [[ -z $already_stashed ]]; then
146                     eval "__varstash_array__$stash_name=(\"\${$stash_which""[@]}\")"
147                 fi
148
149             elif [[ $vartype == $pattern" -x"* ]]; then
150                 # variable is exported
151                 if [[ -z $already_stashed ]]; then
152                     eval "export __varstash_export__$stash_name=\"\$$stash_which\""
153                 fi
154                 if [[ $stash_which != $stash_expression && -z $_stashing_alias_assign ]]; then
155                     eval "export $stash_which=\"$stash_value\""
156                 fi
157             else
158                 # regular variable
159                 if [[ -z $already_stashed ]]; then
160                     eval "__varstash_variable__$stash_name=\"\$$stash_which\""
161                 fi
162                 if [[ $stash_which != $stash_expression && -z $_stashing_alias_assign ]]; then
163                     eval "$stash_which=\"$stash_value\""
164                 fi
165
166             fi
167             local stashed=1
168         fi
169
170         if [[ -z $stashed ]]; then
171             # Nothing in the variable we're stashing, but make a note that we stashed so we
172             # do the right thing when unstashing.  Without this, we take no action on unstash
173
174             # Zsh bug sometimes caues
175             # (eval):1: command not found: __varstash_nostash___tmp__home_dolszewski_src_smartcd_RANDOM_VARIABLE=1
176             # fixed in zsh commit 724fd07a67f, version 4.3.14
177             if [[ -z $already_stashed ]]; then
178                 eval "export __varstash_nostash__$stash_name=1"
179             fi
180
181             # In the case of a previously unset variable that we're assigning too, export it
182             if [[ $stash_which != $stash_expression && -z $_stashing_alias_assign ]]; then
183                 eval "export $stash_which=\"$stash_value\""
184             fi
185         fi
186
187         shift
188         unset -v _stashing_alias_assign
189     done
190 }
191
192 function get_autostash_array_name() {
193     local autostash_name=$(_mangle_var AUTOSTASH)
194     # Create a scalar variable linked to an array (for exporting).
195     local autostash_array_name=${(L)autostash_name}
196     if ! (( ${(P)+autostash_array_name} )); then
197         # Conditionally set it, to prevent error with Zsh 4.3:
198         # can't tie already tied scalar: ...
199         typeset -xT $autostash_name $autostash_array_name
200     fi
201     ret=$autostash_array_name
202 }
203
204 function autostash() {
205     local run_from_autostash=1
206     while [[ -n $1 ]]; do
207         if [[ $1 == "alias" && $2 == *=* ]]; then
208             shift
209             local _stashing_alias_assign=1
210         fi
211
212         local already_stashed=
213         stash "$1"
214         if [[ -z $already_stashed ]]; then
215             local ret varname=${1%%'='*}
216             get_autostash_array_name
217             eval "$ret=(\$$ret \$varname)"
218         fi
219         shift
220         unset -v _stashing_alias_assign
221     done
222 }
223
224 function unstash() {
225     while [[ -n $1 ]]; do
226         local unstash_which=$1
227         if [[ -z $unstash_which ]]; then
228             continue
229         fi
230
231         local unstash_name=$(_mangle_var $unstash_which)
232
233         # This bit is a little tricky.  Here are the rules:
234         #   1) unstash any alias, function, or variable which matches
235         #   2) if one or more matches, but not all, delete any that did not
236         #   3) if none match but nostash is found, delete all
237         #   4) if none match and nostash not found, do nothing
238
239         # Unstash any alias
240         if [[ -n "$(eval echo \$__varstash_alias__$unstash_name)" ]]; then
241             eval "alias $(eval echo \$__varstash_alias__$unstash_name)"
242             unset __varstash_alias__$unstash_name
243             local unstashed=1
244             local unstashed_alias=1
245         fi
246
247         # Unstash any function
248         if [[ -n "$(eval echo \$__varstash_function__$unstash_name)" ]]; then
249             eval "function $(eval echo -e \"\$__varstash_function__$unstash_name\")"
250             unset __varstash_function__$unstash_name
251             local unstashed=1
252             local unstashed_function=1
253         fi
254
255         # Unstash any variable
256         if [[ -n "$(declare -p __varstash_array__$unstash_name 2>/dev/null)" ]]; then
257             eval "$unstash_which=(\"\${__varstash_array__$unstash_name""[@]}\")"
258             unset __varstash_array__$unstash_name
259             local unstashed=1
260             local unstashed_variable=1
261         elif [[ -n "$(declare -p __varstash_export__$unstash_name 2>/dev/null)" ]]; then
262             eval "export $unstash_which=\"\$__varstash_export__$unstash_name\""
263             unset __varstash_export__$unstash_name
264             local unstashed=1
265             local unstashed_variable=1
266         elif [[ -n "$(declare -p __varstash_variable__$unstash_name 2>/dev/null)" ]]; then
267             # Unset variable first to reset export
268             unset -v $unstash_which
269             eval "$unstash_which=\"\$__varstash_variable__$unstash_name\""
270             unset __varstash_variable__$unstash_name
271             local unstashed=1
272             local unstashed_variable=1
273         fi
274
275         # Unset any values which did not exist at time of stash
276         local nostash="$(eval echo \$__varstash_nostash__$unstash_name)"
277         unset __varstash_nostash__$unstash_name
278         if [[ ( -n "$nostash" && -z "$unstashed" ) || ( -n "$unstashed" && -z "$unstashed_alias" ) ]]; then
279             unalias $unstash_which 2>/dev/null
280         fi
281         if [[ ( -n "$nostash" && -z "$unstashed" ) || ( -n "$unstashed" && -z "$unstashed_function" ) ]]; then
282             unset -f $unstash_which 2>/dev/null
283         fi
284         if [[ ( -n "$nostash" && -z "$unstashed" ) || ( -n "$unstashed" && -z "$unstashed_variable" ) ]]; then
285             # Don't try to unset illegal variable names
286             # Using substitution to avoid using regex, which might fail to load on Zsh (minimal system).
287             if [[ ${unstash_which//[^a-zA-Z0-9_]/} == $unstash_which && $unstash_which != [0-9]* ]]; then
288                 unset -v $unstash_which
289             fi
290         fi
291
292         shift
293     done
294 }
295
296 function autounstash() {
297     # If there is anything in (mangled) variable AUTOSTASH, then unstash it
298     local ret
299     get_autostash_array_name
300     if (( ${#${(P)ret}} > 0 )); then
301         local run_from_autounstash=1
302         for autounstash_var in ${(P)ret}; do
303             unstash $autounstash_var
304         done
305         unset $ret
306     fi
307 }
308
309 function _mangle_var() {
310     local mangle_var_where="${varstash_dir:-$PWD}"
311     mangle_var_where=${mangle_var_where//[^A-Za-z0-9]/_}
312     local mangled_name=${1//[^A-Za-z0-9]/_}
313     echo "_tmp_${mangle_var_where}_${mangled_name}"
314 }
315
316 # vim: filetype=zsh autoindent expandtab shiftwidth=4 softtabstop=4