You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mongo-rust-driver/src/lib.rs

78 lines
1.6 KiB
Rust

#![feature(convert)]
9 years ago
extern crate libc;
extern crate mongo_c_driver_wrapper;
#[macro_use]
9 years ago
extern crate bson;
use std::result;
use std::sync::{Once,ONCE_INIT};
9 years ago
use mongo_c_driver_wrapper::bindings;
pub mod bulk_operation;
9 years ago
pub mod client;
pub mod collection;
pub mod cursor;
pub mod database;
9 years ago
pub mod flags;
pub mod read_prefs;
pub mod uri;
pub mod write_concern;
mod bsonc;
mod error;
9 years ago
pub use error::{MongoError,BsoncError,InvalidParamsError};
pub type Result<T> = result::Result<T, MongoError>;
static MONGOC_INIT: Once = ONCE_INIT;
9 years ago
/// Init mongo driver, needs to be called once before doing
/// anything else.
fn init() {
MONGOC_INIT.call_once(|| {
unsafe { bindings::mongoc_init(); }
});
9 years ago
}
pub struct CommandAndFindOptions {
pub query_flags: flags::Flags<flags::QueryFlag>,
pub skip: u32,
pub limit: u32,
pub batch_size: u32,
pub fields: Option<bson::Document>,
pub read_prefs: Option<read_prefs::ReadPrefs>
}
impl CommandAndFindOptions {
pub fn default() -> CommandAndFindOptions {
CommandAndFindOptions {
query_flags: flags::Flags::new(),
skip: 0,
limit: 0,
batch_size: 0,
fields: None,
read_prefs: None
}
}
fn fields_bsonc(&self) -> Option<bsonc::Bsonc> {
match self.fields {
Some(ref f) => Some(bsonc::Bsonc::from_document(f).unwrap()),
None => None
}
}
}
9 years ago
#[cfg(test)]
mod tests {
#[test]
fn test_init() {
super::init();
9 years ago
super::init();
}
}