122 lines
3.1 KiB
Rust
Raw Normal View History

2015-06-14 11:33:55 -04:00
//! Interface to [SQLite][1].
//!
//! ## Example
//!
//! ```
2015-07-04 08:53:26 -04:00
//! let connection = sqlite::open(":memory:").unwrap();
2015-06-14 11:33:55 -04:00
//!
2015-07-04 08:53:26 -04:00
//! connection.execute(r#"
2015-06-14 11:33:55 -04:00
//! CREATE TABLE `users` (id INTEGER, name VARCHAR(255));
//! INSERT INTO `users` (id, name) VALUES (1, 'Alice');
//! "#).unwrap();
//!
2015-07-04 08:53:26 -04:00
//! connection.process("SELECT * FROM `users`;", |pairs| {
2015-06-14 11:33:55 -04:00
//! for &(column, value) in pairs.iter() {
//! println!("{} = {}", column, value.unwrap());
//! }
//! true
//! }).unwrap();
2015-07-04 09:27:13 -04:00
//!
//! let mut statement = connection.prepare("SELECT * FROM `users`;").unwrap();
//! while statement.step().unwrap() == sqlite::State::Row {
//! println!("id = {}", statement.read::<i64>(0).unwrap());
//! println!("name = {}", statement.read::<String>(1).unwrap());
//! }
2015-06-14 11:33:55 -04:00
//! ```
//!
//! [1]: https://www.sqlite.org
2015-05-28 17:21:43 -04:00
extern crate libc;
2015-06-12 14:23:18 -04:00
extern crate sqlite3_sys as ffi;
2015-05-28 17:21:43 -04:00
2015-06-08 09:37:44 -04:00
#[cfg(test)]
extern crate temporary;
2015-05-29 09:44:06 -04:00
macro_rules! raise(
2015-05-29 14:04:39 -04:00
($message:expr) => (return Err(::Error::from($message)));
2015-05-29 09:44:06 -04:00
);
2015-05-28 21:30:02 -04:00
2015-06-19 20:30:28 -04:00
macro_rules! error(
2015-07-04 08:53:26 -04:00
($connection:expr, $code:expr) => (
match ::error::last($connection) {
2015-06-08 17:43:31 -04:00
Some(error) => return Err(error),
None => return Err(::Error::from(::ErrorKind::from($code as isize))),
2015-06-08 17:43:31 -04:00
}
);
);
2015-06-19 20:30:28 -04:00
macro_rules! ok(
2015-07-04 08:53:26 -04:00
($connection:expr, $result:expr) => (
2015-05-29 14:33:39 -04:00
match $result {
2015-06-12 14:23:18 -04:00
::ffi::SQLITE_OK => {},
2015-07-04 08:53:26 -04:00
code => error!($connection, code),
2015-05-29 14:33:39 -04:00
}
);
2015-05-29 09:44:06 -04:00
($result:expr) => (
match $result {
2015-06-12 14:23:18 -04:00
::ffi::SQLITE_OK => {},
code => return Err(::Error::from(::ErrorKind::from(code as isize))),
2015-05-28 21:30:02 -04:00
}
2015-05-29 09:44:06 -04:00
);
);
2015-05-28 21:30:02 -04:00
2015-05-29 09:44:06 -04:00
macro_rules! path_to_c_str(
($path:expr) => ({
match $path.to_str() {
Some(path) => match ::std::ffi::CString::new(path) {
Ok(string) => string.as_ptr(),
Err(_) => raise!("failed to process a path"),
},
None => raise!("failed to process a path"),
}
});
);
2015-05-28 21:30:02 -04:00
2015-06-19 20:23:12 -04:00
macro_rules! c_str_to_str(
($string:expr) => (::std::str::from_utf8(::std::ffi::CStr::from_ptr($string).to_bytes()));
);
macro_rules! c_str_to_string(
($string:expr) => (
String::from_utf8_lossy(::std::ffi::CStr::from_ptr($string as *const _).to_bytes())
.into_owned()
);
);
2015-05-29 09:44:06 -04:00
macro_rules! str_to_c_str(
($string:expr) => (
match ::std::ffi::CString::new($string) {
Ok(string) => string.as_ptr(),
Err(_) => raise!("failed to process a string"),
2015-05-28 21:30:02 -04:00
}
2015-05-29 09:44:06 -04:00
);
);
2015-05-28 21:30:02 -04:00
2015-07-04 08:53:26 -04:00
mod connection;
mod error;
2015-05-29 11:24:01 -04:00
mod statement;
2015-05-28 19:19:08 -04:00
2015-07-04 08:53:26 -04:00
pub use connection::Connection;
pub use error::{Error, ErrorKind};
2015-06-19 11:31:29 -04:00
pub use statement::{Statement, State, Parameter, Value};
2015-05-28 19:19:08 -04:00
/// A result.
2015-06-19 11:31:29 -04:00
pub type Result<T> = std::result::Result<T, Error>;
2015-06-12 14:21:29 -04:00
/// Open a connection to a new or existing database.
2015-05-28 19:19:08 -04:00
#[inline]
2015-07-04 08:53:26 -04:00
pub fn open<'l, T: AsRef<std::path::Path>>(path: T) -> Result<Connection<'l>> {
Connection::open(path)
2015-05-28 17:21:43 -04:00
}
2015-06-08 09:37:44 -04:00
#[cfg(test)]
mod tests {
use std::path::PathBuf;
use temporary::Directory;
pub fn setup() -> (PathBuf, Directory) {
2015-06-19 20:30:28 -04:00
let directory = Directory::new("sqlite").unwrap();
2015-06-08 09:37:44 -04:00
(directory.path().join("database.sqlite3"), directory)
}
}