dr-exec
| Repo Definitions | Terms TOML | Contracts TOML |
|---|
dr-exec runs local processes through explicit, typed contracts. Production execution currently targets macOS and is organized into these functional areas:
Here, “untrusted” describes who controls the payload; it does not mean sandboxed. V1's process-boundary-only profile creates a separate invocation, session, and process group, but leaves the invoking user's filesystem, network, credentials, and process-spawning authority unchanged. A descendant that creates another session can outlive teardown. Isolated host Python also does not verify interpreter, standard-library, or package bytes.
- Declarations describe trusted and untrusted command and Python targets together with their environment grants and resource budgets.
- Execution owns process startup, input and output transport, budget enforcement, cancellation, teardown, and outcome attribution.
- Recording represents outcomes as typed data and preserves declarations, process evidence, retained output, measurements, and recording health in durable run records.
- Scheduling runs finite batches and asynchronous streams through a shared capacity bound with completion-order delivery and intake backpressure.
- Capabilities supplies the executor, runtime, and run-store boundaries together with the library-owned fake executor.
- Runtime prepares isolated Python invocations and protects structured protocol messages from payload output.
- Core supplies shared names, enums, cancellation, errors, identity helpers, and contract-model foundations.
The abbreviated signatures below show the durable public contract shapes;
... marks validation and implementation detail intentionally left out.
Core
Core owns the nominal identities and closed enums shared across functional areas. Their types keep job, attempt, outcome, receipt, and protocol concepts distinct at both Python and serialization boundaries.
JobId = NewType("JobId", CanonicalUuid)
AttemptId = NewType("AttemptId", CanonicalUuid)
class ExecutionId(ContractModel):
job_id: JobId
attempt_id: AttemptId
@verify(UNIQUE)
class RecordReceiptKind(StrEnum):
COMPLETE = "complete"
DEGRADED = "degraded"
NOT_APPLICABLE = "not_applicable"
class CancelToken:
def cancel(self) -> None: ...
@property
def cancelled(self) -> bool: ...
Declarations
An ExecutionJob describes one request without choosing how it will run. Its
target is a closed, discriminated union whose variants make the workload's
trust boundary explicit.
class TrustedCommandTarget(ContractModel):
kind: Literal[ExecutionTargetKind.TRUSTED_COMMAND] = ...
argv: tuple[str, ...]
stdin: Base64UrlBytes = b""
class UntrustedCommandTarget(ContractModel):
kind: Literal[ExecutionTargetKind.UNTRUSTED_COMMAND] = ...
argv: tuple[str, ...]
stdin: Base64UrlBytes = b""
containment_profile: ContainmentProfile
class TrustedPythonTarget(ContractModel):
kind: Literal[ExecutionTargetKind.TRUSTED_PYTHON] = ...
driver_source: str
request: IdentityDocumentField
class UntrustedPythonTarget(ContractModel):
kind: Literal[ExecutionTargetKind.UNTRUSTED_PYTHON] = ...
driver_source: str
request: IdentityDocumentField
containment_profile: ContainmentProfile
type ExecutionTarget = Annotated[
TrustedCommandTarget
| TrustedPythonTarget
| UntrustedCommandTarget
| UntrustedPythonTarget,
Field(discriminator="kind"),
]
Command executables are either absolute paths or separator-free names resolved
only through an explicitly granted PATH whose entries are absolute.
Environment access and resource limits are data carried by the job alongside the target, so the executor receives the complete declaration at one boundary.
@dataclass(frozen=True, slots=True)
class EnvGrant:
kind: EnvGrantKind
variables: tuple[EnvVar, ...]
excluded_var_names: tuple[str, ...] = ()
@classmethod
def none(cls) -> EnvGrant: ...
@classmethod
def fixed(cls, variables: Mapping[str, str]) -> EnvGrant: ...
class Budgets(ContractModel):
wall_time: DurationBudget = ...
input_bytes: ByteBudget = ...
payload_output: OutputBudget = ...
...
@dataclass(frozen=True, slots=True)
class ExecutionJob:
job_id: JobId
target: ExecutionTarget
env: EnvGrant
budgets: Budgets = ...
V1 accepts finite workload limits only for wall time, input bytes, and aggregate captured payload output. Memory, CPU time, process count, file size, open-file count, and disk limits must remain explicitly unbudgeted.
Importable JSON process jobs
The importable JSON adapter builds an ordinary Python execution job for one installed module-level synchronous callable. It exchanges one strict JSON value in each direction; execution, cancellation, recording, and scheduling remain with the selected executor and pool.
entry_point = ImportableEntryPoint(
module_name="my_package.workers",
attribute_name="evaluate",
)
job = build_untrusted_importable_json_job(
job_id,
entry_point,
request,
env=EnvGrant.none(),
budgets=budgets,
)
completed = executor.run(job)
result = parse_importable_json_result(completed)
Use build_trusted_importable_json_job only when the effective payload is
caller-controlled. The untrusted builder always declares
PROCESS_BOUNDARY_ONLY; neither builder selects an operating-system sandbox.
Entrypoints must be importable by the isolated installed interpreter—source
paths, working-directory imports, expressions, and nested attribute traversal
are unsupported. Callers enforce any entrypoint allowlist before construction.
One job is one isolation, cancellation, failure, and recording unit. Its JSON request may be a finite caller-owned batch only when all members intentionally share that fate; the adapter does not interpret members or provide mapping, partial results, or per-item retries. High-volume callers reuse runtime, executor, run-store, and pool instances and configure finite input, retained payload-output, protocol frame, protocol total-byte, JSON-depth, and one-output limits from representative measurements. Bulk data remains caller-owned by reference or artifact rather than traveling through the compact JSON value.
Run the representative resource and throughput investigation with:
uv run --with ./tests/fixtures/importable-json-fixture python scripts/benchmark_importable_json.py
The command writes a machine-readable JSON report. Its measurements are observations for capacity selection, not performance pass/fail thresholds.
Runtime
The runtime boundary turns either Python target into an invocation and a recorded runtime description. Trusted and untrusted Python use the same child, startup, request, and protected-protocol path; only the untrusted declaration and record carry containment evidence. The v1 implementation resolves and probes a host interpreter, then invokes it with isolated Python startup controls.
class Runtime(Protocol):
def prepare(
self,
target: TrustedPythonTarget | UntrustedPythonTarget,
/,
) -> PreparedPythonProcess: ...
def describe(self) -> RuntimeRecord: ...
@dataclass(frozen=True, slots=True)
class IsolatedHostPythonRuntime:
executable: Path
def prepare(
self,
target: TrustedPythonTarget | UntrustedPythonTarget,
/,
) -> PreparedPythonProcess: ...
def describe(self) -> RuntimeRecord: ...
Execution
All execution crosses the same small capability boundary. Production uses
ProcessExecutor, while consumers can depend only on Executor when the
implementation should remain substitutable.
class Executor(Protocol):
def run(
self,
job: ExecutionJob,
/,
*,
cancellation: CancelToken | None = None,
) -> CompletedExecution: ...
The production executor exposes one-job, finite-batch, and asynchronous-pool entry points over the same execution and scheduling contracts.
@dataclass(frozen=True, slots=True)
class ProcessExecutor:
runtime: Runtime
run_store: RunStore
self_budgets: ExecutorSelfBudgets = ...
def run(
self,
job: ExecutionJob,
/,
*,
cancellation: CancelToken | None = None,
) -> CompletedExecution: ...
def run_many(
self,
jobs: Iterable[ExecutionJob],
/,
*,
config: ExecutionPoolConfig | None = None,
) -> Iterator[CompletedExecution]: ...
def open_pool(
self,
*,
config: ExecutionPoolConfig | None = None,
) -> ExecutionPool: ...
Recording
Per-job outcomes are closed typed data rather than raw process status or synthetic return codes. Each completed execution also carries a receipt for a complete or degraded durable record, a fake result, or a cached replay.
class OutcomeKind(StrEnum):
EXITED = "exited"
SIGNALED = "signaled"
SPAWN_ABSENT = "spawn_absent"
SPAWN_FAILED = "spawn_failed"
BUDGET_EXCEEDED = "budget_exceeded"
PROTOCOL_FAILED = "protocol_failed"
CANCELLED = "cancelled"
type ExecutionOutcome = Annotated[
ExitedOutcome
| SignaledOutcome
| SpawnAbsentOutcome
| SpawnFailedOutcome
| BudgetExceededOutcome
| ProtocolFailedOutcome
| CancelledOutcome,
Field(discriminator="kind"),
]
class ExecutionResult(ContractModel):
execution_id: ExecutionId
outcome: ExecutionOutcome
attribution: ExecutionAttribution
protocol_outputs: tuple[IdentityDocumentField, ...]
payload_outputs: PayloadOutputs
measurements: ExecutionMeasurements
class CompletedExecution(ContractModel):
result: ExecutionResult
record_receipt: RecordReceipt
type RecordReceipt = Annotated[
CompleteRecordReceipt
| DegradedRecordReceipt
| FakeRecordReceipt,
Field(discriminator="kind"),
]
The store boundary makes the durable lifecycle explicit: a run is prepared, may become running once a process exists, and is finalized with its result.
type RunRecord = Annotated[
PreparedRecord | RunningRecord | FinalizedRecord,
Field(discriminator="state"),
]
class RunStore(Protocol):
def prepare(self, record: PreparedRecord, /) -> PreparedRun: ...
def mark_running(
self,
prepared_run: PreparedRun,
process: ProcessRecord,
/,
) -> RunningRun: ...
def finalize(
self,
run: FinalizableRun,
result: ExecutionResult,
/,
) -> RealRecordReceipt: ...
def load(self, reference: RunRecordReference, /) -> RunRecord: ...
def read_artifact(
self,
reference: RunRecordReference,
artifact: OutputArtifactRecord,
/,
*,
max_bytes: int,
) -> bytes: ...
DirectoryRunStore publishes canonical lifecycle manifests within fixed
structural byte and depth ceilings, then loads them through bounded,
descriptor-pinned reads before validating the record and its sidecars. Real
handles and receipts expose only an opaque serializable RunRecordReference;
the store alone resolves its directory layout. Finalized sidecars are recovered
with read_artifact under a required finite byte limit and verified for size
and digest during the same descriptor-pinned, no-follow read.
Scheduling
Finite batches and asynchronous streams share one capacity model. Capacity bounds all admitted-but-undelivered work, so completion delivery naturally backpressures intake.
@dataclass(frozen=True, slots=True)
class AutoPoolCapacity: ...
@dataclass(frozen=True, slots=True)
class FixedPoolCapacity:
max_active_jobs: int
type PoolCapacity = AutoPoolCapacity | FixedPoolCapacity
@dataclass(frozen=True, slots=True)
class ExecutionPoolConfig:
capacity: PoolCapacity = ...
Submissions carry caller context through scheduling without serializing it, and completions return that same context paired with the completed execution.
@dataclass(frozen=True, slots=True)
class ExecutionSubmission(Generic[ContextT]):
job: ExecutionJob
context: ContextT
@dataclass(frozen=True, slots=True)
class ExecutionCompletion(Generic[ContextT]):
completed_execution: CompletedExecution
context: ContextT
class ExecutionPool:
async def __aenter__(self) -> ExecutionPool: ...
async def run_stream(
self,
submissions: AsyncIterable[ExecutionSubmission[ContextT]],
/,
) -> AsyncIterator[ExecutionCompletion[ContextT]]: ...
async def drain(self) -> None: ...
async def abort(self) -> None: ...
Capabilities
Consumers can program against the small Executor, Runtime, and RunStore
Protocols while selecting concrete implementations separately. FakeExecutor
preserves shared declaration and concurrency contracts without claiming host,
process, containment, or durable-record behavior.
class FakeExecutor:
def run(
self,
job: ExecutionJob,
/,
*,
cancellation: CancelToken | None = None,
) -> CompletedExecution: ...
Development
Install the locked dependencies and repository commit hook once per clone:
uv sync --locked
uv run pre-commit install
The hook runs scripts/pre-check.sh, the same repository-wide formatting,
linting, type, test, definitions, and package-build gate used by CI.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dr_exec-0.1.6.tar.gz.
File metadata
- Download URL: dr_exec-0.1.6.tar.gz
- Upload date:
- Size: 46.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70c5ed9f9b73985bbc9b0df8d03809b7d92a5a0e0aee0be5fe802b9f356515d0
|
|
| MD5 |
576b56e0747054e96a705414b5a1225b
|
|
| BLAKE2b-256 |
e73acb77e95b9f354126c0e6f7cdd6678280314bdc91a8d256134570baeae291
|
Provenance
The following attestation bundles were made for dr_exec-0.1.6.tar.gz:
Publisher:
release.yml on danielle-rothermel/dr-exec
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dr_exec-0.1.6.tar.gz -
Subject digest:
70c5ed9f9b73985bbc9b0df8d03809b7d92a5a0e0aee0be5fe802b9f356515d0 - Sigstore transparency entry: 2387715500
- Sigstore integration time:
-
Permalink:
danielle-rothermel/dr-exec@a23a276747652a10b775c5df9362d1923a2d303c -
Branch / Tag:
refs/tags/v0.1.6 - Owner: https://github.com/danielle-rothermel
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a23a276747652a10b775c5df9362d1923a2d303c -
Trigger Event:
push
-
Statement type:
File details
Details for the file dr_exec-0.1.6-py3-none-any.whl.
File metadata
- Download URL: dr_exec-0.1.6-py3-none-any.whl
- Upload date:
- Size: 61.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7efd0ea27e3d366d13778a831e71ef453cc457f71f2e9c0950272008f50ed54
|
|
| MD5 |
c8b28cdd4fe951ed5309514394b7cba9
|
|
| BLAKE2b-256 |
a6f27a133884bfe8d95cf43b63358a3ecd4961f432ca948155ac454b3c53eea5
|
Provenance
The following attestation bundles were made for dr_exec-0.1.6-py3-none-any.whl:
Publisher:
release.yml on danielle-rothermel/dr-exec
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dr_exec-0.1.6-py3-none-any.whl -
Subject digest:
a7efd0ea27e3d366d13778a831e71ef453cc457f71f2e9c0950272008f50ed54 - Sigstore transparency entry: 2387715503
- Sigstore integration time:
-
Permalink:
danielle-rothermel/dr-exec@a23a276747652a10b775c5df9362d1923a2d303c -
Branch / Tag:
refs/tags/v0.1.6 - Owner: https://github.com/danielle-rothermel
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a23a276747652a10b775c5df9362d1923a2d303c -
Trigger Event:
push
-
Statement type: