Parse api and api groups from sources
Project description
.. sectnum::
.. contents:: Table Of Contents
********
calltree
********
Show Callgraph of a given function
=======
Purpose
=======
The understanding of the codeflow in a larger source of codebase, requires to list the caller and callee relationships for a given function. For linux and unix developers, cscope has been the primary utitlity to search and browse through the code.
This utility uses the generated cscope database to list and display the
callgraph, which is stored in a image format.
=====
Usage
=====
Command Line
------------
Usage: python -m calltree [options] functionname
Options:
--version show program's version number and exit
-h, --help show this help message and exit
--everything Recursively show all callers and callees
-a, --showall Show all callers and callees
-c, --callers Recursively show all callers
-e, --callees Recursively show all callees
-l LEVEL, --level=LEVEL
Show Level of callers/callees
-f OUTPUTFORMAT, --format=OUTPUTFORMAT
output format jpg/png
-o OUTPUTDIR, --outputdir=OUTPUTDIR
Storage directory for output files
-d SOURCEDB, --db=SOURCEDB
cscope database (cscope.out)
.. code-block::
import calltree
f = calltree.calltree.calltree()
f.showtree()
f.showgraph()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
calltree-0.2.tar.gz
(4.8 kB
view hashes)
Built Distribution
calltree-0.2.linux-x86_64.exe
(66.7 kB
view hashes)