ORT-RUST(1) General Commands Manual ORT-RUST(1)

ort-rustgenerate rust module

ort-rust [config...]

Accepts ort(5) config files, defaulting to standard input, and generates a Rust module.

The output requires the "base64", "bcrypt", "json", "libsqlite3-sys", "num-derive", "num-traits", and "rusqlite" dependencies.

This mode is currently experimental.

The output is wrapped in a module "ort". In this manual, the leading "ort::" to submodules, structures, and so on is omitted for brevity. For example, the ort::Ortdb type is written as simply Ortdb.

An application context is initialised with the following Ortdb associated functions:

(dbname: &str) -> Ortdb
Creates an application-wide database instance at dbname, an existing sqlite3 database usually created with ort-sql(1). The number of password hashing rounds defaults to 12.
(dbname: &str, args: Ortargs) -> Ortdb
Like new(), but accepting args consisting of configuration parameters. If provided, it must define the bcrypt_cost property with a valid number of password hashing rounds.

The Ortdb type has the following method:

() -> Result<Ortctx>
Connect to the database. This should be invoked for each request. In applications not having a request, this corresponds to a single operator sequence. If roles are enabled, the connection will begin in the "default" role.

Each sequence of database interaction begins with the () method from the application-wide Ortdb instance.

Any insert statements are output as follows. Let "foo" be the name of the exemplar structure in this and subsequent prototypes. Its full module path is ort::objs::Foo, written here as simply Foo. Returns an error Result on database error.

(ARGS) -> Result<i64>
Insert a row and return its identifier or -1 on constraint violation. This accepts all native fields ARGS as parameters excluding rowid, which is automatically set by the database. If any fields are specified as null, they may be passed as None options.

Query statements count, iterate, list, search are output as follows. These return an error Result on database error.

() -> Result<i64>
Like () but returning a count of all rows.
db_foo_count_xxxx(ARGS) -> Result<i64>
Like (), but returning a count of responses.
(ARGS) -> Result<i64>
Like (), but returning a count of responses.
db_foo_get_xxxx(ARGS) -> Result<Option<Foo>>
The search statement named "xxxx". The function accepts variables for all binary-operator fields to check (i.e., all except for those checking for null).
db_foo_get_by_xxxx_op1_yy_zz_op2(ARGS) -> Result<Option<Foo>>
Like db_foo_get_xxxx(), but for (possibly-nested) structures. In the given example, "xxxx" is a field in the given structure with operation "op1" and "yy_zz" means a field "zz" in the nested structure "yy" with operation "op2".
(ARGS, cb) -> Result<()>
Like () but iterating over all rows.
db_foo_iterate_xxxx(ARGS, cb) -> Result<()>
Like db_foo_get_xxxx(), but invoking a function callback per row. The cb callback accepts a single parameter of type Foo and does not have a return value.
void (ARGS, cb) -> Result<()>
Like db_foo_get_by_xxxx_op1_yy_zz_op2(), but invoking a function callback for each retrieved result.
() -> Result<Vec<Foo>>
Like () but allocating and filling a queue of all rows.
db_foo_list_xxxx(ARGS) -> Result<Vec<Foo>>
Like db_foo_get_xxxx(), but producing an array of responses.
(ARGS) -> Result<Vec<Foo>>
Like db_foo_get_by_xxxx_op1_yy_zz_op2(), but producing a queue of responses.

Any update statements in the configuration are output as the following methods on Ortctx. These return an error Result on database error.

(ARGS) -> Result<bool>
Run the named update function "xxxx". The update functions are specified with update statements. The parameters passed to this function are first the fields to modify, then the fields that constrain which rows are updated. Update fields are only specified for operations for binary-operator constraints, i.e., those not checking for null status. Returns true on success, false on constraint failure.
(ARGS) -> Result<bool>
Like db_foo_update_xxxx(), but using an un-named update statement modifying "xx" with modifier "mod" constrained by "yy" with operation "op". Either or both modifiers and constraints may be empty. If modifiers are empty, all fields are modified by setting. If constraints are empty, they and the preceding "by" are omitted.

Any delete statements in the configuration are output as the following methods on Ortctx. These return an error Result on database error.

(ARGS) -> Result<()>
Run the named delete function "xxxx". The ARGS passed to this function are the fields that constrain which rows are deleted. Parameters are only specified for operations for binary-operator constraints, i.e., those not checking for null status.
(ARGS) -> Result<()>
Like db_foo_delete_xxxx(), but using an un-named delete statement constrained by "yy" with operation "op".

All database functions will return a rusqlite::Error in its Result on error. This may be examined for how to respond in the manner documented in its crate.

Any enumerations or bitfields (enum, bitf) in the configuration are output in the ort::data submodule and named as themselves. Enumerations have explicit discriminator values set to the item value. Bitfields also have explicit discriminator, but assigned the bit index (from one).

Each struct is output as a structure in the ort::data module and named as itself, such as ort::data::Foo. All items of the structure are mapped to fields with the following types:

i64
i64
Vec<u8>
i64
String
ort::data::Enumname
bigint
i64
String
f64
String

Since bitfields are combinations of bits in their respective enumerations, they are represented by i64 and not the enumeration type.

If a field is marked as null, it will be wrapped in an Option, such as Option<String>.

Objects returned by query methods are output as structures in the ort::objs module and named as in the configuration. Letting "foo" be an exemplar structure name, ort::objs::Foo, the object consists of the following.

data: Foo
The data itself.
() -> String
Export as a JSON string in a surrounding object. Export rules are governed by the role in which the object was created.

The exported object is readable by applications using the ort-javascript(1) tool.

The ort-rust utility exits 0 on success, and >0 if an error occurs.

cargo(1), ort(5)

October 25, 2021 OpenBSD 6.7