foundationdb/database.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 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
// Copyright 2018 foundationdb-rs developers, https://github.com/Clikengo/foundationdb-rs/graphs/contributors
// Copyright 2013-2018 Apple, Inc and the FoundationDB project authors.
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! Implementations of the FDBDatabase C API
//!
//! <https://apple.github.io/foundationdb/api-c.html#database>
use std::convert::TryInto;
use std::marker::PhantomData;
use std::pin::Pin;
use std::ptr::NonNull;
use std::time::{Duration, Instant};
use fdb_sys::if_cfg_api_versions;
use foundationdb_macros::cfg_api_versions;
use foundationdb_sys as fdb_sys;
use crate::metrics::{MetricsReport, TransactionMetrics};
use crate::options;
use crate::runner::{MetricsHooks, RunnerHooks, TransactionRunner};
use crate::transaction::*;
use crate::{FdbError, FdbResult, error};
use crate::error::RetryableError;
use futures::prelude::*;
/// Wrapper around the boolean representing whether the
/// previous transaction is still on fly
/// This wrapper prevents the boolean to be copy and force it
/// to be moved instead.
/// This pretty handy when you don't want to see the `Database::run` closure
/// capturing the environment.
pub struct MaybeCommitted(bool);
impl MaybeCommitted {
pub(crate) fn new(maybe_committed: bool) -> Self {
Self(maybe_committed)
}
}
impl From<MaybeCommitted> for bool {
fn from(value: MaybeCommitted) -> Self {
value.0
}
}
/// Represents a FoundationDB database
///
/// A mutable, lexicographically ordered mapping from binary keys to binary values.
///
/// Modifications to a database are performed via transactions.
pub struct Database {
pub(crate) inner: NonNull<fdb_sys::FDBDatabase>,
}
unsafe impl Send for Database {}
unsafe impl Sync for Database {}
impl Drop for Database {
fn drop(&mut self) {
unsafe {
fdb_sys::fdb_database_destroy(self.inner.as_ptr());
}
}
}
#[cfg_api_versions(min = 610)]
impl Database {
/// Create a database for the given configuration path if any, or the default one.
///
/// If the client was not initialized yet, the network is started with the
/// default API version, like [`crate::boot`] would.
pub fn new(path: Option<&str>) -> FdbResult<Database> {
crate::api::ensure_network_started()?;
let path_str =
path.map(|path| std::ffi::CString::new(path).expect("path to be convertible to CStr"));
let path_ptr = path_str
.as_ref()
.map(|path| path.as_ptr())
.unwrap_or(std::ptr::null());
let mut v: *mut fdb_sys::FDBDatabase = std::ptr::null_mut();
let err = unsafe { fdb_sys::fdb_create_database(path_ptr, &mut v) };
drop(path_str); // path_str own the CString that we are getting the ptr from
error::eval(err)?;
let ptr =
NonNull::new(v).expect("fdb_create_database to not return null if there is no error");
// Safe because the database is constructed in this scope and we know it's
// a valid pointer.
Ok(unsafe { Self::new_from_pointer(ptr) })
}
/// Create a new FDBDatabase from a raw pointer. Users are expected to use the `new` method.
///
/// # Safety
///
/// The caller must ensure that `ptr` is a valid pointer to an `FDBDatabase` object
/// obtained from the FoundationDB C API, and that the pointer is not aliased or used
/// after being passed to this function.
pub unsafe fn new_from_pointer(ptr: NonNull<fdb_sys::FDBDatabase>) -> Self {
Self { inner: ptr }
}
/// Create a database for the given configuration path
pub fn from_path(path: &str) -> FdbResult<Database> {
Self::new(Some(path))
}
/// Create a database for the default configuration path
#[allow(clippy::should_implement_trait)]
pub fn default() -> FdbResult<Database> {
Self::new(None)
}
}
#[cfg_api_versions(min = 730)]
impl Database {
/// Retrieve a client-side status information in a JSON format.
pub fn get_client_status(
&self,
) -> impl Future<Output = FdbResult<crate::future::FdbSlice>> + Send + Sync + Unpin + use<>
{
crate::future::FdbFuture::new(unsafe {
fdb_sys::fdb_database_get_client_status(self.inner.as_ptr())
})
}
}
impl Database {
/// Create a database for the given configuration path
///
/// This is a compatibility api. If you only use API version ≥ 610 you should
/// use `Database::new`, `Database::from_path` or `Database::default`.
pub async fn new_compat(path: Option<&str>) -> FdbResult<Database> {
crate::api::ensure_network_started()?;
if_cfg_api_versions!(min = 510, max = 600 => {
let cluster = crate::cluster::Cluster::new(path).await?;
let database = cluster.create_database().await?;
Ok(database)
} else {
Database::new(path)
})
}
/// Called to set an option an on `Database`.
pub fn set_option(&self, opt: options::DatabaseOption) -> FdbResult<()> {
unsafe { opt.apply(self.inner.as_ptr()) }
}
/// Creates a new transaction on the given database.
#[cfg_attr(feature = "trace", tracing::instrument(level = "debug", skip(self)))]
pub fn create_trx(&self) -> FdbResult<Transaction> {
let mut trx: *mut fdb_sys::FDBTransaction = std::ptr::null_mut();
let err =
unsafe { fdb_sys::fdb_database_create_transaction(self.inner.as_ptr(), &mut trx) };
error::eval(err)?;
Ok(Transaction::new(NonNull::new(trx).expect(
"fdb_database_create_transaction to not return null if there is no error",
)))
}
#[cfg_attr(feature = "trace", tracing::instrument(level = "debug", skip(self)))]
pub(crate) fn create_retryable_trx(&self) -> FdbResult<RetryableTransaction> {
Ok(RetryableTransaction::new(self.create_trx()?))
}
/// `transact` returns a future which retries on error. It tries to resolve a future created by
/// caller-provided function `f` inside a retry loop, providing it with a newly created
/// transaction. After caller-provided future resolves, the transaction will be committed
/// automatically.
///
/// # Warning: Hanging on Network/DNS failures
///
/// By default, the FoundationDB C API will retry indefinitely if it cannot reach the cluster
/// or if DNS resolution fails. This can cause `transact` to hang forever.
/// To prevent this, you should set [`options::DatabaseOption::TransactionTimeout`] or
/// [`options::DatabaseOption::TransactionRetryLimit`] on the [`Database`] object, or
/// [`options::TransactionOption::Timeout`] or [`options::TransactionOption::RetryLimit`] on the transaction
/// itself.
///
/// Note that `TransactOption` also provides `retry_limit` and `time_out`, but these are
/// Rust-side budgets that are only checked *between* retries. If the C API hangs during a call
/// like `commit()` or `on_error()`, these budgets will not be reached.
///
/// Once [Generic Associated Types](https://github.com/rust-lang/rfcs/blob/master/text/1598-generic_associated_types.md)
/// lands in stable rust, the returned future of f won't need to be boxed anymore, also the
/// lifetime limitations around f might be lowered.
pub async fn transact<F>(&self, mut f: F, options: TransactOption) -> Result<F::Item, F::Error>
where
F: DatabaseTransact,
{
let is_idempotent = options.is_idempotent;
let time_out = options.time_out.map(|d| Instant::now() + d);
let retry_limit = options.retry_limit;
let mut tries: u32 = 0;
let mut trx = self.create_trx()?;
let mut can_retry = move || {
tries += 1;
retry_limit.map(|limit| tries < limit).unwrap_or(true)
&& time_out.map(|t| Instant::now() < t).unwrap_or(true)
};
loop {
let r = f.transact(trx).await;
f = r.0;
trx = r.1;
trx = match r.2 {
Ok(item) => match trx.commit().await {
Ok(_) => break Ok(item),
Err(e) => {
if (is_idempotent || !e.is_maybe_committed()) && can_retry() {
e.on_error().await?
} else {
break Err(F::Error::from(e.into()));
}
}
},
Err(user_err) => match user_err.try_into_fdb_error() {
Ok(e) => {
if (is_idempotent || !e.is_maybe_committed()) && can_retry() {
trx.on_error(e).await?
} else {
break Err(F::Error::from(e));
}
}
Err(user_err) => break Err(user_err),
},
};
}
}
/// `transact_boxed` is a version of [`Database::transact`] that accepts a closure returning a
/// pinned, boxed future.
///
/// # Warning: Hanging on Network/DNS failures
///
/// By default, the FoundationDB C API will retry indefinitely if it cannot reach the cluster
/// or if DNS resolution fails. This can cause `transact_boxed` to hang forever.
/// To prevent this, you should set [`options::DatabaseOption::TransactionTimeout`] or
/// [`options::DatabaseOption::TransactionRetryLimit`] on the [`Database`] object, or
/// [`options::TransactionOption::Timeout`] or [`options::TransactionOption::RetryLimit`] on the transaction
/// itself.
///
/// Note that `TransactOption` also provides `retry_limit` and `time_out`, but these are
/// Rust-side budgets that are only checked *between* retries. If the C API hangs during a call
/// like `commit()` or `on_error()`, these budgets will not be reached.
pub fn transact_boxed<'trx, F, D, T, E>(
&'trx self,
data: D,
f: F,
options: TransactOption,
) -> impl Future<Output = Result<T, E>> + Send + 'trx
where
for<'a> F: FnMut(
&'a Transaction,
&'a mut D,
) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'a>>,
E: TransactError,
F: Send + 'trx,
T: Send + 'trx,
E: Send + 'trx,
D: Send + 'trx,
{
self.transact(
boxed::FnMutBoxed {
f,
d: data,
m: PhantomData,
},
options,
)
}
/// `transact_boxed_local` is a version of [`Database::transact`] that accepts a closure returning a
/// pinned, boxed future that is not `Send`.
///
/// # Warning: Hanging on Network/DNS failures
///
/// By default, the FoundationDB C API will retry indefinitely if it cannot reach the cluster
/// or if DNS resolution fails. This can cause `transact_boxed_local` to hang forever.
/// To prevent this, you should set [`options::DatabaseOption::TransactionTimeout`] or
/// [`options::DatabaseOption::TransactionRetryLimit`] on the [`Database`] object, or
/// [`options::TransactionOption::Timeout`] or [`options::TransactionOption::RetryLimit`] on the transaction
/// itself.
///
/// Note that `TransactOption` also provides `retry_limit` and `time_out`, but these are
/// Rust-side budgets that are only checked *between* retries. If the C API hangs during a call
/// like `commit()` or `on_error()`, these budgets will not be reached.
pub fn transact_boxed_local<'trx, F, D, T, E>(
&'trx self,
data: D,
f: F,
options: TransactOption,
) -> impl Future<Output = Result<T, E>> + 'trx
where
for<'a> F:
FnMut(&'a Transaction, &'a mut D) -> Pin<Box<dyn Future<Output = Result<T, E>> + 'a>>,
E: TransactError,
F: 'trx,
T: 'trx,
E: 'trx,
D: 'trx,
{
self.transact(
boxed_local::FnMutBoxedLocal {
f,
d: data,
m: PhantomData,
},
options,
)
}
/// Runs a transactional function against this Database with retry logic.
/// The associated closure will be called until a non-retryable FDBError
/// is thrown or commit(), returns success.
///
/// Users are **not** expected to keep reference to the `RetryableTransaction`. If a weak or strong
/// reference is kept by the user, the binding will throw an error.
///
/// # Warning: retry
///
/// It might retry indefinitely if the transaction is highly contentious. It is recommended to
/// set [`options::TransactionOption::RetryLimit`] or [`options::TransactionOption::Timeout`] on the transaction
/// if the task needs to be guaranteed to finish. These options can be safely set on every iteration of the closure.
///
/// # Warning: Hanging on Network/DNS failures
///
/// By default, the FoundationDB C API will retry indefinitely if it cannot reach the cluster
/// or if DNS resolution fails. This can cause `run` to hang forever.
/// To prevent this, you should set [`options::DatabaseOption::TransactionTimeout`] or
/// [`options::DatabaseOption::TransactionRetryLimit`] on the [`Database`] object, or
/// [`options::TransactionOption::Timeout`] or [`options::TransactionOption::RetryLimit`] on the transaction
/// itself.
///
/// # Warning: Maybe committed transactions
///
/// As with other client/server databases, in some failure scenarios a client may be unable to determine
/// whether a transaction succeeded. You should make sure your closure is idempotent.
///
/// The closure will notify the user in case of a maybe_committed transaction in a previous run
/// with the `MaybeCommitted` provided in the closure.
///
/// This one can be used as boolean with
/// ```ignore
/// db.run(|trx, maybe_committed| async {
/// if maybe_committed.into() {
/// // Handle the problem if needed
/// }
/// Ok::<_, FdbBindingError>(())
/// }).await;
///```
///
/// # Typed closure errors
///
/// The closure error type `E` is generic: any type implementing
/// [`RetryableError`](crate::RetryableError) works, and the caller gets it
/// back typed. Errors are classified through
/// [`RetryableError::retry_decision`](crate::RetryableError::retry_decision):
/// by default any error that is, or wraps (through `source()`), an
/// [`FdbError`] is handed to `on_error`, which judges retryability and
/// applies backoff; [`RetryDecision::Retry`](crate::RetryDecision::Retry)
/// is routed through `on_error` with code 1020 (not_committed), so backoff
/// and [`options::TransactionOption::RetryLimit`] apply uniformly and
/// `MaybeCommitted` is left untouched. When retries are exhausted or the
/// error is not retryable, the original closure error is returned as-is.
///
/// A closure that never names an error type is ambiguous; pin it on the
/// tail expression, for example `Ok::<_, FdbBindingError>(value)`.
///
/// # Hooks and retry policy
///
/// This is [`runner()`](Self::runner) with its defaults: no hooks and the
/// native retry policy. Use the builder to observe the run with
/// [`RunnerHooks`] or to decide the retries with a
/// [`RetryPolicy`](crate::runner::RetryPolicy).
#[cfg_attr(
feature = "trace",
tracing::instrument(level = "debug", skip(self, closure))
)]
pub async fn run<F, Fut, T, E>(&self, closure: F) -> Result<T, E>
where
F: Fn(RetryableTransaction, MaybeCommitted) -> Fut,
Fut: Future<Output = Result<T, E>>,
E: RetryableError,
{
self.runner().run(closure).await
}
/// A builder for a transactional run, to plug [`RunnerHooks`] and a
/// [`RetryPolicy`](crate::runner::RetryPolicy) into it.
///
/// ```no_run
/// # use foundationdb::*;
/// # use foundationdb::runner::MetricsHooks;
/// # async fn example(db: &Database) -> Result<(), FdbBindingError> {
/// let metrics = TransactionMetrics::new();
/// db.runner()
/// .hooks(&MetricsHooks::new(&metrics))
/// .run(|trx, _| async move {
/// trx.set(b"key", b"value");
/// Ok::<_, FdbBindingError>(())
/// })
/// .await
/// # }
/// ```
pub fn runner(&self) -> TransactionRunner<'_> {
TransactionRunner::new(self)
}
/// Runs a transactional function against this Database with retry logic and custom hooks.
///
/// Sugar for `db.runner().hooks(hooks).run(closure)`. Stack several hooks
/// with a tuple: `db.run_with_hooks(&(first, second), closure)`.
///
/// See [`RunnerHooks`] for what each hook observes and in which order.
#[cfg_attr(
feature = "trace",
tracing::instrument(level = "debug", skip(self, hooks, closure))
)]
pub async fn run_with_hooks<'a, F, Fut, T, E, H: RunnerHooks>(
&'a self,
hooks: &'a H,
closure: F,
) -> Result<T, E>
where
F: Fn(RetryableTransaction, MaybeCommitted) -> Fut,
Fut: Future<Output = Result<T, E>>,
E: RetryableError,
{
self.runner().hooks(hooks).run(closure).await
}
/// Runs a transactional function against this Database with retry logic and metrics collection.
/// The associated closure will be called until a non-retryable FDBError
/// is thrown or commit() returns success.
///
/// This method is similar to `run()` but additionally collects and returns metrics about
/// the transaction execution, including operation counts, bytes read/written, and retry counts.
/// It is [`MetricsHooks`] plugged into [`runner()`](Self::runner): stack them
/// on your own hooks with `db.run_with_hooks(&(MetricsHooks::new(&metrics), my_hooks), closure)`
/// to get the same report out of a run you observe yourself.
///
/// # Arguments
/// * `closure` - A function that takes a RetryableTransaction and MaybeCommitted flag and returns a Future
///
/// # Returns
/// * `Result<(T, Metrics), (FdbBindingError, Metrics)>` - On success, returns the result of the transaction and collected metrics.
/// On failure, returns the error and the metrics collected up to the point of failure.
///
/// # Warning: retry
///
/// It might retry indefinitely if the transaction is highly contentious. It is recommended to
/// set [`options::TransactionOption::RetryLimit`] or [`options::TransactionOption::Timeout`] on the transaction
/// if the task needs to be guaranteed to finish.
///
/// # Warning: Maybe committed transactions
///
/// As with other client/server databases, in some failure scenarios a client may be unable to determine
/// whether a transaction succeeded. The closure will be notified of a maybe_committed transaction
/// in a previous run with the `MaybeCommitted` provided in the closure.
#[cfg_attr(
feature = "trace",
tracing::instrument(level = "debug", skip(self, closure))
)]
pub async fn instrumented_run<F, Fut, T, E>(
&self,
closure: F,
) -> Result<(T, MetricsReport), (E, MetricsReport)>
where
F: Fn(RetryableTransaction, MaybeCommitted) -> Fut,
Fut: Future<Output = Result<T, E>>,
E: RetryableError,
{
let metrics = TransactionMetrics::new();
let hooks = MetricsHooks::new(&metrics);
match self.runner().hooks(&hooks).run(closure).await {
Ok(value) => Ok((value, metrics.get_metrics_data())),
Err(err) => Err((err, metrics.get_metrics_data())),
}
}
/// Perform a no-op against FDB to check network thread liveness. This operation will not change the underlying data
/// in any way, nor will it perform any I/O against the FDB cluster. However, it will schedule some amount of work
/// onto the FDB client and wait for it to complete. The FoundationDB client operates by scheduling onto an event
/// queue that is then processed by a single thread (the "network thread"). This method can be used to determine if
/// the network thread has entered a state where it is no longer processing requests or if its time to process
/// requests has increased. If the network thread is busy, this operation may take some amount of time to complete,
/// which is why this operation returns a future.
pub async fn perform_no_op(&self) -> FdbResult<()> {
let trx = self.create_trx()?;
// Set the read version of the transaction, then read it back. This requires no I/O, but it does
// require the network thread be running. The exact value used for the read version is unimportant.
trx.set_read_version(42);
trx.get_read_version().await?;
Ok(())
}
/// Returns a value where 0 indicates that the client is idle and 1 (or larger) indicates that the client is saturated.
/// By default, this value is updated every second.
#[cfg_api_versions(min = 710)]
pub async fn get_main_thread_busyness(&self) -> FdbResult<f64> {
let busyness =
unsafe { fdb_sys::fdb_database_get_main_thread_busyness(self.inner.as_ptr()) };
Ok(busyness)
}
}
pub trait DatabaseTransact: Sized {
type Item;
type Error: TransactError;
type Future: Future<Output = (Self, Transaction, Result<Self::Item, Self::Error>)>;
fn transact(self, trx: Transaction) -> Self::Future;
}
#[allow(clippy::needless_lifetimes)]
#[allow(clippy::type_complexity)]
mod boxed {
use super::*;
async fn boxed_data_fut<'t, F, T, E, D>(
mut f: FnMutBoxed<'t, F, D>,
trx: Transaction,
) -> (FnMutBoxed<'t, F, D>, Transaction, Result<T, E>)
where
F: for<'a> FnMut(
&'a Transaction,
&'a mut D,
) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'a>>,
E: TransactError,
{
let r = (f.f)(&trx, &mut f.d).await;
(f, trx, r)
}
pub struct FnMutBoxed<'t, F, D> {
pub f: F,
pub d: D,
pub m: PhantomData<&'t ()>,
}
impl<'t, F, T, E, D> DatabaseTransact for FnMutBoxed<'t, F, D>
where
F: for<'a> FnMut(
&'a Transaction,
&'a mut D,
) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'a>>,
F: 't + Send,
T: 't,
E: 't,
D: 't + Send,
E: TransactError,
{
type Item = T;
type Error = E;
type Future = Pin<
Box<
dyn Future<Output = (Self, Transaction, Result<Self::Item, Self::Error>)>
+ Send
+ 't,
>,
>;
fn transact(self, trx: Transaction) -> Self::Future {
boxed_data_fut(self, trx).boxed()
}
}
}
#[allow(clippy::needless_lifetimes)]
#[allow(clippy::type_complexity)]
mod boxed_local {
use super::*;
async fn boxed_local_data_fut<'t, F, T, E, D>(
mut f: FnMutBoxedLocal<'t, F, D>,
trx: Transaction,
) -> (FnMutBoxedLocal<'t, F, D>, Transaction, Result<T, E>)
where
F: for<'a> FnMut(
&'a Transaction,
&'a mut D,
) -> Pin<Box<dyn Future<Output = Result<T, E>> + 'a>>,
E: TransactError,
{
let r = (f.f)(&trx, &mut f.d).await;
(f, trx, r)
}
pub struct FnMutBoxedLocal<'t, F, D> {
pub f: F,
pub d: D,
pub m: PhantomData<&'t ()>,
}
impl<'t, F, T, E, D> DatabaseTransact for FnMutBoxedLocal<'t, F, D>
where
F: for<'a> FnMut(
&'a Transaction,
&'a mut D,
) -> Pin<Box<dyn Future<Output = Result<T, E>> + 'a>>,
F: 't,
T: 't,
E: 't,
D: 't,
E: TransactError,
{
type Item = T;
type Error = E;
type Future = Pin<
Box<dyn Future<Output = (Self, Transaction, Result<Self::Item, Self::Error>)> + 't>,
>;
fn transact(self, trx: Transaction) -> Self::Future {
boxed_local_data_fut(self, trx).boxed_local()
}
}
}
/// A trait that must be implemented to use `Database::transact` this application error types.
pub trait TransactError: From<FdbError> {
fn try_into_fdb_error(self) -> Result<FdbError, Self>;
}
impl<T> TransactError for T
where
T: From<FdbError> + TryInto<FdbError, Error = T>,
{
fn try_into_fdb_error(self) -> Result<FdbError, Self> {
self.try_into()
}
}
impl TransactError for FdbError {
fn try_into_fdb_error(self) -> Result<FdbError, Self> {
Ok(self)
}
}
/// A set of options that controls the behavior of `Database::transact`.
#[derive(Default, Clone)]
pub struct TransactOption {
pub retry_limit: Option<u32>,
pub time_out: Option<Duration>,
pub is_idempotent: bool,
}
impl TransactOption {
/// An idempotent TransactOption
pub fn idempotent() -> Self {
Self {
is_idempotent: true,
..TransactOption::default()
}
}
}