Specification: Ballerina Constraint Library

Owners: @TharmiganK @shafreenAnfar @chamil321
Reviewers: @shafreenAnfar @chamil321
Created: 2022/08/09
Updated: 2023/10/26
Edition: Swan Lake

Introduction

This is the specification for the Constraint standard library of Ballerina language, which provides APIs to validate the values that have been assigned to Ballerina types.

The Constraint library specification has evolved and may continue to evolve in the future. The released versions of the specification can be found under the relevant GitHub tag.

If you have any feedback or suggestions about the library, start a discussion via a GitHub issue or in the Discord server. Based on the outcome of the discussion, the specification and implementation can be updated. Community feedback is always welcome. Any accepted proposal, which affects the specification is stored under /docs/proposals. Proposals under discussion can be found with the label type/proposal in GitHub.

The conforming implementation of the specification is released and included in the distribution. Any deviation from the specification is considered a bug.

Contents

  1. Overview
  2. Constraint annotations
  3. validate function
  4. Custom error messages

1. Overview

Validating user input is a common requirement in most applications. This can prevent user entry errors before the app attempts to process the data. In Ballerina, such validations can be carried out by the Constraint library.

This specification elaborates on the functionalities provided by the Constraint library and how the library validates the constraints in Ballerina types.

2. Constraint annotations

The Constraint library provides different annotations for different basic types e.g. @constraint:String for strings, @constraint:Array for arrays etc. Each of these is defined as a separate associated record type.

// Annotation
public annotation StringConstraints String on type, record field;

// Associated Record Type
type StringConstraints record {|
   int length?;
   int minLength?;
   int maxLength?;
|};

These annotations are attached to type or record field attachment points.

// Constriant attached to a type
@constraint:Int {
    minValue: 18
}
type Age int;

type User record {|
    // Constraint attached to a record field
    @constraint:String {
        minLength: 1,
        maxLength: 10
    }
    string name;

    // Constraint attached to a type used as a record field
    Age age;
|};

The following table illustrates all the supported annotations with respect to the Ballerina types.

Ballerina TypeAnnotation
int@constraint:Int
float@constraint:Float
int|float|decimal@constraint:Number
string@constraint:String
any[]@constraint:Array

2.1. Constraint annotation on number types

The Constraint library offers the following three constraint annotations on number types such as int, float and decimal.

// Integer constraints which applies only when the value is `int`.
// The constraint values are also type of `int`
public type IntConstraints record {|
    int minValue?;
    int maxValue?;
    int minValueExclusive?;
    int maxValueExclusive?;
    int maxDigits?;
|};

// Float constraints which applies only when the value is `float`.
// The constraint values are also type of `float`
public type FloatConstraints record {|
    float minValue?;
    float maxValue?;
    float minValueExclusive?;
    float maxValueExclusive?;
    int maxIntegerDigits?;
    int maxFractionDigits?;
|};

// Number constraints which applies when the value is `int|float|decimal`.
// The constraint values are type of `decimal`
public type NumberConstraints record {|
    decimal minValue?;
    decimal maxValue?;
    decimal minValueExclusive?;
    decimal maxValueExclusive?;
    int maxIntegerDigits?;
    int maxFractionDigits?;
|};

All the supported constraints on number types are illustrated in the following table.

Constraint nameSemantics (v is value being
constrained, c is constraint value)
minValuev >= c
maxValuev <= c
minValueExclusivev > c
maxValueExclusivev < c
maxDigitsNumber of digits in v <= c
maxIntegerDigitsNumber of integer digits in v <= c
maxFractionDigitsNumber of fraction digits in v <= c

When defining constraints on number types, either minValue or minValueExclusive can be present. Similarly, either maxValue or maxValueExclusive can be present.

Example :

// Integer constraint
@constraint:Int {
    minValue: 18
}
type Age int;

// Float constraint
@constraint:Float {
    minValue: 0.0
}
type Area float;

// Number constraint
@constraint:Number {
    minValue: 0,
    maxValue: 100
}
type Percentage int|decimal;

2.2. Constraints annotation on string type

The following is the associated record type definition for @constraint:String annotation.

// String constraints which applies only when the value is `string`.
public type StringConstraints record {|
    int length?;
    int minLength?;
    int maxLength?;
    string:RegExp pattern?;
|};

All the supported constraints on string type are illustrated in the following table.

Constraint nameSemantics (v is value being
constrained, c is constraint value)
lengthv.length() == c
minLengthv.length() >= c
maxLengthv.length() <= c
patternv is a full match of regex c

When defining constraints on string type, if the length constraint is present then minLength or maxLength are not allowed.

Example :

