use crate::{
db::{
commit::{CommitRowOp, CommitSchemaFingerprint},
data::{
AcceptedFieldWriteProvenance, DecodedDataStoreKey, RawDataStoreKey, RawRow,
StructuralRowContract, StructuralSlotReader,
},
schema::{
AcceptedRowDecodeContract, CompiledAcceptedRowConstraints,
accepted_row_constraint_write_error,
},
write_context::MutationMode,
},
error::{ConstraintDiagnostic, ConstraintDiagnosticKind, InternalError},
};
use std::collections::BTreeSet;
#[expect(
clippy::too_many_arguments,
reason = "the accepted scheduler keeps identity, mode, provenance, row contract, fingerprint, and compiled constraints explicit"
)]
fn validate_row_local_after_image(
entity_path: &str,
mode: MutationMode,
data_key: &RawDataStoreKey,
row: &RawRow,
provenance: &[Option<AcceptedFieldWriteProvenance>],
accepted_row_decode_contract: AcceptedRowDecodeContract,
accepted_schema_fingerprint: CommitSchemaFingerprint,
constraints: &CompiledAcceptedRowConstraints,
) -> Result<(), InternalError> {
match constraints.unique_activation_write_blocker(mode, provenance) {
Ok(Some(barrier)) => {
let primary_key = data_key
.encoded_primary_key_bytes()
.ok_or_else(InternalError::store_invariant)?;
return Err(InternalError::mutation_constraint_activation_write_blocked(
ConstraintDiagnostic::write_activation_blocked(
barrier.constraint_id().get(),
barrier.constraint_name().to_string(),
ConstraintDiagnosticKind::Unique,
entity_path.to_string(),
Some(primary_key.to_vec()),
barrier.field_paths().to_vec(),
),
));
}
Ok(None) => {}
Err(_) => return Err(InternalError::accepted_row_constraint_program_corrupt()),
}
if constraints.is_empty() {
return Ok(());
}
let contract = StructuralRowContract::from_owned_accepted_decode_contract(
entity_path.to_string(),
accepted_row_decode_contract,
);
let row_fields =
StructuralSlotReader::from_raw_row_with_validated_borrowed_contract(row, &contract)?;
let values = row_fields.decode_selected_slot_values(constraints.required_slots())?;
let primary_key = data_key
.encoded_primary_key_bytes()
.ok_or_else(InternalError::store_invariant)?;
constraints
.evaluate(accepted_schema_fingerprint, values.as_slice())
.map_err(|error| {
accepted_row_constraint_write_error(entity_path, Some(primary_key.to_vec()), error)
})
}
pub(in crate::db) struct AcceptedMutationConstraintBatch {
rows: Vec<CommitRowOp>,
deleted_keys: BTreeSet<RawDataStoreKey>,
}
impl AcceptedMutationConstraintBatch {
#[must_use]
pub(in crate::db) const fn is_empty(&self) -> bool {
self.rows.is_empty()
}
pub(in crate::db::executor) fn into_parts(
self,
) -> (Vec<CommitRowOp>, BTreeSet<RawDataStoreKey>) {
(self.rows, self.deleted_keys)
}
}
pub(in crate::db) struct AcceptedMutationConstraintScheduler<'a> {
entity_path: &'a str,
row_decode_contract: AcceptedRowDecodeContract,
schema_fingerprint: CommitSchemaFingerprint,
row_constraints: &'a CompiledAcceptedRowConstraints,
seen_keys: BTreeSet<RawDataStoreKey>,
deleted_keys: BTreeSet<RawDataStoreKey>,
rows: Vec<CommitRowOp>,
}
impl<'a> AcceptedMutationConstraintScheduler<'a> {
pub(in crate::db) fn new(
entity_path: &'a str,
row_decode_contract: AcceptedRowDecodeContract,
schema_fingerprint: CommitSchemaFingerprint,
row_constraints: &'a CompiledAcceptedRowConstraints,
row_capacity: usize,
) -> Self {
Self {
entity_path,
row_decode_contract,
schema_fingerprint,
row_constraints,
seen_keys: BTreeSet::new(),
deleted_keys: BTreeSet::new(),
rows: Vec::with_capacity(row_capacity),
}
}
pub(in crate::db) fn schedule_save_after_image(
&mut self,
mode: MutationMode,
data_key: &DecodedDataStoreKey,
row: &RawRow,
provenance: &[Option<AcceptedFieldWriteProvenance>],
row_op: Option<CommitRowOp>,
) -> Result<(), InternalError> {
let raw_key = data_key.to_raw()?;
self.record_target_key(data_key, &raw_key)?;
validate_row_local_after_image(
self.entity_path,
mode,
&raw_key,
row,
provenance,
self.row_decode_contract.clone(),
self.schema_fingerprint,
self.row_constraints,
)?;
if let Some(row_op) = row_op {
if row_op.entity_path.as_ref() != self.entity_path
|| row_op.key != raw_key
|| row_op.schema_fingerprint != self.schema_fingerprint
|| row_op.after.as_deref() != Some(row.as_bytes())
{
return Err(InternalError::query_executor_invariant());
}
self.rows.push(row_op);
}
Ok(())
}
#[cfg(feature = "query")]
pub(in crate::db) fn pop_last_save_row(&mut self) -> Result<(), InternalError> {
let Some(row) = self.rows.pop() else {
return Err(InternalError::query_executor_invariant());
};
self.seen_keys.remove(&row.key);
Ok(())
}
#[cfg(feature = "query")]
pub(in crate::db) const fn rows(&self) -> &[CommitRowOp] {
self.rows.as_slice()
}
pub(in crate::db) fn schedule_delete(
&mut self,
row_op: CommitRowOp,
) -> Result<(), InternalError> {
if row_op.entity_path.as_ref() != self.entity_path
|| row_op.before.is_none()
|| row_op.after.is_some()
|| row_op.schema_fingerprint != self.schema_fingerprint
{
return Err(InternalError::query_executor_invariant());
}
let data_key = DecodedDataStoreKey::try_from_raw(&row_op.key)
.map_err(|_| InternalError::query_executor_invariant())?;
self.record_target_key(&data_key, &row_op.key)?;
self.deleted_keys.insert(row_op.key.clone());
self.rows.push(row_op);
Ok(())
}
fn record_target_key(
&mut self,
data_key: &DecodedDataStoreKey,
raw_key: &RawDataStoreKey,
) -> Result<(), InternalError> {
if !self.seen_keys.insert(raw_key.clone()) {
return Err(InternalError::mutation_atomic_save_duplicate_key(
self.entity_path,
data_key.clone(),
));
}
Ok(())
}
pub(in crate::db) fn finish(self) -> AcceptedMutationConstraintBatch {
AcceptedMutationConstraintBatch {
rows: self.rows,
deleted_keys: self.deleted_keys,
}
}
}