#!/bin/ash
# wmexit - command to exit from X - special version for Fatdog64 Sandbox
# Copyright (C) James Budiono 2012, 2013, 2019
# License: GNU GPL Version 3
# Note: a replacement for wmpoweroff, wmreboot and others
#
# parameter: $1 - action, $2 - optional wm, $3 - optional panel
# action is: poweroff/shutdown, reboot, restart, xorgwizard, terminal, logout

### configuration
WINDOW_MANAGER_CONFIG=$FATDOG_STATE_DIR/windowmanager
WINDOW_PANEL_CONFIG=$FATDOG_STATE_DIR/windowpanel
. $BOOTSTATE_PATH

### configuration
F_SESSION_PID=/tmp/xinitrc-session.pid.$USER.$XSESSION_ID		# defined by xinitrc
F_WINDOW_MANAGER_PID=/tmp/xinitrc-wm.pid.$USER.$XSESSION_ID		# defined by restartwm
F_WINDOW_PANEL_PID=/tmp/xinitrc-panel.pid.$USER.$XSESSION_ID	# defined by restartwm

### utilities - stop X server 
# stop by stopping the window manager if possible (this is more polite)
# kill X if it's not possible
stop_X() {
	local wm_pid="" panel_pid="" xserver_pid="" sesssion_pid=""
	
	[ -e $F_SESSION_PID ] && read session_pid < $F_SESSION_PID
	[ -e $F_WINDOW_MANAGER_PID ] && read wm_pid < $F_WINDOW_MANAGER_PID
	[ -e $F_WINDOW_PANEL_PID ] && read panel_pid < $F_WINDOW_PANEL_PID
	xserver_pid=$(netstat -x | sed -n "\_/tmp/.X11-unix/X${SANDBOX_DISPLAY}_ {s|.*[^0-9]\([0-9][0-9]*/Xephyr\).*|\1|;s|/Xephyr||;p;q}")
	rm -f $F_WINDOW_MANAGER_PID $F_WINDOW_PANEL_PID $F_SESSION_PID
	
	if [ "$session_pid" ]; then
		kill $session_pid
	elif [ "$wm_pid" -o "$panel_pid" ]; then
		#rm -f /tmp/*.pid.$USER.$XSESSION_ID	# clean up stuff
		kill $wm_pid $panel_pid
	elif [ $xserver_pid ]; then
		kill $xserver_pid
	else
		killall Xephyr
	fi
}


########## main ############
case $1 in 	
	poweroff|shutdown|reboot|restart|xorgwizard|terminal|logout)
		# let xwin handle this
		[ $2 ] && echo $2 > $WINDOW_MANAGER_CONFIG
		[ $3 ] && echo $3 > $WINDOW_PANEL_CONFIG
		stop_X
		;;
	*)	# unknown parameter, try help
		echo "Usage: wmexit shutdown|poweroff|reboot|restart|terminal|logout|xorgwizard"
		;;
esac
