@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
64 lines (60 loc) • 2.1 kB
text/typescript
// ets_tracing: off
import { combineSeq } from "../Cause/cause.js"
import { fold_ } from "../Exit/api.js"
import type { Exit } from "../Exit/exit.js"
import { chain_, foldCauseM_, halt, result, suspend } from "./core.js"
import { done } from "./done.js"
import type { Effect } from "./effect.js"
import { uninterruptibleMask } from "./interruption.js"
/**
* Acquires a resource, uses the resource, and then releases the resource.
* Neither the acquisition nor the release will be interrupted, and the
* resource is guaranteed to be released, so long as the `acquire` effect
* succeeds. If `use` fails, then after release, the returned effect will fail
* with the same error.
*
* @ets_data_first bracketExit_
*/
export function bracketExit<A, E1, R1, A1, R2, E2, A2>(
use: (a: A) => Effect<R1, E1, A1>,
release: (a: A, e: Exit<E1, A1>) => Effect<R2, E2, A2>,
__trace?: string
) {
return <R, E>(acquire: Effect<R, E, A>): Effect<R & R1 & R2, E | E1 | E2, A1> =>
bracketExit_(acquire, use, release, __trace)
}
/**
* Acquires a resource, uses the resource, and then releases the resource.
* Neither the acquisition nor the release will be interrupted, and the
* resource is guaranteed to be released, so long as the `acquire` effect
* succeeds. If `use` fails, then after release, the returned effect will fail
* with the same error.
*/
export function bracketExit_<R, E, A, E1, R1, A1, R2, E2, X>(
acquire: Effect<R, E, A>,
use: (a: A) => Effect<R1, E1, A1>,
release: (a: A, e: Exit<E1, A1>) => Effect<R2, E2, X>,
__trace?: string
): Effect<R & R1 & R2, E | E1 | E2, A1> {
return uninterruptibleMask(({ restore }) =>
chain_(
acquire,
(a) =>
chain_(result(suspend(() => restore(use(a)))), (e) =>
foldCauseM_(
suspend(() => release(a, e)),
(cause2) =>
halt(
fold_(
e,
(_) => combineSeq(_, cause2),
(_) => cause2
)
),
(_) => done(e)
)
),
__trace
)
)
}