package validate
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=1654b5cce9c367a56127094dced317f865c9562599f209f70506a32b6b65154b
sha512=467ea81c0be6057ae5b8702f739e4d4f87e2707d2e09e12abd981cc2836b0f13ebab308c68954e64ea3ce89850aa0ac6df7944b596f70287fb99bdf326edcd46
Description
Validate is an OCaml library that focuses on data validation using PPX derivers and a range of annotations for different data types. It allows developers to apply annotations for various validation rules, such as string length, numeric values, and format constraints like URLs and UUIDs. This functionality makes it suitable for a wide array of applications in OCaml development where data integrity is crucial.
README
Validate
Note: This is a preview version of the validate
library. It is still under development, and users may encounter errors. Feedback and contributions are highly appreciated during this stage.
Overview
validate
is an OCaml library designed to streamline the process of validating records, lists, or values. It primarily operates through a PPX deriver that automatically generates validators using annotations, utilizing an underlying library of helper validation functions.
Overview
OCaml varsion 5.0 or higher.
Installation
Installing validate
To install the validate
library, use OPAM with the following command:
opam install validate
After installation, you need to add validate
as a library in your project's dune file and specify validate.ppx_derive_validate
as a preprocessor. Here is an example of how to set up the dune file:
(library
(name something)
(preprocess (pps validate.ppx_derive_validate))
(libraries validate))
Annotations and Usage
The validate
library in OCaml allows for precise validation of data through a variety of annotations. For each type, the library generates a function named validate_[type_name]
which can be used to perform the validation.
Example Usage
Validating record
type test_record = {
min : string; [@min_length 2]
max : string; [@max_length 5]
numeric_list : (int [@less_than 10]) list; [@min_length 2]
...
}
[@@deriving validate, show, eq]
let example_record = { min = "ab"; max = "hello"; numeric_list = [1, 2, 3] }
let validation_result = validate_test_record example_record
In this example:
min
is a string field validated for a minimum length of 2.max
is validated for a maximum length of 5.numeric_list
is an integer list, validated for a minimum length of 2, and each element is validated to be less than 10.
Validating simple types
type list_type = ((string[@min_length 1]) list[@min_length 2]) [@@deriving validate]
let example_list = ["a"; "bc"]
let validation_result = validate_list_type example_list
In this example, validate_list_type function will validate that each string in the list has a minimum length of 1 and that the list itself has a minimum length of 2.
Validating tuples
type tuple_type = (string[@email]) * (int[@greater_than 1]) [@@deriving validate]
let example_tuple = ("example@email.com", 2)
let validation_result = validate_tuple_type example_tuple
Here, the validate_tuple_type function ensures the first element of the tuple is a valid email address and the second element is an integer greater than 1.
Categorized Annotations
String/List Annotations
@min_length
: Validates minimum length of a string/list.@max_length
: Validates maximum length of a string/list.@length_equals
: Validates length of a string/list.
String Annotations
@url
: Checks if a string is a valid URL.@uuid
: Validates a string as a UUID.@numeric
: Ensures a string contains only numeric characters.@alpha
: Checks for alphabetic characters in a string.@alphanumeric
: Requires a string to be alphanumeric.@lowercase
: Validates a string to be in lowercase.@uppercase
: Ensures a string is in uppercase.@lowercase_alphanumeric
: Validates a lowercase alphanumeric string.@uppercase_alphanumeric
: Validates an uppercase alphanumeric string.@email
: Checks if a string is a valid email.@regex
: Checks if string matches given regex
Integer/Float Annotations
@less_than
: Validates an integer/float to be less than a specified value.@less_than_or_equal
: Validates an integer/float to be less than or equal to a specified value.@greater_than
: Validates an integer/float to be greater than a specified value.@greater_than_or_equal
: Validates an integer/float to be greater than or equal to a specified value.@equal_to
: Validates an integer/float to be equal to a specified value.@not_equal_to
: Validates an integer/float to not be equal to a specified value.
Annotations for Other Types
@dive
: Used for nested record validation, allowing validation of each element within a composite structure like records or lists.
Error Handling
In validate, the validation function returns a result type, which includes an Ok value equal to the input parameter, or an error parameter. The error types are defined as follows:
base_validation_error
: Represents a basic validation error with a code and a list of parameters.
type base_validation_error = {
code : string;
params : (string * string) list
}
keyed_validation_errors
: Represents errors associated with specific keys e.g. for records key equal to field name and for tuples key is position in tuple.
type keyed_validation_errors = string * validation_error list
index_validation_error
: Represents errors indexed by an integer, typically for list validations.
type index_validation_error = int * validation_error list
validation_error
: The main error type which can be one of the following:BaseError
: Basic validation error.KeyedError
: Errors associated with specific keys.IterableError
: Errors in iterable structures like lists.GroupError
: A group of nested validation errors.
type validation_error =
| BaseError of base_validation_error
| KeyedError of keyed_validation_errors list
| IterableError of index_validation_error list
| GroupError of validation_error list
Contributing
Contributions to validate are warmly welcomed and appreciated. Whether it's opening issues for bug reports, suggesting new features, or submitting pull requests, all forms of contribution help in making validate better.