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
mod bind;
mod raw;
mod stmt;
mod url;
use self::raw::RawConnection;
use self::stmt::iterator::StatementIterator;
use self::stmt::Statement;
use self::url::ConnectionOptions;
use super::backend::Mysql;
use crate::connection::statement_cache::{MaybeCached, StatementCache};
use crate::connection::*;
use crate::expression::QueryMetadata;
use crate::query_builder::bind_collector::RawBytesBindCollector;
use crate::query_builder::*;
use crate::result::*;
use crate::RunQueryDsl;
#[cfg(feature = "mysql")]
#[allow(missing_debug_implementations, missing_copy_implementations)]
/// A connection to a MySQL database. Connection URLs should be in the form
/// `mysql://[user[:password]@]host/database_name[?unix_socket=socket-path&ssl_mode=SSL_MODE*&ssl_ca=/etc/ssl/certs/ca-certificates.crt&ssl_cert=/etc/ssl/certs/client-cert.crt&ssl_key=/etc/ssl/certs/client-key.crt]`
///
///* `host` can be an IP address or a hostname. If it is set to `localhost`, a connection
/// will be attempted through the socket at `/tmp/mysql.sock`. If you want to connect to
/// a local server via TCP (e.g. docker containers), use `0.0.0.0` or `127.0.0.1` instead.
/// * `unix_socket` expects the path to the unix socket
/// * `ssl_ca` accepts a path to the system's certificate roots
/// * `ssl_cert` accepts a path to the client's certificate file
/// * `ssl_key` accepts a path to the client's private key file
/// * `ssl_mode` expects a value defined for MySQL client command option `--ssl-mode`
/// See <https://dev.mysql.com/doc/refman/5.7/en/connection-options.html#option_general_ssl-mode>
///
/// # Supported loading model implementations
///
/// * [`DefaultLoadingMode`]
///
/// As `MysqlConnection` only supports a single loading mode implementation
/// it is **not required** to explicitly specify a loading mode
/// when calling [`RunQueryDsl::load_iter()`] or [`LoadConnection::load`]
///
/// ## DefaultLoadingMode
///
/// `MysqlConnection` only supports a single loading mode, which loads
/// values row by row from the result set.
///
/// ```rust
/// # include!("../../doctest_setup.rs");
/// #
/// # fn main() {
/// # run_test().unwrap();
/// # }
/// #
/// # fn run_test() -> QueryResult<()> {
/// # use schema::users;
/// # let connection = &mut establish_connection();
/// use diesel::connection::DefaultLoadingMode;
/// { // scope to restrict the lifetime of the iterator
/// let iter1 = users::table.load_iter::<(i32, String), DefaultLoadingMode>(connection)?;
///
/// for r in iter1 {
/// let (id, name) = r?;
/// println!("Id: {} Name: {}", id, name);
/// }
/// }
///
/// // works without specifying the loading mode
/// let iter2 = users::table.load_iter::<(i32, String), _>(connection)?;
///
/// for r in iter2 {
/// let (id, name) = r?;
/// println!("Id: {} Name: {}", id, name);
/// }
/// # Ok(())
/// # }
/// ```
///
/// This mode does **not support** creating
/// multiple iterators using the same connection.
///
/// ```compile_fail
/// # include!("../../doctest_setup.rs");
/// #
/// # fn main() {
/// # run_test().unwrap();
/// # }
/// #
/// # fn run_test() -> QueryResult<()> {
/// # use schema::users;
/// # let connection = &mut establish_connection();
/// use diesel::connection::DefaultLoadingMode;
///
/// let iter1 = users::table.load_iter::<(i32, String), DefaultLoadingMode>(connection)?;
/// let iter2 = users::table.load_iter::<(i32, String), DefaultLoadingMode>(connection)?;
///
/// for r in iter1 {
/// let (id, name) = r?;
/// println!("Id: {} Name: {}", id, name);
/// }
///
/// for r in iter2 {
/// let (id, name) = r?;
/// println!("Id: {} Name: {}", id, name);
/// }
/// # Ok(())
/// # }
/// ```
pub struct MysqlConnection {
raw_connection: RawConnection,
transaction_state: AnsiTransactionManager,
statement_cache: StatementCache<Mysql, Statement>,
}
// mysql connection can be shared between threads according to libmysqlclients documentation
#[allow(unsafe_code)]
unsafe impl Send for MysqlConnection {}
impl SimpleConnection for MysqlConnection {
fn batch_execute(&mut self, query: &str) -> QueryResult<()> {
self.raw_connection
.enable_multi_statements(|| self.raw_connection.execute(query))
}
}
impl ConnectionSealed for MysqlConnection {}
impl Connection for MysqlConnection {
type Backend = Mysql;
type TransactionManager = AnsiTransactionManager;
/// Establishes a new connection to the MySQL database
/// `database_url` may be enhanced by GET parameters
/// `mysql://[user[:password]@]host[:port]/database_name[?unix_socket=socket-path&ssl_mode=SSL_MODE*&ssl_ca=/etc/ssl/certs/ca-certificates.crt&ssl_cert=/etc/ssl/certs/client-cert.crt&ssl_key=/etc/ssl/certs/client-key.crt]`
///
/// * `host` can be an IP address or a hostname. If it is set to `localhost`, a connection
/// will be attempted through the socket at `/tmp/mysql.sock`. If you want to connect to
/// a local server via TCP (e.g. docker containers), use `0.0.0.0` or `127.0.0.1` instead.
/// * `unix_socket` expects the path to the unix socket
/// * `ssl_ca` accepts a path to the system's certificate roots
/// * `ssl_cert` accepts a path to the client's certificate file
/// * `ssl_key` accepts a path to the client's private key file
/// * `ssl_mode` expects a value defined for MySQL client command option `--ssl-mode`
/// See <https://dev.mysql.com/doc/refman/5.7/en/connection-options.html#option_general_ssl-mode>
fn establish(database_url: &str) -> ConnectionResult<Self> {
use crate::result::ConnectionError::CouldntSetupConfiguration;
let raw_connection = RawConnection::new();
let connection_options = ConnectionOptions::parse(database_url)?;
raw_connection.connect(&connection_options)?;
let mut conn = MysqlConnection {
raw_connection,
transaction_state: AnsiTransactionManager::default(),
statement_cache: StatementCache::new(),
};
conn.set_config_options()
.map_err(CouldntSetupConfiguration)?;
Ok(conn)
}
fn execute_returning_count<T>(&mut self, source: &T) -> QueryResult<usize>
where
T: QueryFragment<Self::Backend> + QueryId,
{
#[allow(unsafe_code)] // call to unsafe function
update_transaction_manager_status(
prepared_query(&source, &mut self.statement_cache, &mut self.raw_connection).and_then(
|stmt| {
// we have not called result yet, so calling `execute` is
// fine
let stmt_use = unsafe { stmt.execute() }?;
Ok(stmt_use.affected_rows())
},
),
&mut self.transaction_state,
)
}
fn transaction_state(&mut self) -> &mut AnsiTransactionManager {
&mut self.transaction_state
}
}
#[inline(always)]
fn update_transaction_manager_status<T>(
query_result: QueryResult<T>,
transaction_manager: &mut AnsiTransactionManager,
) -> QueryResult<T> {
if let Err(Error::DatabaseError(DatabaseErrorKind::SerializationFailure, _)) = query_result {
transaction_manager
.status
.set_requires_rollback_maybe_up_to_top_level(true)
}
query_result
}
impl LoadConnection<DefaultLoadingMode> for MysqlConnection {
type Cursor<'conn, 'query> = self::stmt::iterator::StatementIterator<'conn>;
type Row<'conn, 'query> = self::stmt::iterator::MysqlRow;
fn load<'conn, 'query, T>(
&'conn mut self,
source: T,
) -> QueryResult<Self::Cursor<'conn, 'query>>
where
T: Query + QueryFragment<Self::Backend> + QueryId + 'query,
Self::Backend: QueryMetadata<T::SqlType>,
{
update_transaction_manager_status(
prepared_query(&source, &mut self.statement_cache, &mut self.raw_connection).and_then(
|stmt| {
let mut metadata = Vec::new();
Mysql::row_metadata(&mut (), &mut metadata);
StatementIterator::from_stmt(stmt, &metadata)
},
),
&mut self.transaction_state,
)
}
}
#[cfg(feature = "r2d2")]
impl crate::r2d2::R2D2Connection for MysqlConnection {
fn ping(&mut self) -> QueryResult<()> {
crate::r2d2::CheckConnectionQuery.execute(self).map(|_| ())
}
fn is_broken(&mut self) -> bool {
AnsiTransactionManager::is_broken_transaction_manager(self)
}
}
impl MultiConnectionHelper for MysqlConnection {
fn to_any<'a>(
lookup: &mut <Self::Backend as crate::sql_types::TypeMetadata>::MetadataLookup,
) -> &mut (dyn std::any::Any + 'a) {
lookup
}
fn from_any(
lookup: &mut dyn std::any::Any,
) -> Option<&mut <Self::Backend as crate::sql_types::TypeMetadata>::MetadataLookup> {
lookup.downcast_mut()
}
}
fn prepared_query<'a, T: QueryFragment<Mysql> + QueryId>(
source: &'_ T,
statement_cache: &'a mut StatementCache<Mysql, Statement>,
raw_connection: &'a mut RawConnection,
) -> QueryResult<MaybeCached<'a, Statement>> {
let mut stmt = statement_cache
.cached_statement(source, &Mysql, &[], |sql, _| raw_connection.prepare(sql))?;
let mut bind_collector = RawBytesBindCollector::new();
source.collect_binds(&mut bind_collector, &mut (), &Mysql)?;
let binds = bind_collector
.metadata
.into_iter()
.zip(bind_collector.binds);
stmt.bind(binds)?;
Ok(stmt)
}
impl MysqlConnection {
fn set_config_options(&mut self) -> QueryResult<()> {
crate::sql_query("SET time_zone = '+00:00';").execute(self)?;
crate::sql_query("SET character_set_client = 'utf8mb4'").execute(self)?;
crate::sql_query("SET character_set_connection = 'utf8mb4'").execute(self)?;
crate::sql_query("SET character_set_results = 'utf8mb4'").execute(self)?;
Ok(())
}
}
#[cfg(test)]
mod tests {
extern crate dotenvy;
use super::*;
use std::env;
fn connection() -> MysqlConnection {
dotenvy::dotenv().ok();
let database_url = env::var("MYSQL_UNIT_TEST_DATABASE_URL")
.or_else(|_| env::var("MYSQL_DATABASE_URL"))
.or_else(|_| env::var("DATABASE_URL"))
.expect("DATABASE_URL must be set in order to run unit tests");
MysqlConnection::establish(&database_url).unwrap()
}
#[test]
fn batch_execute_handles_single_queries_with_results() {
let connection = &mut connection();
assert!(connection.batch_execute("SELECT 1").is_ok());
assert!(connection.batch_execute("SELECT 1").is_ok());
}
#[test]
fn batch_execute_handles_multi_queries_with_results() {
let connection = &mut connection();
let query = "SELECT 1; SELECT 2; SELECT 3;";
assert!(connection.batch_execute(query).is_ok());
assert!(connection.batch_execute(query).is_ok());
}
#[test]
fn execute_handles_queries_which_return_results() {
let connection = &mut connection();
assert!(crate::sql_query("SELECT 1").execute(connection).is_ok());
assert!(crate::sql_query("SELECT 1").execute(connection).is_ok());
}
#[test]
fn check_client_found_rows_flag() {
let conn = &mut crate::test_helpers::connection();
crate::sql_query("DROP TABLE IF EXISTS update_test CASCADE")
.execute(conn)
.unwrap();
crate::sql_query("CREATE TABLE update_test(id INTEGER PRIMARY KEY, num INTEGER NOT NULL)")
.execute(conn)
.unwrap();
crate::sql_query("INSERT INTO update_test(id, num) VALUES (1, 5)")
.execute(conn)
.unwrap();
let output = crate::sql_query("UPDATE update_test SET num = 5 WHERE id = 1")
.execute(conn)
.unwrap();
assert_eq!(output, 1);
}
}