]> Sergey Matveev's repositories - zsh-autoenv.git/blob - autoenv.zsh
Make env_shasum local in _autoenv_hash_pair
[zsh-autoenv.git] / autoenv.zsh
1 # Initially based on
2 # https://github.com/joshuaclayton/dotfiles/blob/master/zsh_profile.d/autoenv.zsh
3
4 export AUTOENV_ENV_FILENAME=$HOME/.env_auth
5
6 # Name of file to look for when entering directories.
7 : ${AUTOENV_FILE_ENTER:=.env}
8
9 # Name of file to look for when leaving directories.
10 # Requires AUTOENV_HANDLE_LEAVE=1.
11 : ${AUTOENV_FILE_LEAVE:=.env.leave}
12
13 # Look for .env in parent dirs?
14 : ${AUTOENV_LOOK_UPWARDS:=1}
15
16 # Handle leave events when changing away from a subtree, where an "enter"
17 # event was handled?
18 : ${AUTOENV_HANDLE_LEAVE:=1}
19
20 # Enable debugging. Multiple levels are supported (max 2).
21 : ${AUTOENV_DEBUG:=0}
22
23 # Public helper functions, which can be used from your .env files:
24 #
25 # Source the next .env file from parent directories.
26 # This is useful if you want to use a base .env file for a directory subtree.
27 autoenv_source_parent() {
28   local parent_env_file=$(_autoenv_get_file_upwards $PWD)
29
30   if [[ -n $parent_env_file ]] \
31     && _autoenv_check_authorized_env_file $parent_env_file; then
32     _autoenv_debug "Calling autoenv_source_parent: parent_env_file:$parent_env_file"
33
34     local parent_env_dir=${parent_env_file:A:h}
35
36     _autoenv_stack_entered_add $parent_env_file
37
38     _autoenv_source $parent_env_file enter $parent_env_dir
39   fi
40 }
41
42 # Internal functions. {{{
43 # Internal: stack of entered (and handled) directories. {{{
44 _autoenv_stack_entered=()
45 typeset -A _autoenv_stack_entered_mtime
46 _autoenv_stack_entered_mtime=()
47
48 # Add an entry to the stack, and remember its mtime.
49 _autoenv_stack_entered_add() {
50   local env_file=$1
51
52   _autoenv_debug "[stack] adding: $env_file" 2
53
54   # Remove any existing entry.
55   _autoenv_stack_entered_remove $env_file
56
57   # Append it to the stack, and remember its mtime.
58   _autoenv_stack_entered+=($env_file)
59   _autoenv_stack_entered_mtime[$env_file]=$(_autoenv_get_file_mtime $env_file)
60 }
61
62 _autoenv_get_file_mtime() {
63   if [[ -f $1 ]]; then
64     zstat +mtime $1
65   else
66     echo 0
67   fi
68 }
69
70 # Remove an entry from the stack.
71 _autoenv_stack_entered_remove() {
72   local env_file=$1
73   _autoenv_debug "[stack] removing: $env_file" 2
74   _autoenv_stack_entered[$_autoenv_stack_entered[(i)$env_file]]=()
75   _autoenv_stack_entered_mtime[$env_file]=
76 }
77
78 # Is the given entry already in the stack?
79 _autoenv_stack_entered_contains() {
80   local env_file=$1
81   if (( ${+_autoenv_stack_entered[(r)${env_file}]} )); then
82     # Entry is in stack.
83     if [[ $_autoenv_stack_entered_mtime[$env_file] == $(_autoenv_get_file_mtime $env_file) ]]; then
84       # Entry has the expected mtime.
85       return
86     fi
87   fi
88   return 1
89 }
90 # }}}
91
92 # Internal function for debug output. {{{
93 _autoenv_debug() {
94   local msg=$1
95   local level=${2:-1}
96   if [[ $AUTOENV_DEBUG -lt $level ]]; then
97     return
98   fi
99   # Load zsh color support.
100   if [[ -z $colors ]]; then
101     autoload colors
102     colors
103   fi
104   # Build $indent prefix.
105   local indent=
106   if [[ $_autoenv_debug_indent -gt 0 ]]; then
107     for i in {1..${_autoenv_debug_indent}}; do
108       indent="  $indent"
109     done
110   fi
111
112   # Split $msg by \n (not newline).
113   lines=(${(ps:\\n:)msg})
114   for line in $lines; do
115     echo -n "${fg_bold[blue]}[autoenv]${fg_no_bold[default]} " >&2
116     echo ${indent}${line} >&2
117   done
118 }
119 # }}}
120
121 # Load zstat module, but only its builtin `zstat`.
122 zmodload -F zsh/stat b:zstat
123
124
125 _autoenv_hash_pair() {
126   local env_file=${1:A}
127   local env_shasum
128   if [[ -n $2 ]]; then
129     env_shasum=$2
130   else
131     env_shasum=$(shasum $env_file | cut -d' ' -f1)
132   fi
133   echo "$env_file:$env_shasum:1"
134 }
135
136 _autoenv_authorized_env_file() {
137   local env_file=$1
138   local pair=$(_autoenv_hash_pair $env_file)
139   test -f $AUTOENV_ENV_FILENAME \
140     && \grep -qF $pair $AUTOENV_ENV_FILENAME
141 }
142
143 _autoenv_authorize() {
144   local env_file=$1
145   _autoenv_deauthorize $env_file
146   _autoenv_hash_pair $env_file >> $AUTOENV_ENV_FILENAME
147 }
148
149 _autoenv_deauthorize() {
150   local env_file=$1
151   if [[ -f $AUTOENV_ENV_FILENAME ]]; then
152     echo $(\grep -vF $env_file $AUTOENV_ENV_FILENAME) > $AUTOENV_ENV_FILENAME
153   fi
154 }
155
156 # This function can be mocked in tests
157 _autoenv_read_answer() {
158   local answer
159   read $=_AUTOENV_TEST_READ_ARGS -q answer
160   echo $answer
161 }
162
163 # Args: 1: absolute path to env file (resolved symlinks).
164 _autoenv_check_authorized_env_file() {
165   if ! [[ -f $1 ]]; then
166     return 1
167   fi
168   if ! _autoenv_authorized_env_file $1; then
169     echo "Attempting to load unauthorized env file: $1"
170     echo ""
171     echo "**********************************************"
172     echo ""
173     cat $1
174     echo ""
175     echo "**********************************************"
176     echo ""
177     echo -n "Would you like to authorize it? [y/N] "
178
179     local answer=$(_autoenv_read_answer)
180     echo
181     if [[ $answer != 'y' ]]; then
182       return 1
183     fi
184
185     _autoenv_authorize $1
186   fi
187   return 0
188 }
189
190 # Get directory of this file (absolute, with resolved symlinks).
191 _autoenv_source_dir=${0:A:h}
192
193 _autoenv_source() {
194   local env_file=$1
195   _autoenv_event=$2
196   local _autoenv_envfile_dir=${3:-${1:A:h}}
197
198   _autoenv_from_dir=$_autoenv_chpwd_prev_dir
199   _autoenv_to_dir=$PWD
200
201   # Source varstash library once.
202   if [[ -z "$functions[(I)autostash]" ]]; then
203     source $_autoenv_source_dir/lib/varstash
204     # NOTE: Varstash uses $PWD as default for varstash_dir, we might set it to
205     # ${env_file:h}.
206   fi
207
208   # Change to directory of env file, source it and cd back.
209   local new_dir=$PWD
210   builtin cd -q $_autoenv_envfile_dir
211   _autoenv_debug "== SOURCE: ${bold_color}$env_file${reset_color}\n      PWD: $PWD"
212   (( _autoenv_debug_indent++ ))
213   source $env_file
214   (( _autoenv_debug_indent-- ))
215   _autoenv_debug "== END SOURCE =="
216   builtin cd -q $new_dir
217
218   # Unset vars set for enter/leave scripts.
219   # This should not get done for recursion (via autoenv_source_parent),
220   # and can be useful to have in general after autoenv was used.
221   # unset _autoenv_event _autoenv_from_dir _autoenv_to_dir
222 }
223
224 _autoenv_get_file_upwards() {
225   local look_from=${1:-$PWD}
226   local look_for=${2:-$AUTOENV_FILE_ENTER}
227
228   # Manually look in parent dirs. An extended Zsh glob should use Y1 for
229   # performance reasons, which is only available in zsh-5.0.5-146-g9381bb6.
230   local last
231   local parent_dir="$look_from/.."
232   while true; do
233     parent_dir=${parent_dir:A}
234     if [[ $parent_dir == $last ]]; then
235       break
236     fi
237     parent_file="${parent_dir}/${look_for}"
238
239     if [[ -f $parent_file ]]; then
240       echo $parent_file
241       break
242     fi
243
244     last=$parent_dir
245     parent_dir="${parent_dir}/.."
246   done
247 }
248
249
250 _autoenv_chpwd_prev_dir=$PWD
251 _autoenv_chpwd_handler() {
252   local env_file="$PWD/$AUTOENV_FILE_ENTER"
253
254   _autoenv_debug "Calling chpwd handler: PWD=$PWD"
255
256   # Handle leave event for previously sourced env files.
257   if [[ $AUTOENV_HANDLE_LEAVE == 1 ]] && (( $#_autoenv_stack_entered )); then
258     local prev_file prev_dir
259     for prev_file in ${_autoenv_stack_entered}; do
260       prev_dir=${prev_file:A:h}
261       if ! [[ ${PWD}/ == ${prev_dir}/* ]]; then
262         local env_file_leave=$prev_dir/$AUTOENV_FILE_LEAVE
263         if _autoenv_check_authorized_env_file $env_file_leave; then
264           _autoenv_source $env_file_leave leave $prev_dir
265         fi
266         _autoenv_stack_entered_remove $prev_file
267       fi
268     done
269   fi
270
271   if ! [[ -f $env_file ]] && [[ $AUTOENV_LOOK_UPWARDS == 1 ]]; then
272     env_file=$(_autoenv_get_file_upwards $PWD)
273     if [[ -z $env_file ]]; then
274       _autoenv_chpwd_prev_dir=$PWD
275       return
276     fi
277   fi
278
279   # Load the env file only once: check if $env_file is in the stack of entered
280   # directories.
281   if _autoenv_stack_entered_contains $env_file; then
282     _autoenv_debug "Already in stack: $env_file"
283     _autoenv_chpwd_prev_dir=$PWD
284     return
285   fi
286
287   if ! _autoenv_check_authorized_env_file $env_file; then
288     _autoenv_chpwd_prev_dir=$PWD
289     return
290   fi
291
292   _autoenv_stack_entered_add $env_file
293
294   # Source the enter env file.
295   _autoenv_debug "Sourcing from chpwd handler: $env_file"
296   _autoenv_source $env_file enter
297
298   _autoenv_chpwd_prev_dir=$PWD
299
300   (( _autoenv_debug_indent++ ))
301 }
302 # }}}
303
304 autoload -U add-zsh-hook
305 add-zsh-hook chpwd _autoenv_chpwd_handler
306
307 # Look in current directory already.
308 _autoenv_chpwd_handler