[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

F. Development Tools

Here are some tools that you might find useful while developing code.


F.1 Tags

Tags are an index to the functions and global variables declared in a program. Many editors, including Emacs and vi, can use them. The Makefile in pintos/src produces Emacs-style tags with the command make TAGS or vi-style tags with make tags.

In Emacs, use M-. to follow a tag in the current window, C-x 4 . in a new window, or C-x 5 . in a new frame. If your cursor is on a symbol name for any of those commands, it becomes the default target. If a tag name has multiple definitions, M-0 M-. jumps to the next one. To jump back to where you were before you followed the last tag, use M-*.


F.2 cscope

The cscope program also provides an index to functions and variables declared in a program. It has some features that tag facilities lack. Most notably, it can find all the points in a program at which a given function is called.

The Makefile in pintos/src produces cscope indexes when it is invoked as make cscope. Once the index has been generated, run cscope from a shell command line; no command-line arguments are normally necessary. Then use the arrow keys to choose one of the search criteria listed near the bottom of the terminal, type in an identifier, and hit Enter. cscope will then display the matches in the upper part of the terminal. You may use the arrow keys to choose a particular match; if you then hit Enter, cscope will invoke the default system editor(10) and position the cursor on that match. To start a new search, type Tab. To exit cscope, type Ctrl-d.

Emacs and some versions of vi have their own interfaces to cscope. For information on how to use these interface, visit http://cscope.sourceforge.net, the cscope home page.


F.3 CVS

CVS is a version-control system. That is, you can use it to keep track of multiple versions of files. The idea is that you do some work on your code and test it, then check it into the version-control system. If you decide that the work you've done since your last check-in is no good, you can easily revert to the last checked-in version. Furthermore, you can retrieve any old version of your code as of some given day and time. The version control logs tell you who made changes and when.

CVS is not the best version control system out there, but it's free, it's fairly easy to use, and it's already installed in most Unix-like environments.

For more information, visit the CVS home page.


F.3.1 Setting Up CVS

To set up CVS for use with Pintos on the Leland machines, start by choosing one group member as the keeper of the CVS repository. Everyone in the group will be able to use the CVS repository, but the keeper will actually create the repository, keep its files in his or her home directory, and maintain permissions for its contents.

The keeper has to perform several steps to set up the repository. First, create a new AFS group for the repository by executing pts creategroup keeper:pintos-cvs, where keeper is the keeper's Leland username. Then, add each group member to the new group by repeatedly using the command pts adduser -user username -group keeper:pintos-cvs, where username is the name of a group member. After the group is created and its members added, pts membership keeper:pintos-cvs should report that each group member is a member of the keeper:pintos-cvs group.

The keeper now creates the repository directory and gives the group members access to it. We will assume that the repository will be in a directory called cvs in the keeper's home directory. First create this directory with mkdir $HOME/cvs, then give group members access to it with fs setacl -dir $HOME/cvs -acl keeper:pintos-cvs write. Group members also need to be able to look up the cvs directory in the keeper's home directory, which can be enabled via fs setacl -dir $HOME -acl keeper:pintos-cvs l (that's letter "ell," not digit "one.").(11)

Now initialize the repository. To initialize the repository, execute cvs -d $HOME/cvs init.

Finally, import the Pintos sources into the newly initialized repository. If you have an existing set of Pintos sources you want to add to the repository, cd to its pintos directory now. Otherwise, to import the base Pintos source tree, cd to /usr/class/cs140/pintos/pintos (note the doubled pintos). After changing the current directory, execute this command:

 
cvs -d $HOME/cvs import -m "Imported sources" pintos foobar start

Here is a summary of the commands you have now executed:

 
pts creategroup keeper:pintos-cvs
pts adduser -user username -group keeper:pintos-cvs
mkdir $HOME/cvs
fs setacl -dir $HOME/cvs -acl keeper:pintos-cvs write
fs setacl -dir $HOME -acl keeper:pintos-cvs l
cvs -d $HOME/cvs init
cd /usr/class/cs140/pintos/pintos
cvs -d $HOME/cvs import -m "Imported sources" pintos foobar start

The repository is now ready for use by any group member, as described below. Keep in mind that the repository should only be accessed using CVS commands--it is not generally useful to examine them by hand, and you should definitely not modify them yourself.


F.3.2 Using CVS

To use CVS, start by check out a working copy of the contents of the CVS repository into a directory named dir. To do so, execute cvs -d ~keeper/cvs checkout -d dir pintos, where keeper is the CVS keeper's Leland username.

(If this fails due to some kind of permission problem, then run aklog and try again. If it still doesn't work, log out and back in. If that still doesn't fix the problem, the CVS repository may not be initialized properly.)

At this point, you can modify any of the files in the working copy. You can see the changes you've made with cvs diff -u. If you want to commit these changes back to the repository, making them visible to the other group members, you can use the CVS commit command. Within the pintos directory, execute cvs commit. This will figure out the files that have been changed and fire up a text editor for you to describe the changes. By default, this editor is vi, but you can select a different editor by setting the CVSEDITOR environment variable, e.g. with setenv CVSEDITOR emacs (add this line to your .cvsrc to make it permanent).

Suppose another group member has committed changes. You can see the changes committed to the repository since the time you checked it out (or updated from it) with cvs diff -u -r BASE -r HEAD. You can merge those change into your working copy using cvs update. If any of your local changes conflict with the committed changes, the CVS command output should tell you. In that case, edit the files that contain conflicts, looking for <<< and >>> that denote the conflicts, and fix the problem.

You can view the history of file in your working directory, including the log messages, with cvs log file.

You can give a particular set of file versions a name called a tag. First cd to the root of the working copy, then execute cvs tag name. It's best to have no local changes in the working copy when you do this, because the tag will not include uncommitted changes. To recover the tagged repository later, use the checkout command in the form cvs -d ~keeper/cvs checkout -r tag -d dir pintos, where keeper is the username of the CVS keeper and dir is the directory to put the tagged repository into.

If you add a new file to the source tree, you'll need to add it to the repository with cvs add file. This command does not have lasting effect until the file is committed later with cvs commit.

To remove a file from the source tree, first remove it from the file system with rm, then tell CVS with cvs remove file. Again, only cvs commit will make the change permanent.

To discard your local changes for a given file, without committing them, use cvs update -C file.

To check out a version of your repository as of a particular date, use the command cvs -d ~keeper/cvs checkout -D 'date' -d dir pintos, where keeper is the username of the CVS keeper and dir is the directory to put the tagged repository into.. A typical format for date is YYYY-MM-DD HH:MM, but CVS accepts several formats, even something like 1 hour ago.

For more information, visit the CVS home page.


F.3.3 CVS Locking

You might occasionally see a message like this while using CVS:

 
waiting for blp's lock in /afs/ir/users/b/l/blp/cvs

This normally means that more than one user is accessing the repository at the same time. CVS should automatically retry after 30 seconds, at which time the operation should normally be able to continue.

If you encounter a long wait for a lock, of more than a minute or so, it may indicate that a CVS command did not complete properly and failed to remove its locks. If you think that this is the case, ask the user in question about it. If it appears that an operation did go awry, then you (or the named user) can delete files whose names start with #cvs.rfl, #cvs.wfl, or #cvs.lock in the directory mentioned in the message. Doing so should allow your operation to proceed. Do not delete or modify other files.


F.4 VNC

VNC stands for Virtual Network Computing. It is, in essence, a remote display system which allows you to view a computing "desktop" environment not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures. It is already installed on the lab machines. For more information, look at the VNC Home Page.


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

This document was generated by on December, 29 2009 using texi2html