X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fversion_control.sh;h=c8854104bca34467f859cc63e750d8702fb04887;hb=5e349cccdb9983d24b2f335edfa6f33c650e3870;hp=9bf195c1b9221c6fff9d364966372f07b49bb097;hpb=f7a703e55707f14f6506bd450de6995ff427eac1;p=feisty_meow.git diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 9bf195c1..c8854104 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -3,6 +3,9 @@ # these are helper functions for doing localized revision control. # this script should be sourced into other scripts that use it. +source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" +source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh" + # the maximum depth that the recursive functions will try to go below the starting directory. export MAX_DEPTH=5 @@ -19,8 +22,8 @@ if [ ! -d "$TMP" ]; then mkdir -p $TMP fi if [ ! -d "$TMP" ]; then - echo "Could not create the temporary directory TMP in: $TMP" - echo "This script will not work properly without an existing TMP directory." + echo "could not create the temporary directory TMP in: $TMP" + echo "this script will not work properly without an existing TMP directory." fi this_host= @@ -60,6 +63,16 @@ home_system=true fi } +#hmmm: move to core. +# makes sure that the "folder" is a directory and is writable. +# remember that bash successful returns are zeroes... +function test_writeable() +{ + local folder="$1"; shift + if [ ! -d "$folder" -o ! -w "$folder" ]; then return 1; fi + return 0 +} + # we only want to totally personalize this script if the user is right. function check_user() { @@ -106,42 +119,57 @@ function compute_modifier() function do_checkin() { local directory="$1"; shift + + save_terminal_title + do_update "$directory" if [ $? -ne 0 ]; then - echo "Repository update failed; this should be fixed before check-in." + echo "repository update failed; this should be fixed before check-in." return 1 fi pushd "$directory" &>/dev/null local retval=0 # normally successful. if [ -f ".no-checkin" ]; then - echo "Not checking in because found .no-checkin sentinel file." + echo "skipping check-in due to presence of .no-checkin sentinel file." elif [ -d "CVS" ]; then - cvs ci . - retval=$? + if test_writeable "CVS"; then + cvs ci . + retval=$? + fi elif [ -d ".svn" ]; then - svn ci . - retval=$? + if test_writeable ".svn"; then + svn ci . + retval=$? + fi elif [ -d ".git" ]; then - # snag all new files. not to everyone's liking. - git add --all . - retval=$? - # tell git about all the files and get a check-in comment. - git commit . - retval+=$? - # upload the files to the server so others can see them. - git push 2>&1 | grep -v "X11 forwarding request failed" - retval+=$? + if test_writeable ".git"; then + # snag all new files. not to everyone's liking. + git add --all . + retval=$? + # tell git about all the files and get a check-in comment. + git commit . + retval+=$? + # upload the files to the server so others can see them. + git push 2>&1 | grep -v "X11 forwarding request failed" + retval+=$? + fi else echo no repository in $directory retval=1 fi popd &>/dev/null + + restore_terminal_title + return $retval } function do_diff { local directory="$1"; shift + + save_terminal_title + pushd "$directory" &>/dev/null local retval=0 # normally successful. @@ -155,18 +183,24 @@ function do_diff fi popd &>/dev/null + + restore_terminal_title + return $retval } function do_report_new { local directory="$1"; shift + + save_terminal_title + pushd "$directory" &>/dev/null local retval=0 # normally successful. # only update if we see a repository living there. if [ -f ".no-checkin" ]; then - echo "Not reporting mods because found .no-checkin sentinel file." + echo "skipping reporting due to presence of .no-checkin sentinel file." elif [ -d ".svn" ]; then # this action so far only makes sense and is needed for svn. bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo @@ -177,24 +211,46 @@ function do_report_new fi popd &>/dev/null + + restore_terminal_title + return $retval } # checks in all the folders in a specified list. function checkin_list() { - local list=$* - for i in $list; do - # turn repo list back into an array. - eval "repository_list=( ${REPOSITORY_LIST[*]} )" - for j in "${repository_list[@]}"; do - # add in the directory component. - j="$i/$j" - if [ ! -d "$j" ]; then continue; fi - echo "checking in '$j'..." - do_checkin $j - done + # make the list of directories unique. + local list="$(uniquify $*)" + + save_terminal_title + + # turn repo list back into an array. + eval "repository_list=( ${REPOSITORY_LIST[*]} )" + + local outer inner + + for outer in "${repository_list[@]}"; do + # check the repository first, since it might be an absolute path. + if [[ $outer =~ /.* ]]; then + # yep, this path is absolute. just handle it directly. + if [ ! -d "$outer" ]; then continue; fi + echo "checking in '$outer'..." + do_checkin $outer + sep 7 + else + for inner in $list; do + # add in the directory component to see if we can find the folder. + local path="$inner/$outer" + if [ ! -d "$path" ]; then continue; fi + echo "checking in '$path'..." + do_checkin $path + sep 7 + done + fi done + + restore_terminal_title } # takes out the first few carriage returns that are in the input. @@ -219,45 +275,70 @@ function squash_first_few_crs() function do_update() { directory="$1"; shift + + save_terminal_title + local retval=0 # plan on success for now. pushd "$directory" &>/dev/null if [ -d "CVS" ]; then - cvs update . | squash_first_few_crs - retval=${PIPESTATUS[0]} + if test_writeable "CVS"; then + cvs update . | squash_first_few_crs + retval=${PIPESTATUS[0]} + fi elif [ -d ".svn" ]; then - svn update . | squash_first_few_crs - retval=${PIPESTATUS[0]} + if test_writeable ".svn"; then + svn update . | squash_first_few_crs + retval=${PIPESTATUS[0]} + fi elif [ -d ".git" ]; then - git pull 2>&1 | grep -v "X11 forwarding request failed" | squash_first_few_crs - retval=${PIPESTATUS[0]} + if test_writeable ".git"; then + git pull 2>&1 | grep -v "X11 forwarding request failed" | squash_first_few_crs + retval=${PIPESTATUS[0]} + fi else # this is not an error necessarily; we'll just pretend they planned this. echo no repository in $directory fi popd &>/dev/null + + restore_terminal_title + return $retval } # gets all the updates for a list of folders under revision control. -function checkout_list { - list=$* - for i in $list; do - # turn repo list back into an array. - eval "repository_list=( ${REPOSITORY_LIST[*]} )" - for j in "${repository_list[@]}"; do - # add in the directory for our purposes here. - j="$i/$j" - if [ ! -d $j ]; then - if [ ! -z "$SHELL_DEBUG" ]; then - echo "No directory called $j exists." - fi - continue - fi - - echo -n "retrieving '$j'... " - do_update $j - done +function checkout_list() +{ + local list="$(uniquify $*)" + + save_terminal_title + + # turn repo list back into an array. + eval "repository_list=( ${REPOSITORY_LIST[*]} )" + + local outer inner + + for outer in "${repository_list[@]}"; do + # check the repository first, since it might be an absolute path. + if [[ $outer =~ /.* ]]; then + # yep, this path is absolute. just handle it directly. + if [ ! -d "$outer" ]; then continue; fi + echo "retrieving '$outer'..." + do_update $outer + sep 7 + else + for inner in $list; do + # add in the directory component to see if we can find the folder. + local path="$inner/$outer" + if [ ! -d "$path" ]; then continue; fi + echo "retrieving '$path'..." + do_update $path + sep 7 + done + fi done + + restore_terminal_title } # provides a list of absolute paths of revision control directories @@ -267,13 +348,13 @@ function generate_rev_ctrl_filelist() local dir="$1"; shift pushd "$dir" &>/dev/null local dirhere="$( \cd "$(\dirname "$dir")" && /bin/pwd )" - local tempfile=$(mktemp /tmp/zz_rev_checkin.XXXXXX) + local tempfile=$(mktemp /tmp/zz_checkins.XXXXXX) echo >$tempfile find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".svn" -exec echo {}/.. ';' >>$tempfile 2>/dev/null find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile 2>/dev/null # CVS is not well behaved like git and (now) svn, and we seldom use it anymore. popd &>/dev/null - local sortfile=$(mktemp /tmp/zz_rev_checkin_sort.XXXXXX) + local sortfile=$(mktemp /tmp/zz_checkin_sort.XXXXXX) sort <"$tempfile" >"$sortfile" \rm "$tempfile" echo "$sortfile" @@ -283,18 +364,25 @@ function generate_rev_ctrl_filelist() # on each directory name, it performs the action (second parameter) provided. function perform_revctrl_action_on_file() { + +#hmmm: this doesn't capture any error returns! + local tempfile="$1"; shift local action="$1"; shift + save_terminal_title + while read -u 3 dirname; do if [ -z "$dirname" ]; then continue; fi pushd "$dirname" &>/dev/null echo "[$(pwd)]" $action . - echo "=======" + sep 7 popd &>/dev/null done 3<"$tempfile" + restore_terminal_title + rm $tempfile }