Crate derive_sql
source ·Expand description
The crate derive_sql is articulated around two traits.
The trait Sqlable that defines a set of operation for 
interacting with SQL tables:
countto provide a count of the number of items in the table.selectto return an array of the items in the table.insertto insert a new item in the table.updateto update an existing item(s) with the values of the provided item.deleteto delete items in the table.delete_tableto drop the table.
Implementation of the trait should allow the user of the trait to interact with the table via the above interface…
The trait Selectable provides a possible interface for selector queries
used in the Sqlable trait. It is a possible option - but not limited
to it as the Sqlable trait uses an associated type for Selector.
This crate includes the derive macro DeriveSqlite [when compiled with the feature --features sqlite]
which provides an implementation of the Sqlable trait for SQLite as a wrapper around the rusqlite
crate.
Please see examples here and the DeriveSqlite documentation.
Features:
sqliteprovide a derive macro to implement theSqlabletrait for SQLite database (implemented as a wrapper around therusqlitecrate);
Mocking:
The example of code below shows how the trait can be mocked using mockall for unit testing purposes. The
example uses mockall external trait functionality - ie works in a code using this crate as a dependency.
Note: one has to explicitely nominates the associated type in the method definitions.
mockall::mock! {
  SqlableStruct {}
  impl derive_sql::Sqlable for SqlableStruct {
    type Item = String;
    type Error = Box<dyn std::error::Error>;
    type Selector = ();
     
    fn count(&self, s: ()) -> Result<usize, Box<dyn std::error::Error>>;
    fn select(&self, s: ()) -> Result<Vec<String>, Box<dyn std::error::Error>>;
    fn insert(&mut self, item: String) -> Result<String, Box<dyn std::error::Error>>;
    fn update(&mut self, s: (), item: String) -> Result<String, Box<dyn std::error::Error>>;
    fn delete(&mut self, s: ()) -> Result<(), Box<dyn std::error::Error>>;
    fn delete_table(&mut self) -> Result<(), Box<dyn std::error::Error>>;
  }
}
fn my_function<S>(s: &mut S) -> Result<usize, Box<dyn std::error::Error>> 
where S: derive_sql::Sqlable<Selector = (), Item = String, Error = Box<dyn std::error::Error>>,
{
  let _ = s.insert("an item".to_string())?;
  Ok(s.count(())?)
}
// Create mock
let mut mock = MockSqlableStruct::new();
// Configure mock
mock.expect_insert()
.with(mockall::predicate::eq("an item".to_string()))
.returning(|s| Ok(s));
mock.expect_count().returning(|_| Ok(11));
// Check result
assert!(matches!(my_function(&mut mock), Ok(11)));
Structs
- Convenient struct for implementing a simple filter, ie a struct that generates the content of a simple
WHERE a = valueclause - Convenient struct for implementing a limit, ie a struct that generates the content of a
LIMIT valueclause - Convenient struct for implementing am offset, ie a struct that generates the content of an
OFFSET valueclause 
Traits
- Definition of trait
Selectable. This trait outputs filter, limit and offset statement. - Definition of
Sqlabletrait to be implemented to allow interaction with SQL tables. 
Derive Macros
- Derive macro to implement the
Sqlabletrait for a struct with named fields so that instances of the struct can be saved, queried, stored to/from an SQLite database. Usesrusqlite. Requires--features sqlite.