summaryrefslogtreecommitdiff
path: root/xnest.sh
blob: 8a28e5d12dc5619eae6f2d7bea42db9e17241ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env bash

#export REDRAW_DEBUG=1        # To cause redraw- to happen slovly and obviously.
#export ECORE_ERROR_ABORT=1   # To cause ecore to abort on errors.
#export EVAS_NOCLEAN=1        # To cause evas to not unload modules.

disp_num=":1"                 # Which display do you want the xnest to be on?

main=$DISPLAY
tmp=`mktemp` || exit 1
echo -e "run\nbt\nq\ny" > $tmp

case "$1" in
	"")	action="gdb -x $tmp --args" ; main=$disp_num ;;
	"-b")	action="gdb -x $tmp --args" ; main=$disp_num ;;
	"-c")	action="cgdb" ; main=$disp_num ;;
	"-d")	action="ddd -display $main --args" ;;
	"-e")	action="" ; e_args="-display $disp_num" ;;
	"-g")	action="gdb --args" ; main=$disp_num ;;
	"-l")	action="valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --log-file=valgrind_log" ; main=$disp_num ;;
	"-m")	action="valgrind --tool=memcheck --log-file=valgrind_log" ; main=$disp_num ;;
	"-p")	action="memprof --display=$main" ; main=$disp_num ;;
	"-r")	action="memprof_raster --display=$main" ; main=$disp_num ;;
	"-s")	action="strace -F -o strace_log" ;;
	"-v")	action="valkyrie -display $main" ; main=$disp_num ;;
	*)	echo -e "Usage : xnest.sh [debugger] ([enlightenment options])"
		echo -e "\tdefault option is -b"
		echo -e "\t-b use text debugger with auto backtrace\tgdb"
		echo -e "\t-c use curses debugger\t\t\t\tcgdb"
		echo -e "\t-d use the GUI debugger\t\t\t\tddd"
		echo -e "\t-e enlightenment with no debugging"
		echo -e "\t-g use text debugger\t\t\t\tgdb"
		echo -e "\t-l leak check\t\t\t\t\tvalgrind"
		echo -e "\t-m memory check\t\t\t\t\tvalgrind"
		echo -e "\t-p memory profiling\t\t\t\tmemprof"
		echo -e "\t-r raster's memory profiling\t\t\tmemprof_raster"
		echo -e "\t-s show syscalls\t\t\t\tstrace"
		echo -e "\t-v GUI memory check\t\t\t\tvalkyrie"
		echo -e ""
		echo -e "When you have finished with the text debugger, use the q command to quit."
		echo -e "The valgrind options will leave a log file with a name beginning with valgrind_log"
		exit
		;;
esac
e_args="`echo -- $@ | cut -d' ' -f2-` $e_args"

Xnest $disp_num -ac &

sleep 2   # Someone reported that it starts E before X has started properly.

export DISPLAY=$main; export E_START="enlightenment_start"; $action enlightenment $e_args

rm -f $tmp
killall -TERM Xnest