Programming/Style

From HPC
Revision as of 11:01, 24 October 2017 by Pysdlb (talk | contribs)

Jump to: navigation , search

Programming Standards

Introduction

Coding conventions are a set of guidelines for a specific programming language that recommend programming style, practices, and methods for each aspect of a program written in that language.

Purpose

Coding standards are also an often overlooked but very critical attribute of software development. Following a consistent coding standard helps improve the quality of the overall software system. This page will lay out the basic programming style set by the Viper HPC Team.

Software production should have the following attributes:

  • Maintainability
  • Dependability
  • Efficiency
  • Usability


Life Cycle

As with all types of design there are several phases of production from inception to production (and then maintenance through software updates).

Common methodologies include waterfall, prototyping, iterative and incremental development, spiral development, agile software development, rapid application development, and extreme programming.

Requirements

This is basically the requirements of the final production software, it is what you require from the process to the production stage.

Architecture

Software architecture is concerned with deciding what has to be done, and which program component is going to do it (how something is done is left to the detailed design phase, below). This is particularly important when a software system contains more than one program since it effectively defines the interface between these various programs. It should include some consideration of any user interfaces.

Design

Easily the most important stage within the full life cycle and decisions made at this stage will have ramifications for the whole software. The main purpose of design is to fill in the details within the architectural design.

Programming Language Choice

Viper provides a large amount of different programming languages and can be extended to include software not included within this WIKI.

The usually rule here is to use the best programming language suitable for solving the task required of it.

Coding Standards

Code Layout

You should indent your code. However, it's also worth noting that it is a good idea to keep your indentation style consistent.

This is only a matter of preference. There is no "best" style that everyone should be following. Actually, the best style, is a consistent style. If you are part of a team or if you are contributing code to a project, you should follow the existing style that is being used in that project.

The indentation styles are not always completely distinct from one another. Sometimes, they mix different rules. For example, in PEAR Coding Standards, the opening bracket "{" goes on the same line as control structures, but they go to the next line after function definitions.

Versioning

The method of versioning software is as follows:

<Major version number>.<Minor version number>.<Patch number> for example 2.3.1.
  • Major version numbers change whenever there is some significant change being introduced.
  • Minor version numbers change when a new, minor feature is introduced or when a set of smaller features is rolled out.
  • Patch numbers change when a new build of the software. This is normally for small bug-fixes or the like.


The major version number always starts at 1, a number starting at 0 would indicated a pre-release and not production quality.

Version numbers allow people providing support to ascertain exactly which code a user is running.


Commenting

Commenting code is essential not only to the original author, but to maintainers of that code too and should clearly demonstrate the function of the code.

The comments should also be not complicated. The purpose of commenting is to help the person presently reading the source code.

  • Avoid obvious comments - commenting your code is essential in terms of maintainability; however, it can be overdone or just be plain redundant.
  • Code grouping - more often than not, certain tasks require a few lines of code. It is a good idea to keep these tasks within separate blocks of code, with some spaces between them.
  • Keep comments short and simple.
  • Comments should not be on every line.
  • Loops (eg. while, for,....) and variable assignments do not require commenting.
  • Comments should be written in English which is the most commonly used language among developers today.

Where to Comment:

  • Reference software tickets from our internal system and any others from suppliers as well.
  • The top of any program file - This is called the "Header Comment". It should include all the defining information about who wrote the code, and why, and when, and what it should do.
  • Above every function. - This is called the function header and provides information about the purpose of this "sub-component" of the program.
  • In line - within the code where a description is necessary and non-trivial.
  • According to the Ada coding standard (2005), "Programmers should include comment whenever it is difficult to understand the code without the comments"


Naming Conventions

All Constants within your program should be uppercase throughout:

my $VERSION = "1.1.0";

All variables should start with a lowercase

my $counter = 0;

There are two popular options with more descriptive (and therefore longer variable names):

  • camelCase: First letter of each word is capitalized, except the first word.
  • under_scores: Underscores between words, like: pgsql_connect_dbase().

The option selected here must be consistent across the program or suite of programs.


Code Units

The code that a programmer writes should be simple. This can be implemented by using:

  • Subroutines that describe primitive actions (e.g. calculateMean() ).
  • Complex logic should be avoided.
  • Commenting of non-trivial areas.

Complicated logic for achieving a simple thing should be kept to a minimum since the code might be modified by another programmer in the future.


Portability

The software should be capable of being compiled or interpreted on a number of different systems, not just Viper's architecture. If this cannot be achieved (i.e. some reliance of a certain architecture) then the program should be configurable to allow different systems to be used easily.

Any example is shown below:

my $ARCHITECTURE = "ARM";
my $NUMBER_CORES = 64;


Code Development

Code building

A best practice for building code involves daily builds and testing, or better still continuous integration, or even continuous delivery.

Testing

Testing is an integral part of software development that needs to be planned. It is also important that testing is done proactively; meaning that test cases are planned before coding starts, and test cases are developed while the application is being designed and coded.

If this is the modification of existing code, then the appropriate regression testing involving all those parts affected by the change must be carried out before re-deployment.


Debugging

Programmers tend to write the complete code and then begin debugging and checking for errors. Though this approach can save time in smaller projects, bigger and complex ones tend to have too many variables and functions that need attention. Therefore, it is good to debug every module once you are done and not the entire program. This saves time in the long run so that one does not end up wasting a lot of time on figuring out what is wrong. Unit tests for individual modules, and/or functional tests for services and applications, can help with this.


Deployment

This would involve the deployment out to Viper's cluster and the possibility of other HPCs (e.g. portability).


Further Information


Icon home.png