| C User's Guide |
cscope:Interactively Examining a C Program
cscopeis an interactive program that locates specified elements of code in C,lex, oryaccsource files. Withcscope, you can search and edit your source files more efficiently than you could with a typical editor. That's becausecscopesupports function calls--when a function is being called, when it is doing the calling--as well as C language identifiers and keywords.This chapter is a tutorial on the
cscopebrowser provided with this release and is organized into the following sections:The
cscopeProcessWhen
cscopeis called for a set of C,lex, oryaccsource files, it builds a symbol cross-reference table for the functions, function calls, macros, variables, and preprocessor symbols in those files. You can then query that table about the locations of symbols you specify. First, it presents a menu and asks you to choose the type of search you would like to have performed. You may, for instance, wantcscopeto find all the functions that call a specified function.When
cscopehas completed this search, it prints a list. Each list entry contains the name of the file, the number of the line, and the text of the line in whichcscopehas found the specified code. In our case, the list also includes the names of the functions that call the specified function. You now have the option of requesting another search or examining one of the listed lines with the editor. If you choose the latter,cscopeinvokes the editor for the file in which the line appears, with the cursor on that line. You can now view the code in context and, if you wish, edit the file as any other file. You can then return to the menu from the editor to request a new search.Because the procedure you follow depends on the task at hand, there is no single set of instructions for using
cscope. For an extended example of its use, review thecscopesession described in the next section. It shows how you can locate a bug in a program without learning all the code.Basic Use
Suppose you are given responsibility for maintaining the program
prog. You are told that an error message, out of storage, sometimes appears just as the program starts up. Now you want to usecscopeto locate the parts of the code that are generating the message. Here is how you do it.Step 1: Set Up the Environment
cscopeis a screen-oriented tool that can only be used on terminals listed in the Terminal Information Utilities (terminfo) database. Be sure you have set theTERMenvironment variable to your terminal type so thatcscopecan verify that it is listed in theterminfodatabase. If you have not done so, assign a value toTERMand export it to the shell as follows:In a Bourne shell, type:
$TERM=term_name;export TERM
In a C shell, type:
%setenv TERMterm_name
You may now want to assign a value to the
EDITORenvironment variable. By default,cscopeinvokes thevieditor. (The examples in this chapter illustrateviusage.) If you prefer not to usevi, set theEDITORenvironment variable to the editor of your choice and exportEDITOR, as follows:In a Bourne shell, type:
$EDITOR=emacs; export EDITOR
In a C shell, type:
%setenv EDITOR emacs
You may have to write an interface between
cscopeand your editor. For details, see Command-Line Syntax for Editors.If you want to use
cscopeonly for browsing (without editing), you can set theVIEWERenvironment variable topgand exportVIEWER.cscopewill then invokepginstead ofvi.An environment variable called
VPATHcan be set to specify directories to be searched for source files. See View Paths.Step 2: Invoke the
cscopeProgramBy default,
cscopebuilds a symbol cross-reference table for all the C,lex, andyaccsource files in the current directory, and for any included header files in the current directory or the standard place. So, if all the source files for the program to be browsed are in the current directory, and if its header files are there or in the standard place, invokecscopewithout arguments:
%cscope
To browse through selected source files, invoke
cscopewith the names of those files as arguments:
%cscopefile1.cfile2.cfile3.h
For other ways to invoke
cscope, see Command-Line Options.
cscopebuilds the symbol cross-reference table the first time it is used on the source files for the program to be browsed. By default, the table is stored in the filecscope.outin the current directory. On a subsequent invocation,cscoperebuilds the cross-reference only if a source file has been modified or the list of source files is different. When the cross-reference is rebuilt, the data for the unchanged files is copied from the old cross-reference, which makes rebuilding faster than the initial build, and reduces startup time for subsequent invocations.Step 3: Locate the Code
Now let's return to the task we undertook at the beginning of this section: to identify the problem that is causing the error message out of storage to be printed. You have invoked
cscope, the cross-reference table has been built. Thecscopemenu of tasks appears on the screen.The
cscopeMenu of Tasks:
Press the Return key to move the cursor down the screen (with wraparound at the bottom of the display), and
^p(Control-p) to move the cursor up; or use the up (ua) and down (da) arrow keys. You can manipulate the menu and perform other tasks with the following single-key commands:
If the first character of the text for which you are searching matches one of these commands, you can escape the command by entering a
\(backslash) before the character.Now move the cursor to the fifth menu item,
Find this text string, enter the text out of storage, and press the Return key.
cscopeFunction: Requesting a Search for a Text String:
Note Follow the same procedure to perform any other task listed in the menu except the sixth,Changethistextstring. Because this task is slightly more complex than the others, there is a different procedure for performing it. For a description of how to change a text string, see Examples.
cscopesearches for the specified text, finds one line that contains it, and reports its finding.
cscopeFunction: Listing Lines Containing the Text String:
After
cscopeshows you the results of a successful search, you have several options. You may want to change one of the lines or examine the code surrounding it in the editor. Or, ifcscopehas found so many lines that a list of them does not fit on the screen at once, you may want to look at the next part of the list. The following table shows the commands available aftercscopehas found the specified text:
Again, if the first character of the text for which you are searching matches one of these commands, you can escape the command by entering a backslash before the character.
Now examine the code around the newly found line. Enter
1(the number of the line in the list). The editor is invoked with the filealloc.cwith the cursor at the beginning of line 63 ofalloc.c.
cscopeFunction: Examining a Line of Code:
You can see that the error message is generated when the variable
pisNULL. To determine how an argument passed toalloctest()could have beenNULL, you must first identify the functions that callalloctest().Exit the editor by using normal quit conventions. You are returned to the menu of tasks. Now type
alloctestafter the fourth item,Find functions calling this function.
cscopeFunction: Requesting a List of Functions That Callalloctest():
cscopefinds and lists three such functions.
cscopeFunction:ListingFunctions That Callalloctest():
Now you want to know which functions call
mymalloc().cscopefinds ten such functions. It lists nine of them on the screen and instructs you to press the space bar to see the rest of the list.
cscopeFunction:ListingFunctions That Callmymalloc():
Because you know that the error message out of storage is generated at the beginning of the program, you can guess that the problem may have occurred in the function
dispinit()(display initialization).To view
dispinit(), the seventh function on the list, type7.
cscopeFunction: Viewingdispinit()in the Editor:
mymalloc()failed because it was called either with a very large number or a negative number. By examining the possible values ofFLDLINEandREFLINE, you can see that there are situations in which the value ofmdisprefsis negative, that is, in which you are trying to callmymalloc()with a negative number.Step 4: Edit the Code
On a windowing terminal, you may have multiple windows of arbitrary size. The error message out of storage might have appeared as a result of running
progin a window with too few lines. In other words, that may have been one of the situations in whichmymalloc()was called with a negative number. Now you want to be sure that when the program aborts in this situation in the future, it does so after printing the more meaningful error message screen too small. Edit the functiondispinit()as follows.
cscopeFunction: Correcting the Problem:
You have fixed the problem we began investigating at the beginning of this section. Now if
progis run in a window with too few lines, it does not simply fail with the unedifying error message out of storage. Instead, it checks the window size and generates a more meaningful error message before exiting.Command-Line Options
As noted,
cscopebuilds a symbol cross-reference table for the C,lex, and source files in the current directory by default. That is,
%cscope
is equivalent to:
%cscope *.[chly]
We have also seen that you can browse through selected source files by invoking
cscopewith the names of those files as arguments:
%cscopefile1.cfile2.cfile3.h
cscopeprovides command-line options with greater flexibility in specifying source files to be included in the cross-reference. When you invokecscopewith the-soption and any number of directory names (separated by commas):
%cscope -sdir1,dir2,dir3
cscopebuilds a cross-reference for all the source files in the specified directories as well as the current directory. To browse through all of the source files whose names are listed in file (file names separated by spaces, tabs, or new-lines), invokecscopewith the-ioption and the name of the file containing the list:
%cscope -ifile
If your source files are in a directory tree, use the following commands to browse through all of them:
%find . -name '*.[chly]' -print | sort >file%cscope -ifile
If this option is selected, however,
cscopeignores any other files appearing on the command-line.The
-Ioption can be used forcscopein the same way as the-Ioption tocc. See Include Files.You can specify a cross-reference file other than the default
cscope.outby invoking the-foption. This is useful for keeping separate symbol cross-reference files in the same directory. You may want to do this if two programs are in the same directory, but do not share all the same files:
%cscope -f admin.ref admin.c common.c aux.c libs.c%cscope -f delta.ref delta.c common.c aux.c libs.c
In this example, the source files for two programs,
adminanddelta, are in the same directory, but the programs consist of different groups of files. By specifying different symbol cross-reference files when you invokecscopefor each set of source files, the cross-reference information for the two programs is kept separate.You can use the
-pn option to specify thatcscopedisplay the path name, or part of the path name, of a file when it lists the results of a search. The number you give to-pstands for the last n elements of the path name you want to be displayed. The default is1, the name of the file itself. So if your current directory ishome/common, the command:
%cscope -p2
causes
cscopeto displaycommon/file1.c,common/file2.c, and so forth when it lists the results of a search.If the program you want to browse contains a large number of source files, you can use the
-boption, so thatcscopestops after it has built a cross-reference;cscopedoes not display a menu of tasks. When you usecscope -bin a pipeline with thebatch(1) command,cscopebuilds the cross-reference in the background:
%echo 'cscope -b' | batch
Once the cross-reference is built, and as long as you have not changed a source file or the list of source files in the meantime, you need only specify:
%cscope
for the cross-reference to be copied and the menu of tasks to be displayed in the normal way. You can use this sequence of commands when you want to continue working without having to wait for
cscopeto finish its initial processing.The
-doption instructscscopenot to update the symbol cross-reference. You can use it to save time if you are sure that no such changes have been made;cscopedoes not check the source files for changes.
Note Use the-doption with care. If you specify-dunder the erroneous impression that your source files have not been changed,cscoperefers to an outdated symbol cross-reference in responding to your queries.
Check the cscope(1) man page for other command-line options.
View Paths
As we have seen,
cscopesearches for source files in the current directory by default. When the environment variableVPATHis set,cscopesearches for source files in directories that comprise your view path. A view path is an ordered list of directories, each of which has the same directory structure below it.For example, suppose you are part of a software project. There is an official set of source files in directories below
/fs1/ofc. Each user has a home directory (/usr/you). If you make changes to the software system, you may have copies of just those files you are changing in/usr/you/src/cmd/prog1. The official versions of the entire program can be found in the directory/fs1/ofc/src/cmd/prog1.Suppose you use
cscopeto browse through the three files that compriseprog1, namely,f1.c,f2.c, andf3.c. You would setVPATHto/usr/youand/fs1/ofcand export it, as in:In a Bourne shell, type:
$VPATH=/usr/you:/fs1/ofc; export VPATH
In a C shell, type:
%setenv VPATH /usr/you:/fs1/ofc
You then make your current directory
/usr/you/src/cmd/prog1, and invokecscope:
%cscope
The program locates all the files in the view path. In case duplicates are found,
cscopeuses the file whose parent directory appears earlier inVPATH. Thus, iff2.cis in your directory, and all three files are in the official directory,cscopeexaminesf2.cfrom your directory, andf1.candf3.cfrom the official directory.The first directory in
VPATHmust be a prefix of the directory you will be working in, usually$HOME. Each colon-separated directory inVPATHmust be absolute: it should begin at/.
cscopeand Editor Call Stacks
cscopeand editor calls can be stacked. That is, whencscopeputs you in the editor to view a reference to a symbol and there is another reference of interest, you can invokecscopeagain from within the editor to view the second reference without exiting the current invocation of eithercscopeor the editor. You can then back up by exiting the most recent invocation with the appropriatecscopeand editor commands.Examples
This section presents examples of how
cscopecan be used to perform three tasks: changing a constant to a preprocessor symbol, adding an argument to a function, and changing the value of a variable. The first example demonstrates the procedure for changing a text string, which differs slightly from the other tasks on thecscopemenu. That is, once you have entered the text string to be changed,cscopeprompts you for the new text, displays the lines containing the old text, and waits for you to specify which of these lines you want it to change.Changing a Constant to a Preprocessor Symbol
Suppose you want to change a constant,
100, to a preprocessor symbol,MAXSIZE. Select the sixth menu item,Changethistextstring, and enter\100. The1must be escaped with a backslash because it has a special meaning (item 1 on the menu) tocscope. Now press Return.cscopeprompts you for the new text string. TypeMAXSIZE.
cscopeFunction: Changing a Text String:
cscopedisplays the lines containing the specified text string, and waits for you to select those in which you want the text to be changed.
cscopeFunction: Prompting for Lines to be Changed:
You know that the constant
100in lines 1, 2, and 3 of the list (lines 4, 26, and 8 of the listed source files) should be changed toMAXSIZE. You also know that0100inread.cand100.0inerr.c(lines 4 and 5 of the list) should not be changed. You select the lines you want changed with the following single-key commands:
In this case, enter
1,2, and3.The numbers you type are not printed on the screen. Instead,cscopemarks each list item you want to be changed by printing a>(greater than) symbol after its line number in the list.
cscopeFunction: Marking Lines to be Changed:
Now type
^dto change the selected lines.cscopedisplays the lines that have been changed and prompts you to continue.
cscopeFunction: Displaying Changed Lines of Text:
Changed lines:char s[MAXSIZE];for (i = 0; i < MAXSIZE; i++)if (c < MAXSIZE) {Press the RETURN key to continue:
When you press Return in response to this prompt,
cscoperedraws the screen, restoring it to its state before you selected the lines to be changed.The next step is to add the
#definefor the new symbolMAXSIZE. Because the header file in which the#defineis to appear is not among the files whose lines are displayed, you must escape to the shell by typing!. The shell prompt appears at the bottom of the screen. Then enter the editor and add the#define.
cscopeFunction: Exiting to the Shell:
To resume the
cscopesession, quit the editor and type^dto exit the shell.Adding an Argument to a Function
Adding an argument to a function involves two steps: editing the function itself and adding the new argument to every place in the code where the function is called.
First, edit the function by using the second menu item,
Findthisglobal definition. Next, find out where the function is called. Use the fourth menu item,Findfunctionscallingthisfunction, to obtain a list of all the functions that call it. With this list, you can either invoke the editor for each line found by entering the list number of the line individually, or invoke the editor for all the lines automatically by typing^e. Usingcscopeto make this kind of change ensures that none of the functions you need to edit are overlooked.Changing the Value of a Variable
At times, you may want to see how a proposed change affects your code.
Suppose you want to change the value of a variable or preprocessor symbol. Before doing so, use the first menu item,
FindthisCsymbol, to obtain a list of references that are affected. Then use the editor to examine each one. This step helps you predict the overall effects of your proposed change. Later, you can usecscopein the same way to verify that your changes have been made.Command-Line Syntax for Editors
cscopeinvokes thevieditor by default. You can override the default setting by assigning your preferred editor to theEDITORenvironment variable and exportingEDITOR, as described in Step 1: Set Up the Environment. However,cscopeexpects the editor it uses to have a command-line syntax of the form:
%editor +linenum filename
as does
vi. If the editor you want to use does not have this command-line syntax, you must write an interface betweencscopeand the editor.Suppose you want to use
ed. Becauseeddoes not allow specification of a line number on the command-line, you cannot use it to view or edit files withcscopeunless you write a shell script that contains the following line:
/usr/bin/ed $2
Let's name the shell script
myedit. Now set the value ofEDITORto your shell script and exportEDITOR:In a Bourne shell, type:
$EDITOR=myedit; export EDITOR
In a C shell, type:
%setenv EDITOR myedit
When
cscopeinvokes the editor for the list item you have specified, say, line 17 inmain.c, it invokes your shell script with the command-line:
myeditthen discards the line number ($1) and callsedcorrectly with the file name ($2). Of course, you are not moved automatically to line 17 of the file and must execute the appropriateedcommands to display and edit the line.Unknown Terminal Type Error
Sorry, I don't know how to deal with your "term" terminalyour terminal may not be listed in the Terminal Information Utilities (
terminfo) database that is currently loaded. Make sure you have assigned the correct value toTERM. If the message reappears, try reloading the Terminal Information Utilities.
Sorry, I need to know a more specific terminal type than "unknown"set and export the
TERMvariable as described in Step 1: Set Up the Environment.
|
Sun Microsystems, Inc. Copyright information. All rights reserved. Feedback |
Library | Contents | Previous | Next | Index |