@constraint:String {
    minLength: 5,
    maxLength: 10,
    pattern: re `[a-z0-9](_?[a-z0-9])+`
}
type Username string;

2.3. Constraint annotation on array types

The Constraint library offers the @constraint:Array annotation on Ballerina anydata[] types. The following is the associated record type definition.

public type ArrayConstraints record {|
    int length?;
    int minLength?;
    int maxLength?;
|};

All the supported constraints on array types are illustrated in the following table.

Constraint nameSemantics (v is value being
constrained, c is constraint value)
lengthv.length() == c
minLengthv.length() >= c
maxLengthv.length() <= c

When defining constraints on array types, if the length constraint is present then minLength or maxLength are not allowed.

Example :

@constraint:Array {
    minLength: 1,
    maxLength: 10
}
type Names string[];

2.4. Constraint annotation on Date record types

The Constraint library offers the @constraint:Date annotation on Ballerina record types which are structurally equivalent to the following record type.

type Date record {
    int year; // Allowed -999999999 to 999999999
    int month; // Allowed 1 to 12
    int day; // Allowed 1 to 31
};

The annotation validates the date according to the Gregorian calendar rules. The following is a sample usage of this annotation.

// Can be applied on a refernced type
@constraint:Date
time:Date MyDate;

// Can be applied on a record type
@constraint:Date
type DateTime record {|
    int year;
    int month;
    int day;
    int hour;
    int minute;
    int second;
|};

// Can be applied to a record field
type User record {
    int id;
    string name;
    @constraint:Date
    time:Date lastLogin;
};

Other than validating the date, it provides an option field to specify additional constraints. The following is the associated record type definition.

enum DateOption {
   PAST,
   PAST_OR_PRESENT,
   FUTURE,
   FUTURE_OR_PRESENT
}

public type DateConstraints record {|
    DateOption option?;
|};

All the supported date constraint options are illustrated in the following table.

Date optionSemantics (v is value being
constrained)
PASTv < today
PAST_OR_PRESENTv <= today
FUTUREv > today
FUTURE_OR_PRESENTv >= today

Example :

type Person record {|
   string name;
   string address;
    @constraint:Date {
         option: constraint:PAST
    }
    time:Date dob;
|};

3. validate function

The Constraint library has a public function : validate which should be explicitly called by the developer to validate the constraints. If the validation is successful then this function returns the validated value, else a constraint:Error is returned. Additionally, if the type of the value is different from the expected return type then the value will be cloned with the contextually expected type before the validation.

The following is the definition of the validate function.

public isolated function validate(anydata value, typedesc<anydata> td = <>) returns td|Error {
    // ...
}

Example :

type Person record {|
    @constraint:String {
        minLength: 5,
        maxLength: 10
    }
    string name;
|};

public function func1() returns error? {
    Person p1 = {name: "Alice"};
    p1 = check constraint:validate(p1);
    
    // Error case
    Person p2 = {name: "Bob"};
    // This will return an error since the length is less than 5
    p2 = check constraint:validate(p2);
}

4. Custom error messages

The Constraint library provides default error messages for constraint violations. The default error message include the JSON path of the violated constraint with the constraint name. When there are multiple constraint failures the failed constraints are separated by a comma. The following is an example of a default error message.

Employee employee = {
  name: "a", // minimum length is 4
  age: 10, // minimum value is 18
  interns: ["intern1", "intern2", "intern3", "intern4"], // maximum length is 3
  dob: {
      year: 2220,
      month: 10,
      day: 2
  } // should be a past date
}

Employee|error validation = constraint:validate(employee);

Error message : Validation failed for '$.name:minLengeth','$.age:minValue','$.interns:maxLength','$.dob:pastDate' constraint(s).

The Constraint library allows the developer to provide custom error messages for each constraint. This can be done by defining the constraint as a record with value and message fields. The value field should be the constraint value and the message field should be the custom error message. The following is an example of defining a custom error message:

@constraint:String {
    minLength : {
        value : 5,
        message : "UserName should have atleast 5 characters"
    },
    maxLength : {
        value : 12,
        message : "UserName can have atmost 12 characters"
    },
    pattern : {
        value : re `^[a-zA-Z0-9]+$`,
        message : "Only alpha numeric characters are allowed in UserName"
    }
}
type UserName string;

In the case of Date constraints, the message field can be used as an annotation field to provide a custom error message for invalid dates.

@constraint:Date {
    option : {
        value : constraint:PAST,
        message : "Date of Birth should be in the past" // Only returned when the past date constraint is violated
    },
    message : "Invalid date found for Date of Birth"
}
type DateOfBirth time:Date;