updated to do psfind properly, this time, i hope.
[feisty_meow.git] / scripts / core / functions.sh
1 #!/bin/bash
2
3 # This defines some general, useful functions.
4
5 # test whether we've been here before or not.
6 skip_all=
7 function_sentinel &>/dev/null
8 if [ $? -eq 0 ]; then
9   # there was no error, so we can skip the inits.
10   if [ ! -z "$SHELL_DEBUG" ]; then
11     echo skipping functions.sh because already defined.
12   fi
13   skip_all=yes
14 fi
15
16 if [ -z "$skip_all" ]; then
17   if [ ! -z "$SHELL_DEBUG" ]; then
18     echo function definitions begin...
19   fi
20   
21   # a handy little method that can be used for date strings.  it was getting
22   # really tiresome how many different ways the script did the date formatting.
23   function date_stringer() {
24     local sep="$1"; shift
25     if [ -z "$sep" ]; then sep='_'; fi
26     date +"%Y$sep%m$sep%d$sep%H%M$sep%S" | tr -d '/\n/'
27   }
28   
29   # makes a directory of the name specified and then tries to change the
30   # current directory to that directory.
31   function mcd() {
32     if [ ! -d "$1" ]; then mkdir -p "$1"; fi
33     cd "$1"
34   }
35
36   # displays the value of a variable in bash friendly format.
37   function var() {
38     while true; do
39       local varname="$1"; shift
40       if [ -z "$varname" ]; then
41         break
42       fi
43       if [ -z "${!varname}" ]; then
44         echo "$varname undefined"
45       else
46         echo "$varname=${!varname}"
47       fi
48     done
49   }
50
51   function success_sound()
52   {
53     if [ ! -z "$CLAM_FINISH_SOUND" ]; then
54       bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh "$CLAM_FINISH_SOUND"
55     fi
56   }
57
58   function error_sound()
59   {
60     if [ ! -z "$CLAM_ERROR_SOUND" ]; then
61       bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh "$CLAM_ERROR_SOUND"
62     fi
63   }
64
65   # checks the result of the last command that was run, and if it failed,
66   # then this complains and exits from bash.  the function parameters are
67   # used as the message to print as a complaint.
68   function check_result()
69   {
70     if [ $? -ne 0 ]; then
71       echo -e "failed on: $*"
72       error_sound
73       exit 1
74     fi
75   }
76
77   # locates a process given a search pattern to match in the process list.
78   function psfind() {
79     local -a patterns=("${@}")
80     mkdir $TEST_TEMP/grid_logs &>/dev/null
81     local PID_DUMP="$(mktemp "$TMP/zz_pidlist.XXXXXX")"
82     local -a PIDS_SOUGHT
83     if [ "$OS" == "Windows_NT" ]; then
84       # needs to be a windows format filename for 'type' to work.
85       if [ ! -d c:/tmp ]; then
86         mkdir c:/tmp
87       fi
88       # windows7 magical mystery tour lets us create a file c:\\tmp_pids.txt, but then it's not
89       # really there in the root of drive c: when we look for it later.  hoping to fix that
90       # problem by using a subdir, which also might be magical thinking from windows perspective.
91       tmppid=c:\\tmp\\pids.txt
92       # we have abandoned all hope of relying on ps on windows.  instead we use wmic to get full
93       # command lines for processes.
94       wmic /locale:ms_409 PROCESS get processid,commandline </dev/null >"$tmppid"
95       local flag='/c'
96       if [ ! -z "$(uname -a | grep "^MING" )" ]; then
97         flag='//c'
98       fi
99       # we 'type' the file to get rid of the unicode result from wmic.
100       cmd $flag type "$tmppid" >$PID_DUMP
101       \rm "$tmppid"
102       local CR='
103 '  # embedded carriage return.
104       local appropriate_pattern="s/^.*  *\([0-9][0-9]*\)[ $CR]*\$/\1/p"
105       for i in "${patterns[@]}"; do
106         PIDS_SOUGHT+=($(cat $PID_DUMP \
107           | grep -i "$i" \
108           | sed -n -e "$appropriate_pattern"))
109       done
110     else
111       /bin/ps $extra_flags wuax >$PID_DUMP
112       # pattern to use for peeling off the process numbers.
113       local appropriate_pattern='s/^[-a-zA-Z_0-9][-a-zA-Z_0-9]*  *\([0-9][0-9]*\).*$/\1/p'
114       # remove the first line of the file, search for the pattern the
115       # user wants to find, and just pluck the process ids out of the
116       # results.
117       for i in "${patterns[@]}"; do
118         PIDS_SOUGHT+=($(cat $PID_DUMP \
119           | sed -e '1d' \
120           | grep -i "$i" \
121           | sed -n -e "$appropriate_pattern"))
122       done
123     fi
124     if [ ${#PIDS_SOUGHT[*]} -ne 0 ]; then
125       local TMPFUD=$(mktemp $TMP/junkpids.XXXXXX)
126       printf -- '%s\n' ${PIDS_SOUGHT[@]} | sort | uniq >$TMPFUD
127       PIDS_SOUGHT=$(cat $TMPFUD)
128       echo ${PIDS_SOUGHT[*]}
129 #rm $TMPFUD
130     fi
131     /bin/rm $PID_DUMP
132   }
133   
134   # finds all processes matching the pattern specified and shows their full
135   # process listing (whereas psfind just lists process ids).
136   function psa() {
137     if [ -z "$1" ]; then
138       echo "psa finds processes by pattern, but there was no pattern on the command line."
139       return 1
140     fi
141     p=$(psfind "$1")
142     if [ -z "$p" ]; then
143       # no matches.
144       return 0
145     fi
146     echo ""
147     echo "Processes containing \"$1\"..."
148     echo ""
149     if [ -n "$IS_DARWIN" ]; then
150       unset fuzil_sentinel
151       for i in $p; do
152         # only print the header the first time.
153         if [ -z "$fuzil_sentinel" ]; then
154           ps $i -w -u
155         else
156           ps $i -w -u | sed -e '1d'
157         fi
158         fuzil_sentinel=true
159       done
160     else 
161       # cases besides mac os x's darwin.
162       extra_flags=
163       if [ "$OS" = "Windows_NT" ]; then
164         # special case for windows.
165         extra_flags=-W
166         ps | head -1
167         for curr in $p; do
168           ps $extra_flags | grep "$curr" 
169         done
170       else
171         # normal OSes can handle a nice simple query.
172         ps wu $p
173       fi
174     fi
175   }
176   
177   # an unfortunately similarly named function to the above 'ps' as in process
178   # methods, but this 'ps' stands for postscript.  this takes a postscript file
179   # and converts it into pcl3 printer language and then ships it to the printer.
180   # this mostly makes sense for an environment where one's default printer is
181   # pcl.  if the input postscript causes ghostscript to bomb out, there has been
182   # some good success running ps2ps on the input file and using the cleaned
183   # postscript file for printing.
184   function ps2pcl2lpr() {
185     for $i in $*; do
186       gs -sDEVICE=pcl3 -sOutputFile=- -sPAPERSIZE=letter "$i" | lpr -l 
187     done
188   }
189   
190   function fix_alsa() {
191     sudo /etc/init.d/alsasound restart
192   }
193   
194   # switches from a /X/path form to an X:/ form.  this also processes cygwin paths.
195   function unix_to_dos_path() {
196     # we usually remove dos slashes in favor of forward slashes.
197     if [ ! -z "$SERIOUS_SLASH_TREATMENT" ]; then
198       # unless this flag is set, in which case we force dos slashes.
199       echo "$1" | sed -e 's/\\/\//g' | sed -e 's/\/cygdrive//' | sed -e 's/\/\([a-zA-Z]\)\/\(.*\)/\1:\/\2/' | sed -e 's/\//\\/g'
200     else
201       echo "$1" | sed -e 's/\\/\//g' | sed -e 's/\/cygdrive//' | sed -e 's/\/\([a-zA-Z]\)\/\(.*\)/\1:\/\2/'
202     fi
203   }
204   
205   # switches from an X:/ form to an /X/path form.
206   function dos_to_unix_path() {
207     # we always remove dos slashes in favor of forward slashes.
208     echo "$1" | sed -e 's/\\/\//g' | sed -e 's/\([a-zA-Z]\):\/\(.*\)/\/\1\/\2/'
209   }
210
211   # returns a successful value (0) if this system is debian or ubuntu.
212   function debian_like() {
213     # decide if we think this is debian or ubuntu or a variant.
214     DEBIAN_LIKE=$(if [ ! -z "$(grep -i debian /etc/issue)" \
215         -o ! -z "$(grep -i ubuntu /etc/issue)" ]; then echo 1; else echo 0; fi)
216     if [ $DEBIAN_LIKE -eq 1 ]; then
217       # success; this is debianish.
218       return 0
219     else
220       # this seems like some other OS.
221       return 1
222     fi
223   }
224   
225   # su function: makes su perform a login.
226   # for some OSes, this transfers the X authority information to the new login.
227   function su() {
228     if debian_like; then
229       # debian currently requires the full version which imports X authority
230       # information for su.
231   
232       # get the x authority info for our current user.
233       source $FEISTY_MEOW_SCRIPTS/x_win/get_x_auth.sh
234   
235       if [ -z "$X_auth_info" ]; then
236         # if there's no authentication info to pass along, we just do a normal su.
237         /bin/su -l $*
238       else
239         # under X, we update the new login's authority info with the previous
240         # user's info.
241         (unset XAUTHORITY; /bin/su -l $* -c "$X_auth_info ; export DISPLAY=$DISPLAY ; bash")
242       fi
243     else
244       # non-debian supposedly doesn't need the extra overhead any more.
245       # or at least suse doesn't, which is the other one we've tested on.
246       /bin/su -l $*
247     fi
248   
249     # relabel the console after returning.
250     bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh
251   }
252   
253   # sudo function wraps the normal sudo by ensuring we replace the terminal
254   # label if they're doing an su with the sudo.
255   function sudo() {
256     local first_command="$1"
257     /usr/bin/sudo "$@"
258     if [ "$first_command" == "su" ]; then
259       # yep, they were doing an su, but they're back now.
260       bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh
261     fi
262   }
263   
264   # trashes the .#blah files that cvs and svn leave behind when finding conflicts.
265   # this kind of assumes you've already checked them for any salient facts.
266   function clean_cvs_junk() {
267     for i in $*; do
268       find $i -follow -type f -iname ".#*" -exec perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl {} ";" 
269     done
270   }
271
272   # overlay for nechung binary so that we can complain less grossly about it when it's missing.
273   function nechung() {
274     local wheres_nechung=$(which nechung 2>/dev/null)
275     if [ -z "$wheres_nechung" ]; then
276       echo "The nechung oracle program cannot be found.  You may want to consider"
277       echo "rebuilding the feisty meow applications with this command:"
278       echo "bash $FEISTY_MEOW_SCRIPTS/generator/bootstrap_build.sh"
279     else
280       $wheres_nechung
281     fi
282   }
283   
284   # recreates all the generated files that the feisty meow scripts use.
285   function regenerate() {
286     bash $FEISTY_MEOW_SCRIPTS/core/bootstrap_shells.sh
287     echo
288     nechung
289   }
290
291   # generates a random password where the first parameter is the number of characters
292   # in the password (default 20) and the second parameter specifies whether to use
293   # special characters (1) or not (0).
294   # found function at http://legroom.net/2010/05/06/bash-random-password-generator
295   function random_password()
296   {
297     [ "$2" == "0" ] && CHAR="[:alnum:]" || CHAR="[:graph:]"
298     cat /dev/urandom | tr -cd "$CHAR" | head -c ${1:-32}
299     echo
300   }
301
302   # a wrapper for the which command that finds items on the path.  some OSes
303   # do not provide which, so we want to not be spewing errors when that
304   # happens.
305   function whichable()
306   {
307     to_find="$1"; shift
308     which which &>/dev/null
309     if [ $? -ne 0 ]; then
310       # there is no which command here.  we produce nothing due to this.
311       echo
312     fi
313     echo $(which $to_find)
314   }
315
316   # copies a set of custom scripts into the proper location for feisty meow
317   # to merge their functions and aliases with the standard set.
318   function recustomize()
319   {
320     user="$1"; shift
321     if [ -z "$user" ]; then
322       # use our default example user if there was no name provided.
323       user=fred
324     fi
325     if [ ! -d "$FEISTY_MEOW_DIR/customizing/$user" ]; then
326       echo "The customization folder provided for $user should be:"
327       echo "  '$FEISTY_MEOW_DIR/customizing/$user'"
328       echo "but that folder does not exist.  Skipping customization."
329       return 1
330     fi
331     regenerate >/dev/null
332     pushd "$FEISTY_MEOW_GENERATED/custom" &>/dev/null
333     local incongruous_files="$(bash "$FEISTY_MEOW_SCRIPTS/files/list_non_dupes.sh" "$FEISTY_MEOW_DIR/customizing/$user" "$FEISTY_MEOW_GENERATED/custom")"
334     if [ ${#incongruous_files} -ge 1 ]; then
335       echo "cleaning unknown older overrides..."
336       perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" $incongruous_files
337       echo
338     fi
339     popd &>/dev/null
340     echo "copying custom overrides for $user"
341     mkdir "$FEISTY_MEOW_GENERATED/custom" 2>/dev/null
342     perl "$FEISTY_MEOW_SCRIPTS/text/cpdiff.pl" "$FEISTY_MEOW_DIR/customizing/$user" "$FEISTY_MEOW_GENERATED/custom"
343     regenerate
344   }
345
346   function add_cygwin_drive_mounts() {
347     for i in c d e f g h q z ; do
348       ln -s /cygdrive/$i $i
349     done
350   }
351
352
353   # takes a file to modify, and then it will replace any occurrences of the
354   # pattern provided as the second parameter with the text in the third
355   # parameter.
356   function replace_pattern_in_file()
357   {
358     local file="$1"; shift
359     local pattern="$1"; shift
360     local replacement="$1"; shift
361     if [ -z "$file" -o -z "$pattern" -o -z "$replacement" ]; then
362       echo "replace_pattern_in_file: needs a filename, a pattern to replace, and the"
363       echo "text to replace that pattern with."
364       return 1
365     fi
366     sed -i -e "s%$pattern%$replacement%g" "$file"
367   }
368
369   ##############
370
371   function function_sentinel() { return 0; }
372   
373   if [ ! -z "$SHELL_DEBUG" ]; then echo function definitions end....; fi
374   
375 fi
376