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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
#![crate_name="r2d2_mysql"]
#![crate_type="rlib"]
#![crate_type="dylib"]
extern crate mysql;
extern crate rustc_serialize as serialize;
extern crate r2d2;
use std::collections::HashMap;
use std::fmt;
use std::iter::FromIterator;
use std::rc::Rc;
use std::cell::RefCell;
use std::fmt::Debug;
use mysql::conn::QueryResult;
use mysql::consts::ColumnType;
use mysql::value::{Value,FromValue,from_value};
mod param;
mod url;
mod pool;
pub use pool::MysqlConnectionManager;
pub use param::connect;
#[derive(Debug)]
pub struct Column {
name: String,
column_type: ColumnType,
}
#[derive(Debug)]
pub struct RowSet {
pub columns: Rc<Vec<Column>>,
pub rows: RefCell<Vec<Row>>,
}
pub struct Row {
pub data: Vec<Value>,
pub rowset: Rc<RowSet>,
}
impl RowSet {
pub fn columns_ref(&self) -> &[Column] {
let ref columns = self.columns;
columns.as_ref()
}
pub fn column_index(&self, name:&str) -> Option<usize> {
self.columns.iter().position(|d| d.name == name)
}
pub fn add(&self, row:Row){
self.rows.borrow_mut().push(row);
}
pub fn column_name_map(&self) -> HashMap<usize,String> {
HashMap::from_iter(self.columns_ref().iter().map(|column| column.name.to_string()).enumerate())
}
}
impl Debug for Row {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result{
write!(fmt,"Row({})", self.data.len())
}
}
impl Iterator for RowSet {
type Item = Row;
fn next(&mut self) -> Option<Row> {
self.rows.borrow_mut().pop()
}
}
impl Row {
pub fn get_opt<I, T>(&self, idx: I) -> Option<T> where I: RowIndex + fmt::Debug + Clone, T: FromValue {
idx.idx(self).map(|index|
mysql::value::from_value::<T>(&self.data[index])
)
}
pub fn get<I, T>(&self, idx: I) -> T where I: RowIndex + fmt::Debug + Clone, T: FromValue {
let index = idx.idx(self).unwrap();
mysql::value::from_value::<T>(&self.data[index])
}
}
impl std::ops::Index<usize> for Row {
type Output = Value;
fn index<'a>(&'a self, _index: usize) -> &'a Value {
&self.data[_index]
}
}
pub trait RowIndex {
fn idx(&self, row: &Row) -> Option<usize>;
}
impl RowIndex for usize {
#[inline]
fn idx(&self, row: &Row) -> Option<usize> {
if *self >= row.rowset.columns.len() {
None
} else {
Some(*self)
}
}
}
impl<'a> RowIndex for &'a str {
#[inline]
fn idx(&self, row: &Row) -> Option<usize> {
row.rowset.column_index(*self)
}
}
trait ToRowSet {
fn to_rowset(&mut self, columns:Vec<Column>) -> Rc<RowSet>;
}
impl<'conn> ToRowSet for QueryResult<'conn> {
fn to_rowset(&mut self, columns:Vec<Column>) -> Rc<RowSet>{
let columns = Rc::new(columns);
let rowset = RowSet {
columns: columns.clone(),
rows: RefCell::new(Vec::new()),
};
let rowset = Rc::new(rowset);
for row_data in self {
let rowset = rowset.clone();
let row = Row{
data: row_data.unwrap(),
rowset: rowset.clone(),
};
rowset.add(row);
}
rowset
}
}
pub fn get_columns(columns : &Option<&[mysql::conn::Column]>) -> Vec<Column> {
let mut column_list = Vec::new();
if columns.is_some() {
columns.map(|cs|{
cs.iter().fold((),|_,c| {
column_list.push(Column{
name : String::from_utf8(c.name.clone()).unwrap(),
column_type: c.column_type,
});
()
});
});
}
column_list
}
pub fn to_rowset(mut result: QueryResult, columns : Vec<Column>) -> Rc<RowSet> {
result.to_rowset(columns)
}
#[cfg(test)]
mod test {
use mysql::conn::MyConn;
use r2d2;
use std::fmt;
use std::rc::Rc;
use std::sync::Arc;
use std::thread;
use super::{RowSet,to_rowset,get_columns,MysqlConnectionManager,connect};
const DB_URL : &'static str = "mysql://root:12345678@localhost:3306/test";
pub struct Person {
id: i64,
name:String,
not_exist:i64,
}
impl Person {
fn _fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, r#"Person{{id:{}, name:"{}", not_exist:{} }}"#, self.id, self.name,self.not_exist)
}
}
impl fmt::Debug for Person {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self._fmt(f)
}
}
fn get_connect() -> MyConn {
connect(DB_URL).unwrap()
}
fn init<'a>(conn: &'a mut MyConn){
assert!(conn.query("CREATE TEMPORARY TABLE tbl_person(\
id INT,\
name varchar(30),\
create_time DATETIME\
)").is_ok());
let _ = conn.prepare("INSERT INTO tbl_person(id,name,create_time) VALUES (?, ?, now())")
.map(|mut stmt| {
assert!(stmt.execute(&[&1,&b"tom".to_vec(),]).is_ok());
assert!(stmt.execute(&[&2,&b"amy".to_vec(),]).is_ok());
}).unwrap();
}
#[test]
fn query_any(){
let conn =&mut get_connect();
init(conn);
let sql = "drop table tbl_person";
assert!(conn.query(sql).is_ok());
}
#[test]
fn query_struct(){
let conn =&mut get_connect();
init(conn);
let sql = "select id,name,create_time from tbl_person";
let list = conn.prepare(sql).map(|mut stmt|{
let columns = get_columns(& stmt.columns_ref());
let rowset = stmt.execute(&[]).map(|qr| to_rowset(qr,columns) );
rowset.map(|rowset:Rc<RowSet>| {
let rows = rowset.rows.borrow();
rows.iter().map(|row|
Person {
id: row.get("id"),
name:row.get("name"),
not_exist:row.get_opt("not_exist").unwrap_or(-1),
}
).collect::<Vec<Person>>()
}).map_err(|err| println!("execute statement error in line:{} ! error: {:?}", line!(), err) )
}).map_err(|err| println!("prepare query error in line:{} ! error: {:?}", line!(), err) );
assert!(list.is_ok());
assert_eq!(list.unwrap().unwrap().len(),2);
}
#[test]
fn query_pool(){
let config = r2d2::config::Builder::new().pool_size(30).build();
let manager = MysqlConnectionManager::new(DB_URL).unwrap();
let pool = Arc::new(r2d2::Pool::new(config, manager).unwrap());
let mut tasks = vec![];
for _ in 0..3 {
let pool = pool.clone();
let th = thread::spawn(move || {
let mut conn = pool.get().map_err(|err| println!("get connection from pool error in line:{} ! error: {:?}", line!(), err) ).unwrap();
conn.query("select user()").map_err(|err| println!("execute query error in line:{} ! error: {:?}", line!(), err) ).unwrap();
});
tasks.push(th);
}
for th in tasks {
let _ = th.join();
}
}
}