vanilla time
[feisty_meow.git] / scripts / rev_control / version_control.sh
1 #!/bin/bash
2
3 # these are helper functions for doing localized revision control.
4 # this script should be sourced into other scripts that use it.
5
6 # Author: Chris Koeritz
7 # Author: Kevin Wentworth
8
9 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
10 source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh"
11
12 #hmmm: we need to dump all the outputs in this script into splitter
13
14 ##############
15
16 # the maximum depth that the recursive functions will try to go below the starting directory.
17 export MAX_DEPTH=5
18
19 # use our splitter tool for lengthy output if it's available.
20 if [ ! -z "$(which splitter)" ]; then
21   TO_SPLITTER="$(which splitter)"
22 else
23   TO_SPLITTER=cat
24 fi
25
26 ##############
27
28 # one unpleasantry to take care of first; cygwin barfs aggressively if the TMP directory
29 # is a DOS path, but we need it to be a DOS path for our GFFS testing, so that blows.
30 # to get past this, TMP gets changed below to a hopefully generic and safe place.
31 if [[ "$TMP" =~ .:.* ]]; then
32   echo "making weirdo temporary directory for PCDOS-style path."
33   export TMP=/tmp/rev_control_$USER
34 fi
35 if [ ! -d "$TMP" ]; then
36   mkdir -p $TMP
37 fi
38 if [ ! -d "$TMP" ]; then
39   echo "could not create the temporary directory TMP in: $TMP"
40   echo "this script will not work properly without an existing TMP directory."
41 fi
42
43 ##############
44
45 # checks the directory provided into the revision control system repository it belongs to.
46 function do_checkin()
47 {
48   local directory="$1"; shift
49
50   save_terminal_title
51
52   # make a nice echoer since we want to use it inside conditions below.
53   local nicedir="$directory"
54   if [ $nicedir == "." ]; then
55     nicedir=$(\pwd)
56   fi
57   local blatt="echo checking in '$nicedir'..."
58
59   do_update "$directory"
60   test_or_die "repository update--this should be fixed before check-in."
61
62   pushd "$directory" &>/dev/null
63   if [ -f ".no-checkin" ]; then
64     echo "skipping check-in due to presence of .no-checkin sentinel file."
65   elif [ -d "CVS" ]; then
66     if test_writeable "CVS"; then
67       $blatt
68       cvs ci .
69       test_or_die "cvs checkin"
70     fi
71   elif [ -d ".svn" ]; then
72     if test_writeable ".svn"; then
73       $blatt
74       svn ci .
75       test_or_die "svn checkin"
76     fi
77   elif [ -d ".git" ]; then
78     if test_writeable ".git"; then
79       $blatt
80       # snag all new files.  not to everyone's liking.
81       git add --all .
82       test_or_die "git add all new files"
83
84       # see if there are any changes in the local repository.
85       if ! git diff-index --quiet HEAD --; then
86         # tell git about all the files and get a check-in comment.
87         git commit .
88         test_or_die "git commit"
89       fi
90       # catch if the diff-index failed somehow.
91       test_or_die "git diff-index"
92
93       # we continue on to the push, even if there were no changes this time, because
94       # there could already be committed changes that haven't been pushed yet.
95
96       local myself="$(my_branch_name)"
97       local parent="$(parent_branch_name)"
98
99       # upload any changes to the upstream repo so others can see them.
100       if [ "$myself" != "$parent" ]; then
101         git push origin "$(myself)" 2>&1 | grep -v "X11 forwarding request failed" | $TO_SPLITTER
102         test_or_die "git push to origin: $myself"
103       else
104         # this branch is the same as the parent, so just push.
105         git push 2>&1 | grep -v "X11 forwarding request failed" | $TO_SPLITTER
106         test_or_die "normal git push"
107       fi
108
109     fi
110   else
111     # nothing there.  it's not an error though.
112     echo no repository in $directory
113   fi
114   popd &>/dev/null
115
116   restore_terminal_title
117
118   true;
119 }
120
121 # shows the local changes in a repository.
122 function do_diff
123 {
124   local directory="$1"; shift
125
126   save_terminal_title
127
128   pushd "$directory" &>/dev/null
129
130   # only update if we see a repository living there.
131   if [ -d ".svn" ]; then
132     svn diff .
133     test_or_die "subversion diff"
134   elif [ -d ".git" ]; then
135     git diff 
136     test_or_die "git diff"
137   elif [ -d "CVS" ]; then
138     cvs diff .
139     test_or_die "cvs diff"
140   fi
141
142   popd &>/dev/null
143
144   restore_terminal_title
145
146   true;
147 }
148
149 # reports any files that are not already known to the upstream repository.
150 function do_report_new
151 {
152   local directory="$1"; shift
153
154   save_terminal_title
155
156   pushd "$directory" &>/dev/null
157
158   # only update if we see a repository living there.
159   if [ -f ".no-checkin" ]; then
160     echo "skipping reporting due to presence of .no-checkin sentinel file."
161   elif [ -d ".svn" ]; then
162     # this action so far only makes sense and is needed for svn.
163     bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo
164     test_or_die "svn diff"
165   elif [ -d ".git" ]; then
166     git status -u
167     test_or_die "git status -u"
168   fi
169
170   popd &>/dev/null
171
172   restore_terminal_title
173
174   true
175 }
176
177 # checks in all the folders in a specified list.
178 function checkin_list()
179 {
180   # make the list of directories unique.
181   local list="$(uniquify $*)"
182
183   save_terminal_title
184
185   # turn repo list back into an array.
186   eval "repository_list=( ${REPOSITORY_LIST[*]} )"
187
188   local outer inner
189
190   for outer in "${repository_list[@]}"; do
191     # check the repository first, since it might be an absolute path.
192     if [[ $outer =~ /.* ]]; then
193       # yep, this path is absolute.  just handle it directly.
194       if [ ! -d "$outer" ]; then continue; fi
195       do_checkin $outer
196       test_or_die "running check-in (absolute) on path: $outer"
197       sep 28
198     else
199       for inner in $list; do
200         # add in the directory component to see if we can find the folder.
201         local path="$inner/$outer"
202         if [ ! -d "$path" ]; then continue; fi
203         do_checkin $path
204         test_or_die "running check-in (relative) on path: $path"
205         sep 28
206       done
207     fi
208   done
209
210   restore_terminal_title
211 }
212
213 # takes out the first few carriage returns that are in the input.
214 function squash_first_few_crs()
215 {
216   i=0
217   while read input_text; do
218     i=$((i+1))
219     if [ $i -le 5 ]; then
220       echo -n "$input_text  "
221     else
222       echo $input_text
223     fi
224   done
225   if [ $i -le 3 ]; then
226     # if we're still squashing eols, make sure we don't leave them hanging.
227     echo
228   fi
229 }
230
231 # a helpful method that reports the git branch for the current directory's
232 # git repository.
233 function my_branch_name()
234 {
235   echo "$(git branch | grep \* | cut -d ' ' -f2)"
236 }
237
238 # this reports the upstream branch for the current repo.
239 function parent_branch_name()
240 {
241   echo "$(git branch -vv | grep \* | cut -d ' ' -f2)"
242 }
243
244 # gets the latest versions of the assets from the upstream repository.
245 function do_update()
246 {
247   directory="$1"; shift
248
249   save_terminal_title
250
251   # make a nice echoer since we want to use it inside conditions below.
252   local nicedir="$directory"
253   if [ $nicedir == "." ]; then
254     nicedir=$(\pwd)
255   fi
256   local blatt="echo retrieving '$nicedir'..."
257
258   pushd "$directory" &>/dev/null
259   if [ -d "CVS" ]; then
260     if test_writeable "CVS"; then
261       $blatt
262       cvs update . | $TO_SPLITTER
263       test_or_die "cvs update"
264     fi
265   elif [ -d ".svn" ]; then
266     if test_writeable ".svn"; then
267       $blatt
268       svn update . | $TO_SPLITTER
269       test_or_die "svn update"
270     fi
271   elif [ -d ".git" ]; then
272     if test_writeable ".git"; then
273       $blatt
274
275 # classic implementation, but only works with one master branch.
276 # fixes will be forthcoming from development branch.
277
278       # snag all new files.  not to everyone's liking.
279       git add --all .
280       retval=$?
281       # tell git about all the files and get a check-in comment.
282       git commit .
283       retval+=$?
284       # upload the files to the server so others can see them.
285       git push 2>&1 | grep -v "X11 forwarding request failed"
286       retval+=$?
287     fi
288   else
289     # this is not an error necessarily; we'll just pretend they planned this.
290     echo no repository in $directory
291   fi
292   popd &>/dev/null
293
294   restore_terminal_title
295
296   true
297 }
298
299 # gets all the updates for a list of folders under revision control.
300 function checkout_list()
301 {
302   local list="$(uniquify $*)"
303
304   save_terminal_title
305
306   # turn repo list back into an array.
307   eval "repository_list=( ${REPOSITORY_LIST[*]} )"
308
309   local outer inner
310
311   for outer in "${repository_list[@]}"; do
312     # check the repository first, since it might be an absolute path.
313     if [[ $outer =~ /.* ]]; then
314       # yep, this path is absolute.  just handle it directly.
315       if [ ! -d "$outer" ]; then continue; fi
316       do_update $outer
317       test_or_die "running update on: $path"
318       sep 28
319     else
320       for inner in $list; do
321         # add in the directory component to see if we can find the folder.
322         local path="$inner/$outer"
323         if [ ! -d "$path" ]; then continue; fi
324         do_update $path
325         test_or_die "running update on: $path"
326         sep 28
327       done
328     fi
329   done
330
331   restore_terminal_title
332 }
333
334 # provides a list of absolute paths of revision control directories
335 # that are located under the directory passed as the first parameter.
336 function generate_rev_ctrl_filelist()
337 {
338   local dir="$1"; shift
339   pushd "$dir" &>/dev/null
340   local dirhere="$( \cd "$(\dirname "$dir")" && /bin/pwd )"
341   local tempfile=$(mktemp /tmp/zz_checkins.XXXXXX)
342   echo >$tempfile
343   local additional_filter
344   find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".svn" -exec echo {}/.. ';' >>$tempfile 2>/dev/null
345   find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile 2>/dev/null
346   # CVS is not well behaved like git and (now) svn, and we seldom use it anymore.
347   popd &>/dev/null
348
349   # see if they've warned us not to try checking in within vendor hierarchies.
350   if [ ! -z "NO_CHECKIN_VENDOR" ]; then
351     sed -i -e '/.*\/vendor\/.*/d' "$tempfile"
352   fi
353
354   local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX)
355   sort <"$tempfile" >"$sortfile"
356   \rm "$tempfile"
357   echo "$sortfile"
358 }
359
360 # iterates across a list of directories contained in a file (first parameter).
361 # on each directory name, it performs the action (second parameter) provided.
362 function perform_revctrl_action_on_file()
363 {
364   local tempfile="$1"; shift
365   local action="$1"; shift
366
367   save_terminal_title
368
369   while read -u 3 dirname; do
370     if [ -z "$dirname" ]; then continue; fi
371     pushd "$dirname" &>/dev/null
372     echo "[$(pwd)]"
373     $action .
374     test_or_die "performing action $action on: $(pwd)"
375     sep 28
376     popd &>/dev/null
377   done 3<"$tempfile"
378
379   restore_terminal_title
380
381   rm $tempfile
382 }
383