]> Sergey Matveev's repositories - zsh-autoenv.git/blob - autoenv.zsh
Add debugging, via AUTOENV_DEBUG>1
[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   if (( $+2 )); then
128     env_shasum=$2
129   else
130     env_shasum=$(shasum $env_file | cut -d' ' -f1)
131   fi
132   echo "$env_file:$env_shasum:1"
133 }
134
135 _autoenv_authorized_env_file() {
136   local env_file=$1
137   local pair=$(_autoenv_hash_pair $env_file)
138   test -f $AUTOENV_ENV_FILENAME \
139     && \grep -qF $pair $AUTOENV_ENV_FILENAME
140 }
141
142 _autoenv_authorize() {
143   local env_file=$1
144   _autoenv_deauthorize $env_file
145   _autoenv_hash_pair $env_file >> $AUTOENV_ENV_FILENAME
146 }
147
148 _autoenv_deauthorize() {
149   local env_file=$1
150   if [[ -f $AUTOENV_ENV_FILENAME ]]; then
151     echo $(\grep -vF $env_file $AUTOENV_ENV_FILENAME) > $AUTOENV_ENV_FILENAME
152   fi
153 }
154
155 # This function can be mocked in tests
156 _autoenv_read_answer() {
157   local answer
158   read $=_AUTOENV_TEST_READ_ARGS -q answer
159   echo $answer
160 }
161
162 # Args: 1: absolute path to env file (resolved symlinks).
163 _autoenv_check_authorized_env_file() {
164   if ! [[ -f $1 ]]; then
165     return 1
166   fi
167   if ! _autoenv_authorized_env_file $1; then
168     echo "Attempting to load unauthorized env file: $1"
169     echo ""
170     echo "**********************************************"
171     echo ""
172     cat $1
173     echo ""
174     echo "**********************************************"
175     echo ""
176     echo -n "Would you like to authorize it? [y/N] "
177
178     local answer=$(_autoenv_read_answer)
179     echo
180     if [[ $answer != 'y' ]]; then
181       return 1
182     fi
183
184     _autoenv_authorize $1
185   fi
186   return 0
187 }
188
189 # Get directory of this file (absolute, with resolved symlinks).
190 _autoenv_source_dir=${0:A:h}
191
192 _autoenv_source() {
193   local env_file=$1
194   _autoenv_event=$2
195   local _autoenv_envfile_dir=${3:-${1:A:h}}
196
197   _autoenv_from_dir=$_autoenv_chpwd_prev_dir
198   _autoenv_to_dir=$PWD
199
200   # Source varstash library once.
201   if [[ -z "$functions[(I)autostash]" ]]; then
202     source $_autoenv_source_dir/lib/varstash
203     # NOTE: Varstash uses $PWD as default for varstash_dir, we might set it to
204     # ${env_file:h}.
205   fi
206
207   # Change to directory of env file, source it and cd back.
208   local new_dir=$PWD
209   builtin cd -q $_autoenv_envfile_dir
210   _autoenv_debug "== SOURCE: ${bold_color}$env_file${reset_color}\n      PWD: $PWD"
211   (( _autoenv_debug_indent++ ))
212   source $env_file
213   (( _autoenv_debug_indent-- ))
214   _autoenv_debug "== END SOURCE =="
215   builtin cd -q $new_dir
216
217   # Unset vars set for enter/leave scripts.
218   # This should not get done for recursion (via autoenv_source_parent),
219   # and can be useful to have in general after autoenv was used.
220   # unset _autoenv_event _autoenv_from_dir _autoenv_to_dir
221 }
222
223 _autoenv_get_file_upwards() {
224   local look_from=${1:-$PWD}
225   local look_for=${2:-$AUTOENV_FILE_ENTER}
226
227   # Manually look in parent dirs. An extended Zsh glob should use Y1 for
228   # performance reasons, which is only available in zsh-5.0.5-146-g9381bb6.
229   local last
230   local parent_dir="$look_from/.."
231   while true; do
232     parent_dir=${parent_dir:A}
233     if [[ $parent_dir == $last ]]; then
234       break
235     fi
236     parent_file="${parent_dir}/${look_for}"
237
238     if [[ -f $parent_file ]]; then
239       echo $parent_file
240       break
241     fi
242
243     last=$parent_dir
244     parent_dir="${parent_dir}/.."
245   done
246 }
247
248
249 _autoenv_chpwd_prev_dir=$PWD
250 _autoenv_chpwd_handler() {
251   local env_file="$PWD/$AUTOENV_FILE_ENTER"
252
253   _autoenv_debug "Calling chpwd handler: PWD=$PWD"
254
255   # Handle leave event for previously sourced env files.
256   if [[ $AUTOENV_HANDLE_LEAVE == 1 ]] && (( $#_autoenv_stack_entered )); then
257     local prev_file prev_dir
258     for prev_file in ${_autoenv_stack_entered}; do
259       prev_dir=${prev_file:A:h}
260       if ! [[ ${PWD}/ == ${prev_dir}/* ]]; then
261         local env_file_leave=$prev_dir/$AUTOENV_FILE_LEAVE
262         if _autoenv_check_authorized_env_file $env_file_leave; then
263           _autoenv_source $env_file_leave leave $prev_dir
264         fi
265         _autoenv_stack_entered_remove $prev_file
266       fi
267     done
268   fi
269
270   if ! [[ -f $env_file ]] && [[ $AUTOENV_LOOK_UPWARDS == 1 ]]; then
271     env_file=$(_autoenv_get_file_upwards $PWD)
272     if [[ -z $env_file ]]; then
273       _autoenv_chpwd_prev_dir=$PWD
274       return
275     fi
276   fi
277
278   # Load the env file only once: check if $env_file is in the stack of entered
279   # directories.
280   if _autoenv_stack_entered_contains $env_file; then
281     _autoenv_debug "Already in stack: $env_file"
282     _autoenv_chpwd_prev_dir=$PWD
283     return
284   fi
285
286   if ! _autoenv_check_authorized_env_file $env_file; then
287     _autoenv_chpwd_prev_dir=$PWD
288     return
289   fi
290
291   _autoenv_stack_entered_add $env_file
292
293   # Source the enter env file.
294   _autoenv_debug "Sourcing from chpwd handler: $env_file"
295   _autoenv_source $env_file enter
296
297   _autoenv_chpwd_prev_dir=$PWD
298
299   (( _autoenv_debug_indent++ ))
300 }
301 # }}}
302
303 autoload -U add-zsh-hook
304 add-zsh-hook chpwd _autoenv_chpwd_handler
305
306 # Look in current directory already.
307 _autoenv_chpwd_handler