NOTE: This process needs to be adjusted when a tool for registration of code reviews is chosen and implemented

TableOfContents

Anchor(Background)

Background for Code Review process

The code review process was inspired by [http://satc.gsfc.nasa.gov/fi/fipage.html:NASA's ideas for code inspection]. The process has however been simplified in order to ease the transition to inspection. As the project group gains experience with inspection it is recommended that the inspection process is refined. The description focuses on code-inspection.

Anchor(Purpose)

Purpose

We use code reviews to improve correctness and stability of our code. The main purposes of code reviews are traditionally

Another equally important effect of code-reviews is

Anchor(ResourceUsage)

Resource Usage

Code review takes time, of course. The actual time spent discussing the code is typically roughly the same as is spent going over the code beforehand. Follow-up can take a varying amount of time, depending on the starting quality of the code and whether significant changes have been found necessary. Some kinds of code take longer to review than others, for instance straight-forward getter-and-setter style classes go very fast, while a review of a few lines of change in a complex method can take much longer. In the start of the NetarchiveSuite project, we kept track of the time spent preparing for and executing the review (but not doing the follow-up changes to the code). The ratio of preparation time to review time varied, but there was never more than a factor 2 difference to either side, on average the two were about the same. The number of lines of code reviewed per hour (LoC/h) varied from 88 to 300, with a mean and average value of about 170 LoC/h. Later code review times were not recorded, but is likely to be slightly faster due to a better system for taking notes.

Anchor(ReviewProcess)

Review Process

A code review consists of 2 or more persons that read the code and in a structured way identify changes that will improve the overall quality of the code. Unit test are not usually included. Code review is the third phase of implementation (following unit test writing and implementation). It is normally done when the relevant part of the code is fully implemented, i.e. fulfills all the unit tests, has been sanity tested and documented. Our process for code review contain planning, review session and follow-up as described below.

Anchor(Planning)

Planning

  1. Review participants are selected (typically before coding starts), usually only two people, namely the implementor and one person from the other institution (to facilitate knowledge exchange and avoid inbreeding of ideas).
  2. The implementor specifies the code to be reviewed (whole files or, in case of significant rework, sections of files) in the [:Code Review Process#CodeReviewOverview:Code Review Overview per Iteration]. This includes line numbers and SVN version for each file.

  3. The participants agree on a time to review.
  4. The implementor sets up or extends the [:Code Review Process#CodeReviewPagePerPage:Code Review Page per Class/JSP-page] for each file, noting date, version and areas covered.

  5. Before the review time, each participant reads the code thoroughly, noting problems that should be discussed. These problems range from lack of white space around delimiters to serious bugs or design problems.

Anchor(ReviewSession)

Review Session

This part, while central to the whole process, should not be allowed to drag on forever. If the reviewers cannot agree on how to fix a problem within a few minutes, the item should be marked as "consider how to..." rather than prolonging the discussion.

A typical review session should take no more than an hour (and most take less than that). If it takes longer, the review should be stopped and a time to continue should be agreed upon. More than an hour of straight review reduces the efficiency.

Anchor(FollowUp)

Follow-up

  1. The follow-up person goes through the list of items and handles each of them. Depending on how an item is handled, the item is marked under Status on the [link Code Review Class Page paragraph].
  2. The follow-up person mark the file as fully reviewed on the [link review page] once all items have been handled.
  3. If the implementor feels the changes are significant enough to require a new review, another review cycle starts. The first review is left as-is. This rarely happens, and should only happen when design issues have been identified and resolved during the review process.

Anchor(ReviewPages)

Review Pages (technical information)

There are two kinds of review pages:

Anchor(CodeReviewPagePerPage)

Code Review Page per Class/JSP-page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

Each class/JPS-page has its own page with all code reviews and their documentation made on the specific Class/JPS-page.

Anchor(NameCodeReviewPage)

Name of Code Review Class/JSP page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented

Each code review page is named according to the codes position in the Java project.

For classes the name is formed from the class and package name as follows

Where each part of the name starts by upper case and continuous in lower case (as WikiWords), for example

For JSP pages the name is formed from the JSP-page group and the JSP page name as follows

Where each part is of the name starts by upper case and continuous in lower case – and “-“ are skipped where letter after “-“ is written in uppercase too (as WikiWords), for example

Anchor(TablesFilledPageReview)

Code Review Tables filled for each review of a class/JSP-page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

The below tables (from [:Code_Review_Code_Page_Template:template]) keeps the information for each review of a class/JSP-page (or parts of one). If a class/JSP-page is reviewed more than once, new sections like this get added at the top of the same page. Storing the old reviews with task, date, SVN version and lines has proven useful for tracking down problematic changes and misunderstood designs.

Example is CommonDistributeChannelsReview

Anchor(CreationCodeReviewCodePage)

Creation of New Code Review Class/JSP Page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

You must use the [:Code_Review_Code_Page_Template:Code Review Class/JSP Page Template] to create a new page.

If an old review page exists on another media then this link should be referenced.

Anchor(UpdateCodeReviewPage)

Update of Existing Code Review Class/JSP Page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

If the Code Review Class Page already exists then the tables for a new review is inserted in the top of the page in order always to see newest review text first.

The page may contain a link to old review pages which is placed on another media and therefore not readable for all.

Anchor(CodeReviewOverview)

Code Review Overview per Iteration

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

Each iteration has its own page with an overview of code reviews, author of changes and who the reviewer is.

Anchor(NameCodeReviewOverview)

Name of Iteration Code Review Overview

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

Each Iteration review overview page is named according to the Iteration name.

The name is formed from the iteration number as follows

for example

Anchor(TableFilledReviewsOverview)

Code Review Overview Table Filled for each Iteration

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

The below table (from [:Code_Review_Overview_Page_Template:template]) keeps information of reviews made on a class/JSP-page within an Iteration.

Example is Iteration33ReviewsOverview

Anchor(CreationCodeReviewOverviewPage)

Creation of New Iteration Code Review Overview Page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

You must use the [:Code_Review_Overview_Page_Template:Code Review Iteration Page Template] to create a new page.

Anchor(UpdateCodeReviewOverviewPage)

Update of Existing Iteration Code Review Overview Page

Note this is taken from the current process, it will be changed according to use of a new tool for registration of code reviews is chosen and implemented BR The contents can be seen as guidence of what informaiton should be through the review

For each class/JSP-page to be reviewed, there must be added a table line describing it.

Note that the same class/JSP-page may appear several times.

Anchor(Literature)

Literature