diesel/pg/query_builder/copy/copy_to.rs
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 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
use std::io::BufRead;
use std::marker::PhantomData;
use super::CommonOptions;
use super::CopyFormat;
use super::CopyTarget;
use crate::deserialize::FromSqlRow;
#[cfg(feature = "postgres")]
use crate::pg::value::TypeOidLookup;
use crate::pg::Pg;
use crate::query_builder::QueryFragment;
use crate::query_builder::QueryId;
use crate::row::Row;
#[cfg(feature = "postgres")]
use crate::row::{self, Field, PartialRow, RowIndex, RowSealed};
use crate::AppearsOnTable;
use crate::Connection;
use crate::Expression;
use crate::QueryResult;
use crate::Selectable;
#[derive(Default, Debug)]
pub struct CopyToOptions {
common: CommonOptions,
header: Option<bool>,
}
impl CopyToOptions {
fn any_set(&self) -> bool {
self.common.any_set() || self.header.is_some()
}
}
impl QueryFragment<Pg> for CopyToOptions {
fn walk_ast<'b>(
&'b self,
mut pass: crate::query_builder::AstPass<'_, 'b, Pg>,
) -> crate::QueryResult<()> {
if self.any_set() {
let mut comma = "";
pass.push_sql(" WITH (");
self.common.walk_ast(pass.reborrow(), &mut comma);
if let Some(header_is_set) = self.header {
pass.push_sql(comma);
// commented out because rustc complains otherwise
//comma = ", ";
pass.push_sql("HEADER ");
pass.push_sql(if header_is_set { "1" } else { "0" });
}
pass.push_sql(")");
}
Ok(())
}
}
#[derive(Debug)]
pub struct CopyToCommand<S> {
options: CopyToOptions,
p: PhantomData<S>,
}
impl<S> QueryId for CopyToCommand<S>
where
S: CopyTarget,
{
type QueryId = ();
const HAS_STATIC_QUERY_ID: bool = false;
}
impl<S> QueryFragment<Pg> for CopyToCommand<S>
where
S: CopyTarget,
{
fn walk_ast<'b>(
&'b self,
mut pass: crate::query_builder::AstPass<'_, 'b, Pg>,
) -> crate::QueryResult<()> {
pass.unsafe_to_cache_prepared();
pass.push_sql("COPY ");
S::walk_target(pass.reborrow())?;
pass.push_sql(" TO STDOUT");
self.options.walk_ast(pass.reborrow())?;
Ok(())
}
}
#[derive(Debug, Clone, Copy)]
pub struct NotSet;
pub trait CopyToMarker: Sized {
fn setup_options<T>(q: CopyToQuery<T, Self>) -> CopyToQuery<T, CopyToOptions>;
}
impl CopyToMarker for NotSet {
fn setup_options<T>(q: CopyToQuery<T, Self>) -> CopyToQuery<T, CopyToOptions> {
CopyToQuery {
target: q.target,
options: CopyToOptions::default(),
}
}
}
impl CopyToMarker for CopyToOptions {
fn setup_options<T>(q: CopyToQuery<T, Self>) -> CopyToQuery<T, CopyToOptions> {
q
}
}
/// The structure returned by [`copy_to`]
///
/// The [`load`] and the [`load_raw`] methods allow
/// to receive the configured data from the database.
/// If you don't have any special needs you should prefer using
/// the more convenient `load` method.
///
/// The `with_*` methods allow to configure the settings used for the
/// copy statement.
///
/// [`load`]: CopyToQuery::load
/// [`load_raw`]: CopyToQuery::load_raw
#[derive(Debug)]
#[must_use = "`COPY TO` statements are only executed when calling `.load()` or `load_raw()`."]
#[cfg(feature = "postgres_backend")]
pub struct CopyToQuery<T, O> {
target: T,
options: O,
}
#[cfg(feature = "postgres")]
struct CopyRow<'a> {
buffers: Vec<Option<&'a [u8]>>,
result: &'a crate::pg::connection::PgResult,
}
#[cfg(feature = "postgres")]
struct CopyField<'a> {
field: &'a Option<&'a [u8]>,
result: &'a crate::pg::connection::PgResult,
col_idx: usize,
}
#[cfg(feature = "postgres")]
impl<'f> Field<'f, Pg> for CopyField<'f> {
fn field_name(&self) -> Option<&str> {
None
}
fn value(&self) -> Option<<Pg as crate::backend::Backend>::RawValue<'_>> {
let value = self.field.as_deref()?;
Some(crate::pg::PgValue::new_internal(value, self))
}
}
#[cfg(feature = "postgres")]
impl<'a> TypeOidLookup for CopyField<'a> {
fn lookup(&self) -> std::num::NonZeroU32 {
self.result.column_type(self.col_idx)
}
}
#[cfg(feature = "postgres")]
impl RowSealed for CopyRow<'_> {}
#[cfg(feature = "postgres")]
impl RowIndex<usize> for CopyRow<'_> {
fn idx(&self, idx: usize) -> Option<usize> {
if idx < self.field_count() {
Some(idx)
} else {
None
}
}
}
#[cfg(feature = "postgres")]
impl<'a> RowIndex<&'a str> for CopyRow<'_> {
fn idx(&self, _idx: &'a str) -> Option<usize> {
None
}
}
#[cfg(feature = "postgres")]
impl<'a> Row<'a, Pg> for CopyRow<'_> {
type Field<'f> = CopyField<'f>
where
'a: 'f,
Self: 'f;
type InnerPartialRow = Self;
fn field_count(&self) -> usize {
self.buffers.len()
}
fn get<'b, I>(&'b self, idx: I) -> Option<Self::Field<'b>>
where
'a: 'b,
Self: RowIndex<I>,
{
let idx = self.idx(idx)?;
let buffer = self.buffers.get(idx)?;
Some(CopyField {
field: buffer,
result: self.result,
col_idx: idx,
})
}
fn partial_row(
&self,
range: std::ops::Range<usize>,
) -> row::PartialRow<'_, Self::InnerPartialRow> {
PartialRow::new(self, range)
}
}
pub trait ExecuteCopyToConnection: Connection<Backend = Pg> {
type CopyToBuffer<'a>: BufRead;
fn make_row<'a, 'b>(
out: &'a Self::CopyToBuffer<'_>,
buffers: Vec<Option<&'a [u8]>>,
) -> impl Row<'b, Pg> + 'a;
fn get_buffer<'a>(out: &'a Self::CopyToBuffer<'_>) -> &'a [u8];
fn execute<T>(&mut self, command: CopyToCommand<T>) -> QueryResult<Self::CopyToBuffer<'_>>
where
T: CopyTarget;
}
#[cfg(feature = "postgres")]
impl ExecuteCopyToConnection for crate::PgConnection {
type CopyToBuffer<'a> = crate::pg::connection::copy::CopyToBuffer<'a>;
fn make_row<'a, 'b>(
out: &'a Self::CopyToBuffer<'_>,
buffers: Vec<Option<&'a [u8]>>,
) -> impl Row<'b, Pg> + 'a {
CopyRow {
buffers,
result: out.get_result(),
}
}
fn get_buffer<'a>(out: &'a Self::CopyToBuffer<'_>) -> &'a [u8] {
out.data_slice()
}
fn execute<T>(&mut self, command: CopyToCommand<T>) -> QueryResult<Self::CopyToBuffer<'_>>
where
T: CopyTarget,
{
self.copy_to(command)
}
}
#[cfg(feature = "r2d2")]
impl<C> ExecuteCopyToConnection for crate::r2d2::PooledConnection<crate::r2d2::ConnectionManager<C>>
where
C: ExecuteCopyToConnection + crate::r2d2::R2D2Connection + 'static,
{
type CopyToBuffer<'a> = C::CopyToBuffer<'a>;
fn make_row<'a, 'b>(
out: &'a Self::CopyToBuffer<'_>,
buffers: Vec<Option<&'a [u8]>>,
) -> impl Row<'b, Pg> + 'a {
C::make_row(out, buffers)
}
fn get_buffer<'a>(out: &'a Self::CopyToBuffer<'_>) -> &'a [u8] {
C::get_buffer(out)
}
fn execute<T>(&mut self, command: CopyToCommand<T>) -> QueryResult<Self::CopyToBuffer<'_>>
where
T: CopyTarget,
{
C::execute(&mut **self, command)
}
}
impl<T> CopyToQuery<T, NotSet>
where
T: CopyTarget,
{
/// Copy data from the database by returning an iterator of deserialized data
///
/// This function allows to easily load data from the database via a `COPY TO` statement.
/// It does **not** allow to configure any settings via the `with_*` method, as it internally
/// sets the required options itself. It will use the binary format to deserialize the result
/// into the specified type `U`. Column selection is performed via [`Selectable`].
pub fn load<U, C>(self, conn: &mut C) -> QueryResult<impl Iterator<Item = QueryResult<U>> + '_>
where
U: FromSqlRow<<U::SelectExpression as Expression>::SqlType, Pg> + Selectable<Pg>,
U::SelectExpression: AppearsOnTable<T::Table> + CopyTarget<Table = T::Table>,
C: ExecuteCopyToConnection,
{
let io_result_mapper = |e| crate::result::Error::DeserializationError(Box::new(e));
let command = CopyToCommand {
p: PhantomData::<U::SelectExpression>,
options: CopyToOptions {
header: None,
common: CommonOptions {
format: Some(CopyFormat::Binary),
..Default::default()
},
},
};
// see https://www.postgresql.org/docs/current/sql-copy.html for
// a description of the binary format
//
// We don't write oids
let mut out = ExecuteCopyToConnection::execute(conn, command)?;
let buffer = out.fill_buf().map_err(io_result_mapper)?;
if buffer[..super::COPY_MAGIC_HEADER.len()] != super::COPY_MAGIC_HEADER {
return Err(crate::result::Error::DeserializationError(
"Unexpected protocol header".into(),
));
}
// we care only about bit 16-31 here, so we can just skip the bytes in between
let flags_backward_incompatible = i16::from_be_bytes(
(&buffer[super::COPY_MAGIC_HEADER.len() + 2..super::COPY_MAGIC_HEADER.len() + 4])
.try_into()
.expect("Exactly 2 byte"),
);
if flags_backward_incompatible != 0 {
return Err(crate::result::Error::DeserializationError(
format!("Unexpected flag value: {flags_backward_incompatible:x}").into(),
));
}
let header_size = usize::try_from(i32::from_be_bytes(
(&buffer[super::COPY_MAGIC_HEADER.len() + 4..super::COPY_MAGIC_HEADER.len() + 8])
.try_into()
.expect("Exactly 4 byte"),
))
.map_err(|e| crate::result::Error::DeserializationError(Box::new(e)))?;
out.consume(super::COPY_MAGIC_HEADER.len() + 8 + header_size);
let mut len = None;
Ok(std::iter::from_fn(move || {
if let Some(len) = len {
out.consume(len);
if let Err(e) = out.fill_buf().map_err(io_result_mapper) {
return Some(Err(e));
}
}
let buffer = C::get_buffer(&out);
len = Some(buffer.len());
let tuple_count =
i16::from_be_bytes((&buffer[..2]).try_into().expect("Exactly 2 bytes"));
if tuple_count > 0 {
let tuple_count = match usize::try_from(tuple_count) {
Ok(o) => o,
Err(e) => {
return Some(Err(crate::result::Error::DeserializationError(Box::new(e))))
}
};
let mut buffers = Vec::with_capacity(tuple_count);
let mut offset = 2;
for _t in 0..tuple_count {
let data_size = i32::from_be_bytes(
(&buffer[offset..offset + 4])
.try_into()
.expect("Exactly 4 bytes"),
);
if data_size < 0 {
buffers.push(None);
} else {
match usize::try_from(data_size) {
Ok(data_size) => {
buffers.push(Some(&buffer[offset + 4..offset + 4 + data_size]));
offset = offset + 4 + data_size;
}
Err(e) => {
return Some(Err(crate::result::Error::DeserializationError(
Box::new(e),
)));
}
}
}
}
let row = C::make_row(&out, buffers);
Some(U::build_from_row(&row).map_err(crate::result::Error::DeserializationError))
} else {
None
}
}))
}
}
impl<T, O> CopyToQuery<T, O>
where
O: CopyToMarker,
T: CopyTarget,
{
/// Copy data from the database by directly accessing the provided response
///
/// This function returns a type that implements [`std::io::BufRead`] which allows to directly read
/// the data as provided by the database. The exact format depends on what options are
/// set via the various `with_*` methods.
pub fn load_raw<C>(self, conn: &mut C) -> QueryResult<impl BufRead + '_>
where
C: ExecuteCopyToConnection,
{
let q = O::setup_options(self);
let command = CopyToCommand {
p: PhantomData::<T>,
options: q.options,
};
ExecuteCopyToConnection::execute(conn, command)
}
/// The format used for the copy statement
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_format(self, format: CopyFormat) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.common.format = Some(format);
out
}
/// Whether or not the `freeze` option is set
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_freeze(self, freeze: bool) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.common.freeze = Some(freeze);
out
}
/// Which delimiter should be used for textual output formats
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_delimiter(self, delimiter: char) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.common.delimiter = Some(delimiter);
out
}
/// Which string should be used in place of a `NULL` value
/// for textual output formats
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_null(self, null: impl Into<String>) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.common.null = Some(null.into());
out
}
/// Which quote character should be used for textual output formats
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_quote(self, quote: char) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.common.quote = Some(quote);
out
}
/// Which escape character should be used for textual output formats
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_escape(self, escape: char) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.common.escape = Some(escape);
out
}
/// Is a header provided as part of the textual input or not
///
/// See the [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details.
pub fn with_header(self, set: bool) -> CopyToQuery<T, CopyToOptions> {
let mut out = O::setup_options(self);
out.options.header = Some(set);
out
}
}
/// Creates a `COPY TO` statement
///
/// This function constructs a `COPY TO` statement which copies data
/// from the database **to** a client side target. It's designed to move
/// larger amounts of data out of the database.
///
/// This function accepts a target selection (table name or list of columns) as argument.
///
/// There are two ways to use a `COPY TO` statement with diesel:
///
/// * By using [`CopyToQuery::load`] directly to load the deserialized result
/// directly into a specified type
/// * By using the `with_*` methods to configure the format sent by the database
/// and then by calling [`CopyToQuery::load_raw`] to receive the raw data
/// sent by the database.
///
/// The first variant uses the `BINARY` format internally to receive
/// the selected data efficiently. It automatically sets the right options
/// and does not allow to change them via `with_*` methods.
///
/// The second variant allows you to control the behaviour of the
/// generated `COPY TO` statement in detail. You can use the various
/// `with_*` methods for that before issuing the statement via [`CopyToQuery::load_raw`].
/// That method will return an type that implements [`std::io::BufRead`], which
/// allows you to directly read the response from the database in the configured
/// format.
/// See [the postgresql documentation](https://www.postgresql.org/docs/current/sql-copy.html)
/// for more details about the supported formats.
///
/// If you don't have any specific needs you should prefer using the more
/// convenient first variant.
///
/// This functionality is postgresql specific.
///
/// # Examples
///
/// ## Via [`CopyToQuery::load()`]
///
/// ```rust
/// # include!("../../../doctest_setup.rs");
/// # use crate::schema::users;
///
/// #[derive(Queryable, Selectable, PartialEq, Debug)]
/// #[diesel(table_name = users)]
/// #[diesel(check_for_backend(diesel::pg::Pg))]
/// struct User {
/// name: String,
/// }
///
/// # fn run_test() -> QueryResult<()> {
/// # let connection = &mut establish_connection();
/// let out = diesel::copy_to(users::table)
/// .load::<User, _>(connection)?
/// .collect::<Result<Vec<_>, _>>()?;
///
/// assert_eq!(out, vec![User{ name: "Sean".into() }, User{ name: "Tess".into() }]);
/// # Ok(())
/// # }
/// # fn main() {
/// # run_test().unwrap();
/// # }
/// ```
///
/// ## Via [`CopyToQuery::load_raw()`]
///
/// ```rust
/// # include!("../../../doctest_setup.rs");
/// # fn run_test() -> QueryResult<()> {
/// # use crate::schema::users;
/// use diesel::pg::CopyFormat;
/// use std::io::Read;
/// # let connection = &mut establish_connection();
///
/// let mut copy = diesel::copy_to(users::table)
/// .with_format(CopyFormat::Csv)
/// .load_raw(connection)?;
///
/// let mut out = String::new();
/// copy.read_to_string(&mut out).unwrap();
/// assert_eq!(out, "1,Sean\n2,Tess\n");
/// # Ok(())
/// # }
/// # fn main() {
/// # run_test().unwrap();
/// # }
/// ```
#[cfg(feature = "postgres_backend")]
pub fn copy_to<T>(target: T) -> CopyToQuery<T, NotSet>
where
T: CopyTarget,
{
CopyToQuery {
target,
options: NotSet,
}
}