2017-01-26 00:13:56 +00:00
|
|
|
// Copyright 2016 Mozilla
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
|
|
// specific language governing permissions and limitations under the License.
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate error_chain;
|
2017-02-08 22:04:32 +00:00
|
|
|
extern crate itertools;
|
2017-01-26 00:13:56 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
extern crate rusqlite;
|
2017-02-08 22:04:32 +00:00
|
|
|
extern crate time;
|
|
|
|
|
|
|
|
extern crate tabwriter;
|
2017-01-26 00:13:56 +00:00
|
|
|
|
|
|
|
extern crate edn;
|
2017-02-08 21:59:56 +00:00
|
|
|
extern crate mentat_core;
|
2017-01-26 00:13:56 +00:00
|
|
|
extern crate mentat_tx;
|
|
|
|
extern crate mentat_tx_parser;
|
|
|
|
|
2017-02-08 22:04:32 +00:00
|
|
|
use itertools::Itertools;
|
|
|
|
use std::iter::repeat;
|
|
|
|
|
2017-01-26 00:13:56 +00:00
|
|
|
pub mod db;
|
|
|
|
mod bootstrap;
|
|
|
|
mod debug;
|
|
|
|
mod entids;
|
|
|
|
mod errors;
|
|
|
|
mod schema;
|
|
|
|
mod types;
|
|
|
|
mod values;
|
|
|
|
|
2017-02-13 18:30:02 +00:00
|
|
|
pub use types::DB;
|
|
|
|
|
2017-01-26 00:13:56 +00:00
|
|
|
use edn::symbols;
|
|
|
|
|
2017-02-13 18:30:02 +00:00
|
|
|
// TODO: replace with sqlite3_limit. #288.
|
2017-02-08 22:04:32 +00:00
|
|
|
pub const SQLITE_MAX_VARIABLE_NUMBER: usize = 999;
|
|
|
|
|
2017-01-26 00:13:56 +00:00
|
|
|
pub fn to_namespaced_keyword(s: &str) -> Option<symbols::NamespacedKeyword> {
|
|
|
|
let splits = [':', '/'];
|
|
|
|
let mut i = s.split(&splits[..]);
|
|
|
|
match (i.next(), i.next(), i.next(), i.next()) {
|
|
|
|
(Some(""), Some(namespace), Some(name), None) => Some(symbols::NamespacedKeyword::new(namespace, name)),
|
|
|
|
_ => None
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 22:04:32 +00:00
|
|
|
|
|
|
|
/// Prepare an SQL `VALUES` block, like (?, ?, ?), (?, ?, ?).
|
|
|
|
///
|
|
|
|
/// The number of values per tuple determines `(?, ?, ?)`. The number of tuples determines `(...), (...)`.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use mentat_db::{repeat_values};
|
|
|
|
/// assert_eq!(repeat_values(1, 3), "(?), (?), (?)".to_string());
|
|
|
|
/// assert_eq!(repeat_values(3, 1), "(?, ?, ?)".to_string());
|
|
|
|
/// assert_eq!(repeat_values(2, 2), "(?, ?), (?, ?)".to_string());
|
|
|
|
/// ```
|
|
|
|
pub fn repeat_values(values_per_tuple: usize, tuples: usize) -> String {
|
|
|
|
assert!(values_per_tuple >= 1);
|
|
|
|
assert!(tuples >= 1);
|
|
|
|
assert!(values_per_tuple * tuples < SQLITE_MAX_VARIABLE_NUMBER, "Too many values: {} * {} >= {}", values_per_tuple, tuples, SQLITE_MAX_VARIABLE_NUMBER);
|
|
|
|
// Like "(?, ?, ?)".
|
|
|
|
let inner = format!("({})", repeat("?").take(values_per_tuple).join(", "));
|
|
|
|
// Like "(?, ?, ?), (?, ?, ?)".
|
|
|
|
let values: String = repeat(inner).take(tuples).join(", ");
|
|
|
|
values
|
|
|
|
}
|