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
// Copyright (c) 2017 Anatoly Ikorsky
//
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. All files in the project carrying such notice may not be copied,
// modified, or distributed except according to those terms.
use fmt;
use Arc;
use AsyncRead;
use BoxFuture;
/// Trait used to handle local infile requests.
///
/// Simple handler example:
///
/// ```rust
/// # extern crate futures;
/// # extern crate mysql_async as my;
/// # extern crate tokio;
/// # extern crate tokio_io;
///
/// # use futures::Future;
/// # use my::prelude::*;
/// # use tokio_io::AsyncRead;
/// # use std::env;
/// # fn main() {
///
/// # pub fn run<F, T, U>(future: F) -> Result<T, U>
/// # where
/// # F: Future<Item = T, Error = U> + Send + 'static,
/// # T: Send + 'static,
/// # U: Send + 'static,
/// # {
/// # let mut runtime = tokio::runtime::Runtime::new().unwrap();
/// # let result = runtime.block_on(future);
/// # runtime.shutdown_on_idle().wait().unwrap();
/// # result
/// # }
///
/// struct ExampleHandler(&'static [u8]);
///
/// impl LocalInfileHandler for ExampleHandler {
/// fn handle(&self, _: &[u8]) -> Box<Future<Item=Box<AsyncRead + Send>, Error=my::errors::Error> + Send> {
/// Box::new(futures::future::ok(Box::new(self.0) as Box<_>))
/// }
/// }
///
/// # let database_url: String = if let Ok(url) = env::var("DATABASE_URL") {
/// # let opts = my::Opts::from_url(&url).expect("DATABASE_URL invalid");
/// # if opts.get_db_name().expect("a database name is required").is_empty() {
/// # panic!("database name is empty");
/// # }
/// # url
/// # } else {
/// # "mysql://root:password@127.0.0.1:3307/mysql".into()
/// # };
///
/// let mut opts = my::OptsBuilder::from_opts(&*database_url);
/// opts.local_infile_handler(Some(ExampleHandler(b"foobar")));
///
/// let pool = my::Pool::new(opts);
///
/// let future = pool.get_conn()
/// .and_then(|conn| conn.drop_query("CREATE TEMPORARY TABLE tmp (a TEXT);"))
/// .and_then(|conn| conn.drop_query("LOAD DATA LOCAL INFILE 'baz' INTO TABLE tmp;"))
/// .and_then(|conn| conn.prep_exec("SELECT * FROM tmp;", ()))
/// .and_then(|result| result.map_and_drop(|row| my::from_row::<(String,)>(row).0))
/// .map(|(_ /* conn */, result)| {
/// assert_eq!(result.len(), 1);
/// assert_eq!(result[0], "foobar");
/// })
/// .and_then(|_| pool.disconnect())
/// .map_err(|err| match err.kind() {
/// my::errors::ErrorKind::Server(_, 1148, _) => {
/// // The used command is not allowed with this MySQL version
/// },
/// _ => panic!("{}", err),
/// });
///
/// run(future);
/// # }
/// ```
/// Object used to wrap `T: LocalInfileHandler` inside of Opts.
;