#!/bin/sh
#
# 	file: run_MwmUI1
#
#
# 	script to run the MwmUI1 test
#
#	This shows PIR 4141
#
#	Related file(s) :
#		MwmUI1.Xdefs
#

CURR_MWM=../../../clients/mwm/mwm

SYSTEM=`uname -a | awk -F' ' '{print $1}'`

# print out warnings and question
	echo; echo
	echo "This is the execution script for the test - MwmUI1"
	echo
	echo "To begin this test, the window manager \"mwm\" will be"
	echo "killed and restarted with additions to the resource database."
	echo "You will be asked to hit return when the new \"mwm\" is"
	echo "up and running.  Then, the actual test will be run, and upon"
	echo "completion, the original \"mwm\" will be restarted with it's"
	echo "original resource database intact."
	echo
	echo "It is assumed the original \"mwm\" running was ${TEST_MWM}," 
	echo "and, therefore, that is what will be restarted."
	echo

if [ ${SYSTEM} = "HP-UX" ]
then
# HP version
	echo "Do you want to continue? (n) \c"
else
# others, like DEC version
	echo -n "Do you want to continue? (n) "
fi

	read ANS
	ANS2=".${ANS}"
	if [ ${ANS2} != ".y" ]
	then
		echo "Cancelling test."
		exit
	fi


# merge in new resources into database
	xrdb -edit /tmp/oldxdef$$
	xrdb -merge < ./MwmUI1.Xdefs

# get the wm process and kill it
#	look for " mwm" or ".../mwm"
#	this should give you only things that really are mwm
#	remove all leading whitespace and replace multiple
#	tabs/spaces with 1 space
if [ ${SYSTEM} = "HP-UX" ]
then
# HP version
	MWM_LINE=`ps -ef | egrep ' mwm|/mwm' | grep -v egrep`
	BETTER_MWM_LINE=`echo ${MWM_LINE} | sed -e 's/^[	 ]*//
		s/[	 ][	 ]*/ /g'`
	MWM_PID=`echo ${BETTER_MWM_LINE} | cut -d' ' -f2`
	MWM_CMD=`echo ${BETTER_MWM_LINE} | cut -d' ' -f8-`
	MWM_OPTS=`echo ${BETTER_MWM_LINE} | cut -d' ' -f9-`
else
# others, like DEC version
    MWM_LINE=`ps -axw | egrep ' mwm|/mwm' | grep -v egrep`
	BETTER_MWM_LINE=`echo ${MWM_LINE} | sed -e 's/^[   ]*//
		s/[  ][  ]*/ /g'`
	MWM_PID=`echo ${BETTER_MWM_LINE} | cut -d' ' -f1`
	MWM_CMD=`echo ${BETTER_MWM_LINE} | cut -d' ' -f5-`
	MWM_OPTS=`echo ${BETTER_MWM_LINE} | cut -d' ' -f6-`
fi

	kill -9 ${MWM_PID}

# start new wm and then start test
	${CURR_MWM} ${MWM_OPTS} >/dev/null 2>&1 &
	sleep 10

if [ ${SYSTEM} = "HP-UX" ]
then
# HP version
	echo "Hit return after the new \"mwm\" is up and running. (CR) \c"
else
# others, like DEC version
	echo -n "Hit return after the new \"mwm\" is up and running. (CR) "
fi

	read ANS

if [ ${SYSTEM} = "HP-UX" ]
then
# HP version
TEST_MWM_PID=`ps -eaf | egrep ' mwm|/mwm' | grep -v egrep | awk -F' ' '{print $2}'`
else
TEST_MWM_PID=`ps -axw | egrep ' mwm|/mwm' | grep -v egrep | awk -F' ' '{print $1}'`
fi

# now start the test program
	echo "Now the useIconBox resource is set to True so that"
	echo "you will see an iconBox. Also, the keyboardFocusPolicy"
	echo "has been set to pointer. This is to test PIR4141"

if [ ${SYSTEM} = "HP-UX" ]
then
# HP version
TEST_MWM_PID=`ps -eaf | egrep ' mwm|/mwm' | grep -v egrep | awk -F' ' '{print $2
}'`
else
TEST_MWM_PID=`ps -axw | egrep ' mwm|/mwm' | grep -v egrep | awk -F' ' '{print $1
}'`
fi

# now start the test program
	./MwmUI1

# restore old resource database, kill new wm and restart old one
	echo "The original \"mwm\" is being restored..."

if [ -s /tmp/oldxdef$$ ]
then
	xrdb /tmp/oldxdef$$
else
	xrdb -remove	
fi

	kill -9 ${TEST_MWM_PID}
	${CURR_MWM} ${MWM_OPTS}>/dev/null 2>&1 &
	sleep 10

	rm -f /tmp/oldxdef$$*

# end of script
