summaryrefslogtreecommitdiff
path: root/progs/tools/trace/gltrace
blob: d386912cf25dc6bf1d3e35e61ae1878eb041232a (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash

# Copyright (C) 2006  Thomas Sondergaard
# All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# on the rights to use, copy, modify, merge, publish, distribute, sub
# license, and/or sell copies of the Software, and to permit persons to whom
# the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
# IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# Authors:
#    Thomas Sondergaard <ts@medical-insight.com>

usage="usage: $0 [ -hctev ] [-l LOGFILE] program [args...]\n\t-h\t\thelp (this text)\n\t-c\t\tlog gl calls\n\t-t\t\ttime stamp log entries\n\t-e\t\tcheck for and log errors. errors occurring between\n\t\t\tglBegin() and glEnd() are checked at glEnd()\n\t-v\t\tverbose. Shows configuration settings passed to\n\t\t\tgltrace.so\n\t-l LOGFILE\tlogfile. Default is stderr"

# Path to gltrace.so - must not be relative
#GLTRACE_SO=/home/ts/Mesa_gltrace/src/mesa/glapi/gltrace.so
# This seems to work:
GLTRACE_SO=./gltrace.so

# Set options from command line 

VERBOSE=0
GLTRACE_LOG_CALLS=0
GLTRACE_LOG_TIME=0
GLTRACE_CHECK_ERRORS=0
export GLTRACE_LOG_CALLS GLTRACE_LOG_TIME GLTRACE_CHECK_ERRORS

if [ $# -eq 0 ]; then
    echo -e $usage
    exit
fi

while getopts "hctevl:" options; do
    case $options in
	h) echo -e $usage
	    exit 1;;
	c) GLTRACE_LOG_CALLS=1;;
	t) GLTRACE_LOG_TIME=1;;
	e) GLTRACE_CHECK_ERRORS=1;;
	l) GLTRACE_LOGFILE=$OPTARG
	    export GLTRACE_LOGFILE;;
	v) VERBOSE=1;;
	*) echo -e $usage
	    exit 1;;
    esac
done

# Remove the parsed args
shift $(($OPTIND-1))

if [ ! -r $GLTRACE_SO ]; then
    echo "Error: The gltrace.so file '$GLTRACE_SO' is missing!"
    exit 1
fi

export LD_PRELOAD=$GLTRACE_SO

if [ $VERBOSE -eq 1 ]; then
 echo GLTRACE_LOG_CALLS=$GLTRACE_LOG_CALLS
 echo GLTRACE_LOG_TIME=$GLTRACE_LOG_TIME
 echo GLTRACE_CHECK_ERRORS=$GLTRACE_CHECK_ERRORS
 echo GLTRACE_LOGFILE=$GLTRACE_LOGFILE
 echo LD_PRELOAD=$LD_PRELOAD
 echo command=$*
fi

exec $*