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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
extern crate mysqlclient_sys as ffi;
use std::ffi::CStr;
use std::os::raw as libc;
use std::ptr::{self, NonNull};
use std::sync::Once;
use super::stmt::Statement;
use super::url::ConnectionOptions;
use result::{ConnectionError, ConnectionResult, QueryResult};
pub struct RawConnection(NonNull<ffi::MYSQL>);
impl RawConnection {
pub fn new() -> Self {
perform_thread_unsafe_library_initialization();
let raw_connection = unsafe { ffi::mysql_init(ptr::null_mut()) };
let raw_connection =
NonNull::new(raw_connection).expect("Insufficient memory to allocate connection");
let result = RawConnection(raw_connection);
let charset_result = unsafe {
ffi::mysql_options(
result.0.as_ptr(),
ffi::mysql_option::MYSQL_SET_CHARSET_NAME,
b"utf8mb4\0".as_ptr() as *const libc::c_void,
)
};
assert_eq!(
0, charset_result,
"MYSQL_SET_CHARSET_NAME was not \
recognized as an option by MySQL. This should never \
happen."
);
result
}
pub fn connect(&self, connection_options: &ConnectionOptions) -> ConnectionResult<()> {
let host = connection_options.host();
let user = connection_options.user();
let password = connection_options.password();
let database = connection_options.database();
let port = connection_options.port();
unsafe {
ffi::mysql_real_connect(
self.0.as_ptr(),
host.map(CStr::as_ptr).unwrap_or_else(|| ptr::null_mut()),
user.as_ptr(),
password
.map(CStr::as_ptr)
.unwrap_or_else(|| ptr::null_mut()),
database
.map(CStr::as_ptr)
.unwrap_or_else(|| ptr::null_mut()),
u32::from(port.unwrap_or(0)),
ptr::null_mut(),
0,
)
};
let last_error_message = self.last_error_message();
if last_error_message.is_empty() {
Ok(())
} else {
Err(ConnectionError::BadConnection(last_error_message))
}
}
pub fn last_error_message(&self) -> String {
unsafe { CStr::from_ptr(ffi::mysql_error(self.0.as_ptr())) }
.to_string_lossy()
.into_owned()
}
pub fn execute(&self, query: &str) -> QueryResult<()> {
unsafe {
ffi::mysql_real_query(
self.0.as_ptr(),
query.as_ptr() as *const libc::c_char,
query.len() as libc::c_ulong,
);
}
self.did_an_error_occur()?;
self.flush_pending_results()?;
Ok(())
}
pub fn enable_multi_statements<T, F>(&self, f: F) -> QueryResult<T>
where
F: FnOnce() -> QueryResult<T>,
{
unsafe {
ffi::mysql_set_server_option(
self.0.as_ptr(),
ffi::enum_mysql_set_option::MYSQL_OPTION_MULTI_STATEMENTS_ON,
);
}
self.did_an_error_occur()?;
let result = f();
unsafe {
ffi::mysql_set_server_option(
self.0.as_ptr(),
ffi::enum_mysql_set_option::MYSQL_OPTION_MULTI_STATEMENTS_OFF,
);
}
self.did_an_error_occur()?;
result
}
pub fn affected_rows(&self) -> usize {
let affected_rows = unsafe { ffi::mysql_affected_rows(self.0.as_ptr()) };
affected_rows as usize
}
pub fn prepare(&self, query: &str) -> QueryResult<Statement> {
let stmt = unsafe { ffi::mysql_stmt_init(self.0.as_ptr()) };
let stmt = NonNull::new(stmt).expect("Out of memory creating prepared statement");
let stmt = Statement::new(stmt);
stmt.prepare(query)?;
Ok(stmt)
}
fn did_an_error_occur(&self) -> QueryResult<()> {
use result::DatabaseErrorKind;
use result::Error::DatabaseError;
let error_message = self.last_error_message();
if error_message.is_empty() {
Ok(())
} else {
Err(DatabaseError(
DatabaseErrorKind::__Unknown,
Box::new(error_message),
))
}
}
fn flush_pending_results(&self) -> QueryResult<()> {
self.consume_current_result()?;
while self.more_results() {
self.next_result()?;
self.consume_current_result()?;
}
Ok(())
}
fn consume_current_result(&self) -> QueryResult<()> {
unsafe {
let res = ffi::mysql_store_result(self.0.as_ptr());
if !res.is_null() {
ffi::mysql_free_result(res);
}
}
self.did_an_error_occur()
}
fn more_results(&self) -> bool {
unsafe { ffi::mysql_more_results(self.0.as_ptr()) != 0 }
}
fn next_result(&self) -> QueryResult<()> {
unsafe { ffi::mysql_next_result(self.0.as_ptr()) };
self.did_an_error_occur()
}
}
impl Drop for RawConnection {
fn drop(&mut self) {
unsafe {
ffi::mysql_close(self.0.as_ptr());
}
}
}
static MYSQL_THREAD_UNSAFE_INIT: Once = Once::new();
fn perform_thread_unsafe_library_initialization() {
MYSQL_THREAD_UNSAFE_INIT.call_once(|| {
let error_code = unsafe { ffi::mysql_server_init(0, ptr::null_mut(), ptr::null_mut()) };
if error_code != 0 {
panic!("Unable to perform MySQL global initialization");
}
})
}