| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Chapter 12 Reporting and Data Mining | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Perforce's reporting commands supply information on all data stored within the depot. There are many reporting commands; in fact, there are almost as many reporting commands as there are action commands. These commands have been discussed throughout the manual; this chapter presents the same commands and provides additional information for each command. Tables in each section contain answers to questions of the form "How do I find information about...?"
Many of the reporting commands have numerous options; discussion of all options for each command is beyond the scope of this manual. For a full description of any particular command, please consult the Perforce Command Reference, or type p4 help command at the command line. One previously mentioned note on syntax is worth repeating here: any filespec argument in Perforce commands, as in will match any file pattern that is supplied in local syntax, depot syntax, or client syntax, with any Perforce wildcards. Brackets around filespec means that the file specification is optional.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Files | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The commands that report on files fall into two categories: those that give information about file contents, (e.g. p4 print, p4 diff), and those that supply information on file metadata, the data that describe a file with no reference to content (e.g. p4 files, p4 filelog). The first set of reporting commands discussed in this section describes file metadata; the second set describes file contents.
File MetadataBasic File InformationTo view information about single revisions of one or more files, use p4 files. This command provides the locations of the files within the depot, the actions (add, edit, delete, etc.) on those files at the specified revisions, the changelists the specified file revisions were submitted in, and the files' types. The output has this appearance://depot/README#5 - edit change 6 (text) p4 files requires one or more filespec arguments. Filespec arguments can, as always, be provided in Perforce or local syntax, but the output will always report the corresponding files within the depot. If no revision number is provided, the head revision will be used. Unlike most other commands, p4 files will describe deleted revisions, instead of suppressing information about deleted files.
File Revision HistoryThe revision history of a file is provided by p4 filelog. One or more file arguments must be provided, and since the point of p4 filelog is to list information about each revision of particular files, file arguments to this command may not contain a revision specification.The output of p4 filelog has this form:
For each file that matches the filespec argument, the complete list of file revisions is presented, along with the number of the changelist that the revision was submitted in, the date of submission, the user who submitted the revision, the file's type at that revision, and the first few characters of the changelist description. With the -l flag, the entire description of each changelist is printed:
Opened FilesTo see which files are currently opened within a client workspace, use p4 opened. For each opened file within the client workspace that matches a filepattern argument, p4 opened will print a line like the following://depot/elm_proj/README - edit default change (text) Each opened file is described by its depot name and location, the operation that the file is opened for (add, edit, delete, branch, or integrate), which changelist the file is included in, and the file's type.
Relationships Between Client and Depot FilesIt is often useful to know how the client and depot are related at a particular moment in time. Perhaps you simply want to know where a particular client file is mapped to within the depot, or you may want to know whether or not the head revision of a particular depot file has been copied to the client. The commands that express the relationship between client and depot files are p4 where, p4 have, and p4 sync -n. The first of these commands, p4 where, shows the mappings between client workspace files, depot files, and local OS syntax. p4 have tells you which depot files and revisions are available within your client workspace, and p4 sync -n describes which files would be read into your client workspace the next time you perform a p4 sync.All these commands can be used with or without filespec arguments. p4 sync -n is the only command in this set that allows revision specifications on the filespec arguments. The output of p4 where filename looks like this: //depot/elm_proj/doc/Ref.guide  //edk/doc/Ref.guide /usr/edk/doc/Ref.guide The first part of the output is the location of the file in depot syntax; the second part is the location of the same file in client syntax, and the third is the location of the file in local OS syntax. p4 have's output has this form: //depot/doc/Ref.txt#3 - /u1/rlo/edk/elm/doc/Ref.txt and p4 sync -n provides output like:
//depot/doc/Ref.txt#3
File ContentsContents of a Single RevisionThe contents of any file revision within the depot can be viewed with p4 print. This command simply prints the contents of the file to standard output, or to the specified output file, along with a one-line banner that describes the file. The banner can be removed by passing the -q flag to p4 print. When printed, the banner has this format://depot/elm_proj/README#23 - edit change 50 (text) p4 print takes a mandatory file argument, which can include a revision specification; The file will be printed at the specified revision; if no revision is specified, the head revision will be printed.
File Content ComparisonsA client workspace file can be compared to any revision of the same file within in the depot with p4 diff. This command takes a filespec argument; if no revision specification is supplied, the workspace file is compared against the revision last read into the workspace.The p4 diff command has many options available; only a few are described in the table below. For more details, please consult the Perforce Command Reference. Whereas p4 diff compares a client workspace file against depot file revisions, p4 diff2 can be used to compare any two revisions of a file. It can even be used to compare revisions of different files. p4 diff2 takes two file arguments; wildcards are allowed, but any wildcards in the first file argument must be matched with a corresponding wildcard in the second. This makes it possible to compare entire trees of files. There are many more flags to p4 diff then are described below. For a full listing, please type p4 help diff at the command line, or consult the Perforce Command Reference.
The last example above bears further explanation; to understand how this works, it is necessary to discuss how Perforce implements and calls underlying diff routines. Perforce uses two separate diffs: one is built into the p4d server, and the other is used by the p4 client. Both diffs contain identical, proprietary code, but are used by separate sets of commands. The client diff is used by p4 diff and p4 resolve, and the server diff is used by p4 describe, p4 diff2, and p4 submit. Perforce's built-in diff routine allows three -d<flag> flags: -du, -dc, and -dn; both p4 diff and p4 diff2 allow any of these flags to be specified. These flags behave identically to the corresponding flags in the standard UNIX diff. Although the server must always use Perforce's internal diff routine, the client diff can be set to any external diff program by pointing the P4DIFF environment variable to the full path name of the desired executable. Any flags used by the external diff can be passed to it with p4 diff's -d flag. Flags are passed to the underlying diff according to the following rules:
| Changelists
Two separate commands are used to describe changelists. The first, p4 changes, lists changelists that meet particular criteria, without describing the files or jobs that make up the changelist. The second command, p4 describe, lists the files and jobs affected by a single changelist. These commands are described below.
| Changelists that Meet Particular CriteriaTo view a list of changelists that meet certain criteria, such as changelists with a certain status, or changelists that affect a particular file, use p4 changes. The output looks like the following:
Change 36 on 1997/09/29 by edk@eds_elm 'Changed filtering me'
By default, p4 changes displays an aggregate report containing one line for every changelist known to the system, but command line flags and arguments can be used to limit the changelists displayed to those of a particular status, or those affecting a particular file, or the last n changelists. Currently, the output can't be restricted to changelists submitted by particular users, although simple shell or Perl scripts can be written to implement this. |
| Files and Jobs Affected by ChangelistsTo view a list of files and jobs affected by a particular changelist, along with the diffs of the new file revisions and the previous revisions, use p4 describe. Its output looks like this:
This output is quite lengthy; a shortened form that eliminates the file diffs can be generated with p4 describe -s changenum. |
| Labels
Reporting on labels is accomplished with a very small set of commands. The only command that reports only on labels, p4 labels, prints its output in the following format:
|
Label lisas_temp 1997/10/03 'Created by lisag'... <etc.>
| Branch and Integration Reporting
The plural form command of branch, p4 branches, lists the different branches in the system, along with their owners, dates created, and descriptions. Separate commands are used to list files within a branched codeline, to describe which files have been integrated, and to perform other branch-related reporting. The table below describes the most commonly used commands for branch- and integration- related reporting. |
1 In this case, the filespec should be presented in depot syntax,
and should represent the branched codeline. For example, if a codeline had been branched to //depot/r22/...,
then a list of all files in the branched codeline would be obtained with p4 files //depot/r22/....
|
| Job Reporting
Job reporting is accomplished with two commands. The first, p4 jobs, reports on all jobs known to the system; the second command, p4 fixes, reports only on those jobs that have been attached to changelists. Both these commands have numerous options.
| Basic Job InformationTo see a list of all jobs known to the system, use p4 jobs. This command produces output similar to the following:
Its output includes the jobs name, date entered, job owner, and the first 32 characters of the job description. The job status is included if the job is open or suspended; closed jobs are indicated by the absence of job status from the report.
All jobs known to the system are displayed unless command-line options are supplied. These options are described in the table below. |
Jobs, Fixes, and ChangelistsAny jobs that have been linked to a changelist with p4 change, p4 submit, or p4 fix is said to be fixed, and can be reported with p4 fixes. The output of p4 fix looks like this:
filterbug fixed by change 540 on 1997/10/22 by edk@eds_mach
A fixed job is not the same as a closed job, since open jobs can be linked to pending changelists, and pending jobs can be reopened even after the associated changelist has been submitted. To list jobs with a particular status, use p4 jobs.
| Reporting for Daemons
The Perforce change review mechanism uses the following reporting commands. Any of these commands might also be used with user-created daemons. For further information on daemons, please see chapter 11, and consult the source code of the Perforce Change Review daemon. |
| System Configuration
Three commands report on the Perforce system configuration. One command reports on all Perforce users; another prints data describing all Perforce client workspaces, and a third reports on Perforce depots.
| p4 users generates its data as follows:
Each line includes a username, an email address, the user's "real" name, and the date that Perforce was last accessed by that user. To report on client workspaces, use p4 clients:
Each line includes the client name, the date the client was last updated, the client root, and the description of the client. Depots can be reported with p4 depots. All depots known to the system are reported on; the described fields include the depot's name, its creation date, its type (local or remote), its IP address (if remote), the mapping to the local depot, and the system administrator's description of the depot.
| Special Reporting Flags
Two special flags, -o and -n, can be used with certain action commands to change their behavior from action to reporting.
| The -o flag is available with most of the Perforce commands that normally bring up forms for editing. This flag tells these commands to write the form information to standard output, instead of bringing the definition into the user's editor. The -o flag is supported by the following commands:
The -n flag prevents commands from doing their job. Instead, the commands will simply tell you what they would ordinarily do. The -n flag can be used with the following commands:
| Reporting with Scripting
Although Perforce's reporting commands are sufficient for most needs, there may be times when you want to view data in a format that Perforce doesn't directly support. In these situations, the reporting commands can be used in combination with scripts to print only the data that you want to see. Three examples are provided here.
| Comparing the Change Content of Two File SetsTo compare the "change content" of two sets of files, it is necessary to diff them externally. To do this, run p4 changes twice, once on each set of files, and then use any external diff routine to compare them.In the following example, main represents the main codeline, and r98.4 is a codeline that was originally branched from main:
This could be used to uncover which changes have been made to r98.4 that haven't been integrated back into main. Changelists Submitted by Particular UsersThe p4 changes command does not have a flag that allows only those changes submitted by particular users to be viewed, but this can be accomplished by grepping the output of p4 changes. For example, in the Korn shell, create an executable file with these contents:p4 changes | grep '.* by '$1'@ When this script is called with a username as an argument, only those changes created by that user will be printed. Listing Subdirectories of the DepotAlthough all files in the depot can be listed with p4 files, there is no option for reporting only the names of subdirectories within the depot. However, this can be accomplished with the following Perl script, which takes file arguments in either Perforce or local syntax:open(P4,"p4 files " . join(' ',@ARGV) . " |"); while(<P4>) { s@^(.*)/[^/]*#.*$@$1@; if(!exists $d{$_}) { print; $d{$_}=42; } } These scripting examples are, of course, non-exhaustive. Use scripts whenever you want to generate reports that can't be created through existing Perforce commands.
|
Please send comments and questions about this manual to
[email protected]. |
Copyright 1997, 1998 Perforce Software. All rights reserved. Last updated: 08/15/98 |