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