A simple assertion utility taking advantage of the Fortran 2018 standard's introduction of variable stop codes and error termination inside pure procedures.
- To mitigate against a reason developers often cite for not writing
pureprocedures: their inability to produce output in normal execution. - To promote the enforcement of programming contracts.
This assertion utility contains three public entities:
- An
assertsubroutine, - A
characterizable_tabstract type supportingassert, and - An
intrinsic_array_tnon-abstract type extendingcharacterizable_t.
The assert subroutine
- Error-terminates with a variable stop code when a user-defined logical assertion fails,
- Includes user-supplied diagnostic data in the output if provided by the calling procedure,
- Is callable inside
pureprocedures, and - Can be eliminated during an optimizing compiler's dead-code removal phase based on a preprocessor macro:
-DUSE_ASSERTIONS=.false..
The characterizable_t type defines an as_character() deferred binding that produces character strings for use as diagnostic output from a user-defined derived type that extends characterizable_t and implements the deferred binding.
The intrinsic_array_t type that extends characterizable_t provides a convenient mechanism for producing diagnostic output from arrays of intrinsic type complex, integer, logical, or real.
See Assert's GitHub Pages site for HTML documentation generated with ford.
Two common use cases include
- Enforcing programming contracts throughout a project via runtime checks.
- Producing output in
pureprocedures for debugging purposes.
Programming can be thought of as requirements for correct execution of a procedure and assurances for the result of correct execution. The requirements and assurances might be constraints of three kinds:
- Preconditions (requirements):
logicalexpressions that must evaluate to.true.when a procedure starts execution, - Postconditions (assurances): expressions that must evaluate to
.true.when a procedure finishes execution, and - Invariants: universal pre- and postconditions that must always be true when all procedures in a class start or finish executing.
The [examples/README.md] file shows examples of writing constraints in notes on class diagrams using the formal syntax of the Object Constraint Language (OCL).
git clone git@github.com:sourceryinstitute/assert
cd assert
The following command builds Assert and runs the full test suite in a single image:
fpm test --profile release
which builds the Assert library and runs the test suite.
With gfortran and OpenCoarrays installed,
fpm test --compiler caf --profile release --runner "cafrun -n 2"
To build and test with the Numerical Algorithms Group (NAG) Fortran compiler version 7.1 or later, use
fpm test --compiler=nagfor --profile release --flag "-coarray=cosmp -fpp -f2018"
fpm test --compiler ifx --profile release --flag -coarray
fpm test --compiler flang-new --flag "-mmlir -allow-assumed-rank -O3"
fpm test --compiler nagfor --profile release --flag "-fpp -coarray=cosmp"
Because fpm uses the compiler name to determine the compiler identity and because
CCE provides one compiler wrapper, ftn, for invoking all compilers, you will
need to invoke ftn in a shell script named to identify CCE compiler. For example,
place a script named crayftn.sh in your path with the following contents and with
executable privileges set appropriately:
#!/bin/bash
ftn $@
Then build and test Assert with the command
fpm test --compiler crayftn.sh --profile release
To use Assert with other compilers, please submit an issue or pull request.
See the ./example subdirectory.
For further documentation, please see example/README.md and the tests. Also, the code in src has comments formatted for generating HTML documentation using FORD.