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