more changes, to remove the repository dir variable.
[feisty_meow.git] / scripts / generator / whack_build.sh
1 #!/bin/bash
2
3 #hmmm: nice to set an interrupt handler for ctrl-c, to catch a break and send it to the cleanup of the crudfile.
4
5 # catch whether they want rigorous cleaning or not.
6 clean_src="$1"; shift
7
8 function whack_single_build_area()
9 {
10   local CLEANING_LOCALE="$1"; shift
11   if [ ! -d "$CLEANING_LOCALE" ]; then
12 #    echo "the folder $CLEANING_LOCALE does not exist.  not cleaning."
13     return 0
14   fi
15
16   local choprepo="$(basename "$(dirname "$CLEANING_LOCALE")" )/$(basename "$CLEANING_LOCALE")"
17   echo $(date): "Cleaning up [$choprepo]..."
18   if [ -z "$CLEANING_LOCALE" ]; then
19     echo "The CLEANING_LOCALE variable is not set!"
20     exit 3
21   fi
22
23   export NEW_TMP="$(mktemp -d "$CLEANING_LOCALE/TEMPS.XXXXXX")"
24   export CRUDFILE="$(mktemp "$NEW_TMP/whack_build.XXXXXX")"
25   echo "" &>"$CRUDFILE"
26
27   CLEANING_TOP="$CLEANING_LOCALE/production"
28
29 #  echo $(date): "  Cleaning up the build products..."
30
31   # avoid accidentally removing way too much important stuff if our variables have not
32   # been previously established.
33   local WASTE_DIR="$CLEANING_TOP/waste"
34   local TEMPORARIES_DIR="$CLEANING_TOP/temporaries"
35
36   # kerzap.
37   rm -rf \
38     "$FEISTY_MEOW_DIR/generatedJUnitFiles" \
39     "$CLEANING_TOP/binaries" \
40     "$CLEANING_TOP/install" \
41     "$CLEANING_TOP/logs" \
42     "$CLEANING_TOP/objects" \
43     "$TEMPORARIES_DIR" \
44     "$WASTE_DIR" \
45     "$CLEANING_TOP/__build_"*.h \
46     "$CLEANING_TOP/manifest.txt" 
47
48 #  echo $(date): "  Cleaning generated files in source hierarchy..."
49
50   if [ "$clean_src" == "clean" -o "$clean_src" == "CLEAN"  ]; then
51     echo $(date): "    ** Aggressive cleaning activated..."
52     perl "$FEISTY_MEOW_DIR/scripts/files/zapdirs.pl" "$CLEANING_TOP" >>"$CRUDFILE"
53   fi
54
55   echo $(date): "Cleaned [$choprepo]."
56   rm -rf "$NEW_TMP"
57   return 0
58 }
59
60 ##############
61
62 # clean all known hierarchies of build products...
63
64 whack_single_build_area "$FEISTY_MEOW_DIR"
65