xtrace
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Copyright (C) 1999, 2001-2004, 2005 Free Software Foundation, Inc.
  3. # This file is part of the GNU C Library.
  4. # Contributed by Ulrich Drepper <drepper@gnu.org>, 1999.
  5. # The GNU C Library is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU Lesser General Public
  7. # License as published by the Free Software Foundation; either
  8. # version 2.1 of the License, or (at your option) any later version.
  9. # The GNU C Library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Lesser General Public License for more details.
  13. # You should have received a copy of the GNU Lesser General Public
  14. # License along with the GNU C Library; if not, write to the Free
  15. # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. # 02111-1307 USA.
  17. pcprofileso=/lib/libpcprofile.so
  18. pcprofiledump=/usr/bin/pcprofiledump
  19. TEXTDOMAIN=libc
  20. # Print usage message.
  21. do_usage() {
  22.   printf $"Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...n"
  23.   exit 0
  24. }
  25. # Refer to --help option.
  26. help_info() {
  27.   printf >&2 $"Try `xtrace --help' for more information.n"
  28.   exit 1
  29. }
  30. # Message for missing argument.
  31. do_missing_arg() {
  32.   printf >&2 $"xtrace: option `$1' requires an argument.n"
  33.   help_info
  34. }
  35. # Print help message
  36. do_help() {
  37.   printf $"Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...n"
  38.   printf $"Trace execution of program by printing currently executed function.
  39.      --data=FILE          Don't run the program, just print the data from FILE.
  40.    -?,--help              Print this help and exit
  41.       --usage             Give a short usage message
  42.    -V,--version           Print version information and exit
  43. Mandatory arguments to long options are also mandatory for any corresponding
  44. short options.
  45. For bug reporting instructions, please see:
  46. <http://www.gnu.org/software/libc/bugs.html>.n"
  47.   exit 0
  48. }
  49. do_version() {
  50.   echo 'xtrace (GNU libc) 2.3.5'
  51.   printf $"Copyright (C) %s Free Software Foundation, Inc.
  52. This is free software; see the source for copying conditions.  There is NO
  53. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  54. " "2005"
  55.   printf $"Written by %s.
  56. " "Ulrich Drepper"
  57.   exit 0
  58. }
  59. # Print out function name, file, and line number in a nicely formatted way.
  60. format_line() {
  61.   fct=$1
  62.   file=${2%%:*}
  63.   line=${2##*:}
  64.   width=$(expr $COLUMNS - 30)
  65.   filelen=$(expr length $file)
  66.   if test "$filelen" -gt "$width"; then
  67.     rwidth=$(expr $width - 3)
  68.     file="...$(expr substr $file $(expr 1 + $filelen - $rwidth) $rwidth)"
  69.   fi
  70.   printf '%-20s  %-*s  %6sn' $fct $width $file $line
  71. }
  72. # If the variable COLUMNS is not set do this now.
  73. COLUMNS=${COLUMNS:-80}
  74. # If `TERMINAL_PROG' is not set, set it to `xterm'.
  75. TERMINAL_PROG=${TERMINAL_PROG:-xterm}
  76. # The data file to process, if any.
  77. data=
  78. # Process arguments.  But stop as soon as the program name is found.
  79. while test $# -gt 0; do
  80.   case "$1" in
  81.   --d | --da | --dat | --data)
  82.     if test $# -eq 1; then
  83.       do_missing_arg $1
  84.     fi
  85.     shift
  86.     data="$1"
  87.     ;;
  88.   --d=* | --da=* | --dat=* | --data=*)
  89.     data=${1##*=}
  90.     ;;
  91.   -? | --h | --he | --hel | --help)
  92.     do_help
  93.     ;;
  94.   -V | --v | --ve | --ver | --vers | --versi | --versio | --version)
  95.     do_version
  96.     ;;
  97.   --u | --us | --usa | --usag | --usage)
  98.     do_usage
  99.     ;;
  100.   --)
  101.     # Stop processing arguments.
  102.     shift
  103.     break
  104.     ;;
  105.   --*)
  106.     printf >&2 $"xtrace: unrecognized option `$1'n"
  107.     help_info
  108.     ;;
  109.   *)
  110.     # Unknown option.  This means the rest is the program name and parameters.
  111.     break
  112.     ;;
  113.   esac
  114.   shift
  115. done
  116. # See whether any arguments are left.
  117. if test $# -eq 0; then
  118.   printf >&2 $"No program name givenn"
  119.   help_info
  120. fi
  121. # Determine the program name and check whether it exists.
  122. program=$1
  123. shift
  124. if test ! -f "$program"; then
  125.   printf >&2 $"executable `$program' not foundn"
  126.   help_info
  127. fi
  128. if test ! -x "$program"; then
  129.   printf >&2 $"`$program' is no executablen"
  130.   help_info
  131. fi
  132. # We have two modes.  If a data file is given simply print the included data.
  133. printf "%-20s  %-*s  %6sn" Function $(expr $COLUMNS - 30) File Line
  134. for i in $(seq 1 $COLUMNS); do printf -; done; printf 'n'
  135. if test -n "$data"; then
  136.   $pcprofiledump "$data" |
  137.   sed 's/this = ([^,]*).*/1/' |
  138.   addr2line -fC -e "$program" |
  139.   while read fct; do
  140.     read file
  141.     if test "$fct" != '??' -a "$file" != '??:0'; then
  142.       format_line $fct $file
  143.     fi
  144.   done
  145. else
  146.   fifo=$(mktemp -u ${TMPDIR:-/tmp}/xtrace.XXXXXX)
  147.   mkfifo -m 0600 $fifo || exit 1
  148.   trap 'rm $fifo; exit 1' SIGINT SIGTERM SIGPIPE
  149.   # Now start the program and let it write to the FIFO.
  150.   $TERMINAL_PROG -T "xtrace - $program $*" -e /bin/sh -c "LD_PRELOAD=$pcprofileso PCPROFILE_OUTPUT=$fifo $program $*; read < $fifo" &
  151.   termpid=$!
  152.   $pcprofiledump -u $fifo |
  153.   while read line; do
  154.      echo $line |
  155.      sed 's/this = ([^,]*).*/1/' |
  156.      addr2line -fC -e $program
  157.   done |
  158.   while read fct; do
  159.     read file
  160.     if test "$fct" != '??' -a "$file" != '??:0'; then
  161.       format_line $fct $file
  162.     fi
  163.   done
  164.   read -p "Press return here to close $TERMINAL_PROG($program)."
  165.   echo > $fifo
  166.   rm $fifo
  167. fi
  168. exit 0
  169. # Local Variables:
  170. #  mode:ksh
  171. # End: