8.1 KiB
description, applyTo
| description | applyTo |
|---|---|
| Follow these guidelines when editing the services | src/transcription/services/*.py |
Services
Structure
- Project core data models are defined in models
- One service class per aggregate, not per table. An aggregate is a root model plus
the models that have no independent lifecycle of their own.
DocumentTypehas no meaning withoutDocument, so it belongs toDocumentService; it does not get its own service. Splitting per table produces services that must reach across each other for every real operation, which is what line 13 forbids. - Only services interact with the database, and only through async methods.
- A service module must not import another service module. This is enforced by test_service_boundaries. Shared types go in a neutral module that defines no service class (see errors).
- Not every module in this package is a service. Helper modules that define no
*Serviceclass (base,errors,normalization,prompts,quality,media_storage,source_media) are free-function modules and are exempt from the service rules below.
Model Ownership
Every model has exactly one owning service. The owner defines that model's invariants and is the only service that may create or delete its rows.
| Model | Owner |
|---|---|
Document, DocumentType |
DocumentService |
Source, JobSource |
SourceService |
Job |
JobService |
Person, PersonRole, DocumentPerson |
PeopleService |
ExecutionAttempt |
SourceService |
Junction tables
A junction table is owned by the service that creates and deletes its rows — its
lifecycle owner. The service on the other side may read through the junction (via
selectinload) but must not create rows in it.
document_person->PeopleService. Every write is there;DocumentServiceonly eager-loads through it.job_source->SourceService, which creates the row, records each page's outcome, and deletes it.
Two consequences follow, and both are deliberate:
- Cascade deletion is not a violation. A service deleting the aggregate root it owns
may delete junction rows referencing that root, because they cannot outlive it
(
JobService.delete_job_with_guardrails). - Ownership governs creation and deletion, not every state transition.
job_sourceis both a link and the transcription work queue.JobService.cancel_jobandresubmit_failed_sourcestransitionjob_source.statusacross a whole job, because that transition is a Job lifecycle event, not a per-page outcome. They create and delete nothing.
EvidenceService is read-focused and projection-focused. It may coordinate selection
flows, but append-only attempt creation remains in SourceService write paths.
If a new operation cannot be expressed within one owner, it belongs in an orchestration module, not in a cross-service import.
Error Handling
- Errors used by a single service are defined at the top of that module and inherit from
AppError. - Errors shared by more than one service go in errors, which defines no service class and is therefore importable by any of them.
- Use a context manager for large
try/exceptblocks, likehandle_transcription_errorsin sources.
Checklist
- Uses
ServiceBasefor common logic - Session kwarg for
AsyncSessionto pass a session object into each method - Services use
self._session_scopein their methods to pass the session through- Multiple operations on the same object(s) require sharing a session between all the methods used
- Every model the module touches is either owned by it or reached read-only
CRUD Methods
- Name format
<operation>_<model>, for examplecreate_documentorupdate_job. - Where a service exposes create/read/update/delete for its root model, define them at the top of the class in that order, before derived reads and workflow helpers.
- Not every aggregate needs all four.
ExecutionAttemptis append-only evidence written bySourceServiceworkflow-facing methods, soEvidenceServicedeliberately exposes reads and no create or delete. Do not add unused CRUD methods to satisfy symmetry. RegistryServiceis generic across small lookup models and uses<operation>_entrynaming instead.
Transaction Finalization
When a service method accepts an optional session kwarg, write methods must use self._finalize to finalize the transaction properly according to whether or not they are sharing a session.
- If
sessionisNone: the method owns the transaction and shouldcommit(). - If
sessionis provided: the method must not commit; it shouldflush()so IDs and FK values are available to the caller's transaction. - Use
refresh()on returned ORM objects when the caller needs DB-populated values (defaults, triggers, merged state).
Recommended helper behavior:
- Inputs: active session object, original
sessionarg (or a boolean ownership flag), and an optional list of objects to refresh. - Logic:
commitwhen service-owned session,flushwhen caller-owned session, then refresh requested objects.
This keeps orchestration functions atomic: they can pass one shared session across multiple services and commit exactly once at the workflow boundary.
Workflow Transaction Boundaries
For multi-step job lifecycles (for example queued transcription jobs), orchestration functions must use explicit transaction phases.
Required boundary model:
- Transaction A (claim): transition
JobStatus.QUEUED -> JobStatus.PROCESSINGand commit immediately. - Perform provider/network work outside database transactions.
- Transaction B (terminal success): write transcript content and set
JobStatus.TRANSCRIBEDin the same shared-session commit. - Transaction B (terminal failure): write transcript error detail and set
JobStatus.FAILEDin the same shared-session commit. - Transaction C (retry path): write transcript error detail, increment retry count, and set
JobStatus.QUEUEDin one shared-session commit.
Atomicity rules:
- Never commit transcript updates separately from the paired terminal/retry job status change.
- Terminal state (
TRANSCRIBEDorFAILED) and transcript row changes must succeed or roll back together. - Retry persistence (
QUEUED+ retry increment + error detail) must succeed or roll back together.
Separation of concerns:
- Worker modules should stay lightweight and delegate lifecycle transitions to service/workflow orchestration functions.
- In
workflows.py,process_queued_jobshould own one complete attempt lifecycle:QUEUED -> PROCESSING -> TRANSCRIBED|FAILED. - In
workflows.py,advance_jobshould coordinate broader status progression around attempts (for example retry scheduling fromFAILED -> QUEUED). - Services should expose session-aware write helpers (flush on caller-owned session) so orchestration controls commit boundaries.
- Backoff/sleep behavior must run outside transactional scopes.
V4 Contract Alignment
- Treat
docs/ver4/as the active architecture and requirements baseline. Job.statussuccess path isTRANSCRIBED;COMPLETEDis legacy-compatible and must not be used for new success transitions.JobSource.statusis queue/projection state only (PENDING,TRANSCRIBED,FAILED,CANCELLED).- Source ingest may normalize media before persistence; persisted bytes/hash are canonical for processing and provenance.
Service Composition
A service method may read across models it does not own, using eager loads from its own aggregate root. What it may not do is import another service.
Operations that must write models owned by more than one service — uploading a picture, for example — are composed in an orchestration module (store, workflows). Orchestration modules define no service class, may import any service, and own the commit boundary.