using THISDIR instead of WORKDIR
[feisty_meow.git] / scripts / core / functions.sh
1 #!/bin/bash
2
3 # This defines some general, useful functions.
4
5 #hmmm: starting to get a bit beefy in here.  perhaps there is a good way to refactor the functions into more specific folders, if they aren't really totally general purpose?
6
7 ##############
8
9 # test whether we've been here before or not.
10 skip_all=
11 type function_sentinel &>/dev/null
12 if [ $? -eq 0 ]; then
13   # there was no error, so we can skip the inits.
14   if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then
15     echo "skipping function definitions, because already defined."
16   fi
17   skip_all=yes
18 else
19   skip_all=
20 fi
21
22 if [ -z "$skip_all" ]; then
23
24   if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then
25     echo "feisty meow function definitions beginning now..."
26   fi
27
28   # a handy little method that can be used for date strings.  it was getting
29   # really tiresome how many different ways the script did the date formatting.
30   function date_stringer() {
31     local sep="$1"; shift
32     if [ -z "$sep" ]; then sep='_'; fi
33     date +"%Y$sep%m$sep%d$sep%H%M$sep%S" | tr -d '/\n/'
34   }
35   
36   # makes a directory of the name specified and then tries to change the
37   # current directory to that directory.
38   function mcd() {
39     if [ ! -d "$1" ]; then mkdir -p "$1"; fi
40     cd "$1"
41   }
42
43   function is_array() {
44     [[ "$(declare -p $1)" =~ "declare -a" ]]
45   }
46
47   function is_alias() {
48     alias $1 &>/dev/null
49     return $?
50   }
51
52   ##############
53
54   # displays the value of a variable in bash friendly format.
55   function var() {
56     HOLDIFS="$IFS"
57     IFS=""
58     while true; do
59       local varname="$1"; shift
60       if [ -z "$varname" ]; then
61         break
62       fi
63
64       if is_alias "$varname"; then
65 #echo found $varname is alias
66         local tmpfile="$(mktemp $TMP/aliasout.XXXXXX)"
67         alias $varname | sed -e 's/.*=//' >$tmpfile
68         echo "alias $varname=$(cat $tmpfile)"
69         \rm $tmpfile
70       elif [ -z "${!varname}" ]; then
71         echo "$varname undefined"
72       else
73         if is_array "$varname"; then
74 #echo found $varname is array var 
75           local temparray
76           eval temparray="(\${$varname[@]})"
77           echo "$varname=(${temparray[@]})"
78 #hmmm: would be nice to print above with elements enclosed in quotes, so that we can properly
79 # see ones that have spaces in them.
80         else
81 #echo found $varname is simple
82           echo "$varname=${!varname}"
83         fi
84       fi
85     done | sort
86     IFS="$HOLDIFS"
87   }
88
89   ##############
90
91   # when passed a list of things, this will return the unique items from that list as an echo.
92   function uniquify()
93   {
94     # do the uniquification: split the space separated items into separate lines, then
95     # sort the list, then run the uniq tool on the list.  results will be packed back onto
96     # one line when invoked like: local fredlist="$(uniquify a b c e d a e f a e d b)"
97     echo $* | tr ' ' '\n' | sort | uniq
98   }
99
100   # sets the variable in parameter 1 to the value in parameter 2, but only if
101   # that variable was undefined.
102   function set_var_if_undefined()
103   {
104     local var_name="$1"; shift
105     local var_value="$1"; shift
106     if [ -z "${!var_name}" ]; then
107       eval export $var_name="$var_value"
108     fi
109   }
110
111   ##############
112
113   function success_sound()
114   {
115     if [ ! -z "$CLAM_FINISH_SOUND" ]; then
116       bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh "$CLAM_FINISH_SOUND"
117     fi
118   }
119
120   function error_sound()
121   {
122     if [ ! -z "$CLAM_ERROR_SOUND" ]; then
123       bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh "$CLAM_ERROR_SOUND"
124     fi
125   }
126
127   ##############
128
129   # echoes the maximum number of columns that the terminal supports.  usually
130   # anything you print to the terminal with length less than (but not equal to)
131   # maxcols will never wrap.
132   function get_maxcols()
133   {
134     # calculate the number of columsn in the terminal.
135     local cols=$(stty size | awk '{print $2}')
136     echo $cols
137   }
138
139   ##############
140
141   # checks the result of the last command that was run, and if that failed,
142   # then this complains and exits from bash.  the function parameters are
143   # used as the message to print as a complaint.
144   function test_or_die()
145   {
146     if [ $? -ne 0 ]; then
147       echo -e "\n\naction failed: $*\n\n*** Exiting script..."
148       error_sound
149       exit 1
150     fi
151   }
152
153   # like test_or_die, but will keep going after complaining.
154   function test_or_continue()
155   {
156     if [ $? -ne 0 ]; then
157       echo -e "\n\nerror occurred: $*\n\n=> Continuing script..."
158       error_sound
159     fi
160   }
161
162   ##############
163
164   # wraps secure shell with some parameters we like, most importantly to enable X forwarding.
165   function ssh()
166   {
167     local args=($*)
168     # we remember the old terminal title, then force the TERM variable to a more generic
169     # version for the other side (just 'linux'); we don't want the remote side still
170     # thinking it's running xterm.
171     save_terminal_title
172 #hmmm: why were we doing this?  it scorches the user's logged in session, leaving it without proper terminal handling.
173 #    # we save the value of TERM; we don't want to leave the user's terminal
174 #    # brain dead once we come back from this function.
175 #    local oldterm="$TERM"
176 #    export TERM=linux
177     /usr/bin/ssh -X -C "${args[@]}"
178 #    # restore the terminal variable also.
179 #    TERM="$oldterm"
180     restore_terminal_title
181   }
182
183   ##############
184
185   # locates a process given a search pattern to match in the process list.
186   # supports a single command line flag style parameter of "-u USERNAME";
187   # if the -u flag is found, a username is expected afterwards, and only the
188   # processes of that user are considered.
189   function psfind() {
190     local -a patterns=("${@}")
191 #echo ====
192 #echo patterns list is: "${patterns[@]}"
193 #echo ====
194
195     local user_flag
196     if [ "${patterns[0]}" == "-u" ]; then
197       user_flag="-u ${patterns[1]}" 
198 #echo "found a -u parm and user=${patterns[1]}" 
199       # void the two elements with that user flag so we don't use them as patterns.
200       unset patterns[0] patterns[1]=
201     else
202       # select all users.
203       user_flag="-e"
204     fi
205
206     local PID_DUMP="$(mktemp "$TMP/zz_pidlist.XXXXXX")"
207     local -a PIDS_SOUGHT
208
209     if [ "$OS" == "Windows_NT" ]; then
210       # gets cygwin's (god awful) ps to show windoze processes also.
211       local EXTRA_DOZER_FLAGS="-W"
212       # pattern to use for peeling off the process numbers.
213       local pid_finder_pattern='s/ *\([0-9][0-9]*\) *.*$/\1/p'
214
215     else
216       # flags which clean up the process listing output on unixes.
217       # apparently cygwin doesn't count as a type of unix, because their
218       # crummy specialized ps command doesn't support normal ps flags.
219       local EXTRA_UNIX_FLAGS="-o pid,args"
220       # pattern to use for peeling off the process numbers.
221       local pid_finder_pattern='s/^[[:space:]]*\([0-9][0-9]*\).*$/\1/p'
222     fi
223
224     /bin/ps $EXTRA_DOZER_FLAGS $EXTRA_UNIX_FLAGS $user_flag | tail -n +2 >$PID_DUMP
225 #echo ====
226 #echo got all this stuff in the pid dump file:
227 #cat $PID_DUMP
228 #echo ====
229
230     # search for the pattern the user wants to find, and just pluck the process
231     # ids out of the results.
232     local i
233     for i in "${patterns[@]}"; do
234       PIDS_SOUGHT+=($(cat $PID_DUMP \
235         | grep -i "$i" \
236         | sed -n -e "$pid_finder_pattern"))
237     done
238 #echo ====
239 #echo pids sought list became:
240 #echo "${PIDS_SOUGHT[@]}"
241 #echo ====
242
243     if [ ${#PIDS_SOUGHT[*]} -ne 0 ]; then
244       local PIDS_SOUGHT2=$(printf -- '%s\n' ${PIDS_SOUGHT[@]} | sort | uniq)
245       PIDS_SOUGHT=()
246       PIDS_SOUGHT=${PIDS_SOUGHT2[*]}
247       echo ${PIDS_SOUGHT[*]}
248     fi
249     /bin/rm $PID_DUMP
250   }
251   
252   # finds all processes matching the pattern specified and shows their full
253   # process listing (whereas psfind just lists process ids).
254   function psa() {
255     if [ -z "$1" ]; then
256       echo "psa finds processes by pattern, but there was no pattern on the command line."
257       return 1
258     fi
259     local -a patterns=("${@}")
260     p=$(psfind "${patterns[@]}")
261     if [ -z "$p" ]; then
262       # no matches.
263       return 0
264     fi
265
266     if [ "${patterns[0]}" == "-u" ]; then
267       # void the two elements with that user flag so we don't use them as patterns.
268       unset patterns[0] patterns[1]=
269     fi
270
271     echo ""
272     echo "Processes matching ${patterns[@]}..."
273     echo ""
274     if [ -n "$IS_DARWIN" ]; then
275       unset fuzil_sentinel
276       for i in $p; do
277         # only print the header the first time.
278         if [ -z "$fuzil_sentinel" ]; then
279           ps $i -w -u
280         else
281           ps $i -w -u | sed -e '1d'
282         fi
283         fuzil_sentinel=true
284       done
285     else 
286       # cases besides mac os x's darwin.
287       if [ "$OS" == "Windows_NT" ]; then
288         # special case for windows.
289         ps | head -1
290         for curr in $p; do
291           ps -W -p $curr | tail -n +2
292         done
293       else
294         # normal OSes can handle a nice simple query.
295         ps wu $p
296       fi
297     fi
298   }
299   
300   ##############
301
302 #hmmm: holy crowbars, this is an old one.  do we ever still have any need of it?
303   # an unfortunately similarly named function to the above 'ps' as in process
304   # methods, but this 'ps' stands for postscript.  this takes a postscript file
305   # and converts it into pcl3 printer language and then ships it to the printer.
306   # this mostly makes sense for an environment where one's default printer is
307   # pcl.  if the input postscript causes ghostscript to bomb out, there has been
308   # some good success running ps2ps on the input file and using the cleaned
309   # postscript file for printing.
310   function ps2pcl2lpr() {
311     for $i in $*; do
312       gs -sDEVICE=pcl3 -sOutputFile=- -sPAPERSIZE=letter "$i" | lpr -l 
313     done
314   }
315   
316 #hmmm: not really doing anything yet; ubuntu seems to have changed from pulseaudio in 17.04?
317   # restarts the sound driver.
318   function fix_sound_driver() {
319     # stop bash complaining about blank function body.
320     local nothing=
321 #if alsa something
322 #    sudo service alsasound restart
323 #elif pulse something
324 #    sudo pulseaudio -k
325 #    sudo pulseaudio -D
326 #else
327 #    something else...?
328 #fi
329
330   }
331
332   function screen() {
333     save_terminal_title
334 #hmmm: ugly absolute path here.
335     /usr/bin/screen $*
336     restore_terminal_title
337   }
338   
339   # switches from a /X/path form to an X:/ form.  this also processes cygwin paths.
340   function unix_to_dos_path() {
341     # we usually remove dos slashes in favor of forward slashes.
342     local DOSSYHOME
343     if [[ ! "$OS" =~ ^[Ww][iI][nN] ]]; then
344       # fake this value for non-windows (non-cygwin) platforms.
345       DOSSYHOME="$HOME"
346     else
347       # for cygwin, we must replace the /home/X path with an absolute one, since cygwin
348       # insists on the /home form instead of /c/cygwin/home being possible.  this is
349       # super frustrating and nightmarish.
350       DOSSYHOME="$(cygpath -am "$HOME")"
351     fi
352
353     if [ ! -z "$SERIOUS_SLASH_TREATMENT" ]; then
354       # unless this flag is set, in which case we force dos slashes.
355       echo "$1" | sed -e "s?^$HOME?$DOSSYHOME?g" | sed -e 's/\\/\//g' | sed -e 's/\/cygdrive//' | sed -e 's/\/\([a-zA-Z]\)\/\(.*\)/\1:\/\2/' | sed -e 's/\//\\/g'
356     else
357       echo "$1" | sed -e "s?^$HOME?$DOSSYHOME?g" | sed -e 's/\\/\//g' | sed -e 's/\/cygdrive//' | sed -e 's/\/\([a-zA-Z]\)\/\(.*\)/\1:\/\2/'
358     fi
359   }
360   
361   # switches from an X:/ form to a /cygdrive/X/path form.  this is only useful
362   # for the cygwin environment currently.
363   function dos_to_unix_path() {
364     # we always remove dos slashes in favor of forward slashes.
365 #old:    echo "$1" | sed -e 's/\\/\//g' | sed -e 's/\([a-zA-Z]\):\/\(.*\)/\/\1\/\2/'
366          echo "$1" | sed -e 's/\\/\//g' | sed -e 's/\([a-zA-Z]\):\/\(.*\)/\/cygdrive\/\1\/\2/'
367   }
368
369   # returns a successful value (0) if this system is debian or ubuntu.
370   function debian_like() {
371     # decide if we think this is debian or ubuntu or a variant.
372     DEBIAN_LIKE=$(if [ ! -z "$(grep -i debian /etc/issue)" \
373         -o ! -z "$(grep -i ubuntu /etc/issue)" ]; then echo 1; else echo 0; fi)
374     if [ $DEBIAN_LIKE -eq 1 ]; then
375       # success; this is debianish.
376       return 0
377     else
378       # this seems like some other OS.
379       return 1
380     fi
381   }
382   
383   # su function: makes su perform a login.
384   # for some OSes, this transfers the X authority information to the new login.
385   function su() {
386     if debian_like; then
387       # debian currently requires the full version which imports X authority
388       # information for su.
389   
390       # get the x authority info for our current user.
391       source "$FEISTY_MEOW_SCRIPTS/security/get_x_auth.sh"
392   
393       if [ -z "$X_auth_info" ]; then
394         # if there's no authentication info to pass along, we just do a normal su.
395         /bin/su -l $*
396       else
397         # under X, we update the new login's authority info with the previous
398         # user's info.
399         (unset XAUTHORITY; /bin/su -l $* -c "$X_auth_info ; export DISPLAY=$DISPLAY ; bash")
400       fi
401     else
402       # non-debian supposedly doesn't need the extra overhead any more.
403       # or at least suse doesn't, which is the other one we've tested on.
404       /bin/su -l $*
405     fi
406   }
407   
408   # sudo function wraps the normal sudo by ensuring we replace the terminal
409   # label if they're doing an su with the sudo.
410   function sudo() {
411     save_terminal_title
412     /usr/bin/sudo "$@"
413     retval=$?
414     restore_terminal_title
415 #    if [ "$first_command" == "su" ]; then
416 #      # yep, they were doing an su, but they're back now.
417 #      label_terminal_with_info
418 #    fi
419     return $retval
420   }
421   
422   # trashes the .#blah files that cvs and subversion leave behind when finding conflicts.
423   # this kind of assumes you've already checked them for any salient facts.
424   function clean_cvs_junk() {
425     for i in $*; do
426       find $i -follow -type f -iname ".#*" -exec perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl {} ";" 
427     done
428   }
429
430   # overlay for nechung binary so that we can complain less grossly about it when it's missing.
431   function nechung() {
432     local wheres_nechung=$(which nechung 2>/dev/null)
433     if [ -z "$wheres_nechung" ]; then
434       echo "The nechung oracle program cannot be found.  You may want to consider"
435       echo "rebuilding the feisty meow applications with this command:"
436       echo "bash $FEISTY_MEOW_SCRIPTS/generator/produce_feisty_meow.sh"
437       echo
438     else
439       $wheres_nechung
440     fi
441   }
442   
443   # recreates all the generated files that the feisty meow scripts use.
444   function regenerate() {
445     # do the bootstrapping process again.
446     save_terminal_title
447     echo "regenerating feisty meow script environment."
448     bash $FEISTY_MEOW_SCRIPTS/core/reconfigure_feisty_meow.sh
449     echo
450     # force a full reload by turning off sentinel variables and methods.
451     unset -v CORE_VARIABLES_LOADED FEISTY_MEOW_LOADING_DOCK USER_CUSTOMIZATIONS_LOADED
452     unalias CORE_ALIASES_LOADED &>/dev/null
453     unset -f function_sentinel 
454     # reload feisty meow environment in current shell.
455     echo "reloading the feisty meow scripts."
456     echo
457     source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
458     # run nechung oracle to give user a new fortune.
459     nechung
460     restore_terminal_title
461   }
462
463   # copies a set of custom scripts into the proper location for feisty meow
464   # to merge their functions and aliases with the standard set.
465   function recustomize()
466   {
467     local custom_user="$1"; shift
468     if [ -z "$custom_user" ]; then
469       # use our default example user if there was no name provided.
470       custom_user=$(logname)
471     fi
472
473     save_terminal_title
474
475     if [ ! -d "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" ]; then
476       echo "The customization folder for '$custom_user' would be:"
477       echo "  $FEISTY_MEOW_SCRIPTS/customize/$custom_user"
478       echo "but that folder does not exist.  Skipping recustomization."
479       return 1
480     fi
481
482     # prevent permission foul-ups.
483 #hmmm: save error output here instead of muting it.
484 #hmmm: better yet actually, just don't complain on freaking cygwin, since that's where this happens
485     chown -R "$(logname):$(logname)" \
486         "$FEISTY_MEOW_LOADING_DOCK"/* "$FEISTY_MEOW_GENERATED_STORE"/* 2>/dev/null
487     test_or_continue "chowning to $(logname) didn't happen."
488
489     regenerate >/dev/null
490     pushd "$FEISTY_MEOW_LOADING_DOCK/custom" &>/dev/null
491     incongruous_files="$(bash "$FEISTY_MEOW_SCRIPTS/files/list_non_dupes.sh" "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" "$FEISTY_MEOW_LOADING_DOCK/custom")"
492
493     local fail_message="\n
494 are the perl dependencies installed?  if you're on ubuntu or debian, try this:\n
495     $(grep "apt-get.*perl" $FEISTY_MEOW_APEX/readme.txt)\n
496 or if you're on cygwin, then try this (if apt-cyg is available):\n
497     $(grep "apt-cyg.*perl" $FEISTY_MEOW_APEX/readme.txt)\n";
498
499     #echo "the incongruous files list is: $incongruous_files"
500     # disallow a single character result, since we get "*" as result when nothing exists yet.
501     if [ ${#incongruous_files} -ge 2 ]; then
502       echo "cleaning unknown older overrides..."
503       perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" $incongruous_files
504       test_or_continue "running safedel.  $fail_message" 
505       echo
506     fi
507     popd &>/dev/null
508     echo "copying custom overrides for $custom_user"
509     mkdir -p "$FEISTY_MEOW_LOADING_DOCK/custom" 2>/dev/null
510     perl "$FEISTY_MEOW_SCRIPTS/text/cpdiff.pl" "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" "$FEISTY_MEOW_LOADING_DOCK/custom"
511     test_or_continue "running cpdiff.  $fail_message"
512
513     if [ -d "$FEISTY_MEOW_SCRIPTS/customize/$custom_user/scripts" ]; then
514       echo "copying custom scripts for $custom_user"
515       rsync -avz "$FEISTY_MEOW_SCRIPTS/customize/$custom_user/scripts" "$FEISTY_MEOW_LOADING_DOCK/custom/" &>/dev/null
516       test_or_continue "copying customization scripts"
517 #hmmm: could save output to show if an error occurs.
518     fi
519     echo
520     regenerate
521
522     # prevent permission foul-ups, again.
523     chown -R "$(logname):$(logname)" \
524         "$FEISTY_MEOW_LOADING_DOCK" "$FEISTY_MEOW_GENERATED_STORE" 2>/dev/null
525     test_or_continue "chowning to $(logname) didn't happen."
526
527     restore_terminal_title
528   }
529
530   # generates a random password where the first parameter is the number of characters
531   # in the password (default 20) and the second parameter specifies whether to use
532   # special characters (1) or not (0).
533   # found function at http://legroom.net/2010/05/06/bash-random-password-generator
534   function random_password()
535   {
536     [ "$2" == "0" ] && CHAR="[:alnum:]" || CHAR="[:graph:]"
537     cat /dev/urandom | tr -cd "$CHAR" | head -c ${1:-32}
538     echo
539   }
540
541   # a wrapper for the which command that finds items on the path.  some OSes
542   # do not provide which, so we want to not be spewing errors when that
543   # happens.
544   function whichable()
545   {
546     to_find="$1"; shift
547     which which &>/dev/null
548     if [ $? -ne 0 ]; then
549       # there is no which command here.  we produce nothing due to this.
550       echo
551     fi
552     echo $(which $to_find)
553   }
554
555 #hmmm: improve this by not adding the link
556 # if already there, or if the drive is not valid.
557   function add_cygwin_drive_mounts() {
558     for i in c d e f g h q z ; do
559       ln -s /cygdrive/$i $i
560     done
561   }
562
563   ############################
564
565   # takes a file to modify, and then it will replace any occurrences of the
566   # pattern provided as the second parameter with the text in the third
567   # parameter.
568   function replace_pattern_in_file()
569   {
570     local file="$1"; shift
571     local pattern="$1"; shift
572     local replacement="$1"; shift
573     if [ -z "$file" -o -z "$pattern" -o -z "$replacement" ]; then
574       echo "replace_pattern_in_file: needs a filename, a pattern to replace, and the"
575       echo "text to replace that pattern with."
576       return 1
577     fi
578     sed -i -e "s%$pattern%$replacement%g" "$file"
579   }
580
581   # similar to replace_pattern_in_file, but also will add the new value
582   # when the old one did not already exist in the file.
583   function replace_if_exists_or_add()
584   {
585     local file="$1"; shift
586     local phrase="$1"; shift
587     local replacement="$1"; shift
588     if [ -z "$file" -o ! -f "$file" -o -z "$phrase" -o -z "$replacement" ]; then
589       echo "replace_if_exists_or_add: needs a filename, a phrase to replace, and the"
590       echo "text to replace that phrase with."
591       return 1
592     fi
593     grep "$phrase" "$file" >/dev/null
594     # replace if the phrase is there, otherwise add it.
595     if [ $? -eq 0 ]; then
596       replace_pattern_in_file "$file" "$phrase" "$replacement"
597     else
598       # this had better be the complete line.
599       echo "$replacement" >>"$file"
600     fi
601   }
602
603   ############################
604
605   # finds a variable (first parameter) in a particular property file
606   # (second parameter).  the expected format for the file is:
607   # varX=valueX
608   function seek_variable()
609   {
610     local find_var="$1"; shift
611     local file="$1"; shift
612     if [ -z "$find_var" -o -z "$file" -o ! -f "$file" ]; then
613       echo -e "seek_variable: needs two parameters, firstly a variable name, and\nsecondly a file where the variable's value will be sought." 1>&2
614       return 1
615     fi
616   
617     while read line; do
618       if [ ${#line} -eq 0 ]; then continue; fi
619       # split the line into the variable name and value.
620       IFS='=' read -a assignment <<< "$line"
621       local var="${assignment[0]}"
622       local value="${assignment[1]}"
623       if [ "${value:0:1}" == '"' ]; then
624         # assume the entry was in quotes and remove them.
625         value="${value:1:$((${#value} - 2))}"
626       fi
627       if [ "$find_var" == "$var" ]; then
628         echo "$value"
629       fi
630     done < "$file"
631   }
632   
633   # finds a variable (first parameter) in a particular XML format file
634   # (second parameter).  the expected format for the file is:
635   # ... name="varX" value="valueX" ...
636   function seek_variable_in_xml()
637   {
638     local find_var="$1"; shift
639     local file="$1"; shift
640     if [ -z "$find_var" -o -z "$file" -o ! -f "$file" ]; then
641       echo "seek_variable_in_xml: needs two parameters, firstly a variable name, and"
642       echo "secondly an XML file where the variable's value will be sought."
643       return 1
644     fi
645   
646     while read line; do
647       if [ ${#line} -eq 0 ]; then continue; fi
648       # process the line to make it more conventional looking.
649       line="$(echo "$line" | sed -e 's/.*name="\([^"]*\)" value="\([^"]*\)"/\1=\2/')"
650       # split the line into the variable name and value.
651       IFS='=' read -a assignment <<< "$line"
652       local var="${assignment[0]}"
653       local value="${assignment[1]}"
654       if [ "${value:0:1}" == '"' ]; then
655         # assume the entry was in quotes and remove them.
656         value="${value:1:$((${#value} - 2))}"
657       fi
658       if [ "$find_var" == "$var" ]; then
659         echo "$value"
660       fi
661     done < "$file"
662   }
663   
664   ############################
665
666   # goes to a particular directory passed as parameter 1, and then removes all
667   # the parameters after that from that directory.
668   function push_whack_pop()
669   {
670     local dir="$1"; shift
671     pushd "$dir" &>/dev/null
672     if [ $? -ne 0 ]; then echo failed to enter dir--quitting.; fi
673     rm -rf $* &>/dev/null
674     if [ $? -ne 0 ]; then echo received a failure code when removing.; fi
675     popd &>/dev/null
676   }
677
678   function spacem()
679   {
680     while [ $# -gt 0 ]; do
681       arg="$1"; shift
682       if [ ! -f "$arg" -a ! -d "$arg" ]; then
683         echo "failure to find a file or directory named '$arg'."
684         continue
685       fi
686
687       # first we will capture the output of the character replacement operation for reporting.
688       # this is done first since some filenames can't be properly renamed in perl (e.g. if they
689       # have pipe characters apparently).
690       intermediate_name="$(bash "$FEISTY_MEOW_SCRIPTS/files/replace_spaces_with_underscores.sh" "$arg")"
691       local saw_intermediate_result=0
692       if [ -z "$intermediate_name" ]; then
693         # make sure we report something, if there are no further name changes.
694         intermediate_name="'$arg'"
695       else 
696         # now zap the first part of the name off (since original name isn't needed).
697         intermediate_name="$(echo $intermediate_name | sed -e 's/.*=> //')"
698         saw_intermediate_result=1
699       fi
700
701       # first we rename the file to be lower case.
702       actual_file="$(echo $intermediate_name | sed -e "s/'\([^']*\)'/\1/")"
703       final_name="$(perl $FEISTY_MEOW_SCRIPTS/files/renlower.pl "$actual_file")"
704       local saw_final_result=0
705       if [ -z "$final_name" ]; then
706         final_name="$intermediate_name"
707       else
708         final_name="$(echo $final_name | sed -e 's/.*=> //')"
709         saw_final_result=1
710       fi
711 #echo intermed=$saw_intermediate_result 
712 #echo final=$saw_final_result 
713
714       if [[ $saw_intermediate_result != 0 || $saw_final_result != 0 ]]; then
715         # printout the combined operation results.
716         echo "'$arg' => $final_name"
717       fi
718     done
719   }
720
721   ##############
722
723 # new breed of definer functions goes here.  still in progress.
724
725   # defines an alias and remembers that this is a new or modified definition.
726   # if the feisty meow codebase is unloaded, then so are all the aliases that
727   # were defined.
728   function define_yeti_alias()
729   {
730 # if alias exists already, save old value for restore,
731 # otherwise save null value for restore,
732 # have to handle unaliasing if there was no prior value of one
733 # we newly defined.
734 # add alias name to a list of feisty defined aliases.
735
736 #hmmm: first implem, just do the alias and get that working...
737 alias "${@}"
738
739
740 return 0
741   }
742
743   ##############
744
745 #hmmm: this points to an extended functions file being needed; not all of these are core.
746
747   # displays documentation in "md" formatted files.
748   function show_md()
749   {
750     local file="$1"; shift
751     pandoc "$file" | lynx -stdin
752   }
753
754   ##############
755
756   # just shows a separator line for an 80 column console, or uses the first
757   # parameter as the number of columns to expect.
758   function separator()
759   {
760     count=$1; shift
761     if [ -z "$count" ]; then
762       count=79
763     fi
764     echo
765     local i
766     for ((i=0; i < $count - 1; i++)); do
767       echo -n "="
768     done
769     echo
770     echo
771   }
772   # alias for separator.
773   function sep()
774   {
775     separator $*
776   }
777
778   ##############
779
780   # count the number of sub-directories in a directory and echo the result.
781   function count_directories()
782   {
783     local appsdir="$1"; shift
784     numdirs="$(find "$appsdir" -mindepth 1 -maxdepth 1 -type d | wc -l)"
785     echo $numdirs
786   }
787
788   # takes a string and capitalizes just the first character.  any capital letters in the remainder of
789   # the string are made lower case.  the processed string is returned by an echo.
790   function capitalize_first_char()
791   {
792     local to_dromedary="$1"; shift
793     to_dromedary="$(tr '[:lower:]' '[:upper:]' <<< ${to_dromedary:0:1})$(tr '[:upper:]' '[:lower:]' <<< ${to_dromedary:1})"
794     echo "$to_dromedary"
795   }
796
797   # given a source path and a target path, this will make a symbolic link from
798   # the source to the destination, but only if the source actually exists.
799   function make_safe_link()
800   {
801     local src="$1"; shift
802     local target="$1"; shift
803   
804     if [ -d "$src" ]; then
805       ln -s "$src" "$target"
806       test_or_die "Creating symlink from '$src' to '$target'"
807     fi
808     echo "Created symlink from '$src' to '$target'."
809   }
810
811   # pretty prints the json files provided as parameters.
812   function clean_json()
813   {
814     if [ -z "$*" ]; then return; fi
815     local show_list=()
816     while true; do
817       local file="$1"; shift
818       if [ -z "$file" ]; then break; fi
819       if [ ! -f "$file" ]; then "echo File '$file' does not exist."; continue; fi
820       temp_out="$TMP/$file.view"
821       cat "$file" | python -m json.tool > "$temp_out"
822       show_list+=($temp_out)
823       test_or_continue "pretty printing '$file'"
824     done
825     filedump "${show_list[@]}"
826     rm "${show_list[@]}"
827   }
828
829   function json_text()
830   {
831     # only print our special headers or text fields.
832     local CR=$'\r'
833     local LF=$'\n'
834     clean_json $* |
835         grep -i "\"text\":\|^=.*" | 
836         sed -e "s/\\\\r/$CR/g" -e "s/\\\\n/\\$LF/g"
837   }
838
839   ##############
840
841   # echoes the machine's hostname.  can be used like so:
842   #   local my_host=$(get_hostname)
843   function get_hostname()
844   {
845     # there used to be more variation in how to do this, but adopting mingw
846     # and cygwin tools really helped out.
847     local this_host=unknown
848     if [ "$OS" == "Windows_NT" ]; then
849       this_host=$(hostname)
850     elif [ ! -z "$(echo $MACHTYPE | grep apple)" ]; then
851       this_host=$(hostname)
852     elif [ ! -z "$(echo $MACHTYPE | grep suse)" ]; then
853       this_host=$(hostname --long)
854     elif [ -x "$(which hostname 2>/dev/null)" ]; then
855       this_host=$(hostname)
856     fi
857     echo "$this_host"
858   }
859
860   # makes sure that the provided "folder" is a directory and is writable.
861   function test_writeable()
862   {
863     local folder="$1"; shift
864     if [ ! -d "$folder" -o ! -w "$folder" ]; then return 1; fi
865     return 0
866   }
867
868   ##############
869
870   # given a filename and a string to seek and a number of lines, then this
871   # function will remove the first occurrence of a line in the file that
872   # matches the string, and it will also axe the next N lines as specified.
873   function create_chomped_copy_of_file()
874   {
875     local filename="$1"; shift
876     local seeker="$1"; shift
877     local numlines=$1; shift
878
879 #echo into create_chomped_copy...
880 #var filename seeker numlines 
881
882     # make a backup first, oy.
883     \cp -f "$filename" "/tmp/$(basename ${filename}).bkup-${RANDOM}" 
884     test_or_die "backing up file: $filename"
885
886     # make a temp file to write to before we move file into place in bind.
887     local new_version="/tmp/$(basename ${filename}).bkup-${RANDOM}" 
888     \rm -f "$new_version"
889     test_or_die "cleaning out new version of file from: $new_version"
890
891     local line
892     local skip_count=0
893     local found_any=
894     while read line; do
895       # don't bother looking at the lines if we're already in skip mode.
896       if [[ $skip_count == 0 ]]; then
897         # find the string they're seeking.
898         if [[ ! "$line" =~ .*${seeker}.* ]]; then
899           # no match.
900           echo "$line" >> "$new_version"
901         else
902           # a match!  start skipping.  we will delete this line and the next N lines.
903           ((skip_count++))
904 #echo first skip count is now $skip_count
905           found_any=yes
906         fi
907       else
908         # we're already skipping.  let's keep going until we hit the limit.
909         ((skip_count++))
910 #echo ongoing skip count is now $skip_count
911         if (( $skip_count > $numlines )); then
912           echo "Done skipping, and back to writing output file."
913           skip_count=0
914         fi
915       fi
916     done < "$filename"
917
918 #echo file we created looks like this:
919 #cat "$new_version"
920
921     if [ ! -z "$found_any" ]; then
922       # put the file back into place under the original name.
923       \mv "$new_version" "$filename"
924       test_or_die "moving the new version into place in: $filename"
925     else
926       # cannot always be considered an error, but we can at least gripe.
927       echo "Did not find any matches for seeker '$seeker' in file: $filename"
928     fi
929   }
930
931   ##############
932
933   # site avenger aliases
934   function switchto()
935   {
936     THISDIR="$FEISTY_MEOW_SCRIPTS/site_avenger"
937     source "$FEISTY_MEOW_SCRIPTS/site_avenger/shared_site_mgr.sh"
938     switch_to "$1"
939   }
940
941   ##############
942
943   # NOTE: no more function definitions are allowed after this point.
944
945   function function_sentinel()
946   {
947     return 0; 
948   }
949   
950   if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then echo "feisty meow function definitions done."; fi
951
952   ##############
953
954   # test code for set_var_if_undefined.
955   run_test=0
956   if [ $run_test != 0 ]; then
957     echo running tests on set_var_if_undefined.
958     flagrant=petunia
959     set_var_if_undefined flagrant forknordle
960     test_or_die "testing if defined variable would be whacked"
961     if [ $flagrant != petunia ]; then
962       echo set_var_if_undefined failed to leave the test variable alone
963       exit 1
964     fi
965     unset bobblehead_stomper
966     set_var_if_undefined bobblehead_stomper endurance
967     if [ $bobblehead_stomper != endurance ]; then
968       echo set_var_if_undefined failed to set a variable that was not defined yet
969       exit 1
970     fi
971   fi
972
973 fi
974