1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
use crate::cassandra::error::*;
use crate::cassandra::statement::Statement;
use crate::cassandra::util::{Protected, ProtectedInner, ProtectedWithSession};
use crate::{cassandra::data_type::ConstDataType, session_scope, Session};
use crate::cassandra_sys::cass_prepared_bind;
use crate::cassandra_sys::cass_prepared_free;
use crate::cassandra_sys::cass_prepared_parameter_data_type;
use crate::cassandra_sys::cass_prepared_parameter_data_type_by_name_n;
use crate::cassandra_sys::cass_prepared_parameter_name;
use crate::cassandra_sys::CassPrepared as _PreparedStatement;
use std::os::raw::c_char;
use std::{mem, slice, str};
#[derive(Debug)]
pub struct PreparedStatement<T = session_scope::Bound>(*const _PreparedStatement, Session<T>);
unsafe impl<T: Send> Send for PreparedStatement<T> {}
unsafe impl<T: Sync> Sync for PreparedStatement<T> {}
impl<T> Drop for PreparedStatement<T> {
fn drop(&mut self) {
unsafe { cass_prepared_free(self.0) }
}
}
impl<T> ProtectedInner<*const _PreparedStatement> for PreparedStatement<T> {
#[inline(always)]
fn inner(&self) -> *const _PreparedStatement {
self.0
}
}
impl<T> ProtectedWithSession<*const _PreparedStatement, T> for PreparedStatement<T> {
#[inline(always)]
fn build(inner: *const _PreparedStatement, session: Session<T>) -> Self {
if inner.is_null() {
panic!("Unexpected null pointer")
};
PreparedStatement(inner, session)
}
#[inline(always)]
fn session(&self) -> &Session<T> {
&self.1
}
}
impl<T: Clone> PreparedStatement<T> {
pub fn bind(&self) -> Statement<T> {
unsafe { Statement::build(cass_prepared_bind(self.inner()), self.session().clone()) }
}
pub fn session(&self) -> &Session<T> {
ProtectedWithSession::session(self)
}
pub fn parameter_name(&self, index: usize) -> Result<&str> {
unsafe {
let mut name = mem::zeroed();
let mut name_length = mem::zeroed();
cass_prepared_parameter_name(self.0, index, &mut name, &mut name_length)
.to_result(())
.and_then(|_| {
Ok(str::from_utf8(slice::from_raw_parts(
name as *const u8,
name_length as usize,
))?)
})
}
}
pub fn parameter_data_type(&self, index: usize) -> Option<ConstDataType> {
unsafe {
let inner = cass_prepared_parameter_data_type(self.0, index);
if inner.is_null() {
None
} else {
Some(ConstDataType::build(inner))
}
}
}
pub fn parameter_data_type_by_name(&self, name: &str) -> Option<ConstDataType> {
unsafe {
let name_ptr = name.as_ptr() as *const c_char;
let inner = cass_prepared_parameter_data_type_by_name_n(self.0, name_ptr, name.len());
if inner.is_null() {
None
} else {
Some(ConstDataType::build(inner))
}
}
}
}