refactor: give the translation/chapter join one home
TranslationScaffold owns the rows that join a translation to the chapters it is a translation of. Pure refactor: the same events go out in the same order, `TranslationBatchProposalJvmTest` passes unedited apart from the call it makes, and no screen behaves differently. The move is worth making before anything is built on it. A translation chapter carries no words -- it is `(translation, chapter, position)` and nothing else, and it exists so a translated chunk has somewhere to hang. Both of the things it joins arrive on their own schedule: a chapter is signed into an artifact that already has translations, a translation is started on an artifact that already has chapters. So the same cross product has to be built from either side, and a second copy of it is a second chance to disagree about what a translation covers -- a disagreement that shows up as a chapter nobody can translate rather than as anything that looks like a bug. **Over ids, not rows.** `chaptersOf` takes translation ids and a `SourceChapter`, which is a chapter reduced to which one and where it sits, rather than a `MantraChapter`. Neither end is always a row: a translation being proposed exists only as the unsigned event a session is about to sign, and so does a chapter. `SourceChapter.of` is there for the callers that do hold a row. **Two things it decides rather than leaves to a caller.** Item order is apply order, so the nesting is fixed here -- translations outer, chapters inner, which keeps one translation's chapters contiguous and in reading order. And `createdAt` is taken once rather than read per template, so a scaffolding proposed as one act reads as one rather than as events that happen to share a minute. The index is the source chapter's own, never the position in the list handed in. They agree when the list is a whole version in order and stop agreeing the moment a caller holds a subset, and only one of them is what the group signed. **Tests.** TranslationScaffoldTest covers it as the pure function it is: the nesting, both directions it is built from, one timestamp for the lot, the empty cases, and the index surviving a non-contiguous subset. Checked against a broken implementation -- taking the index from the list position passes every test that uses a whole version in order, and is caught by the subset. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
package press.mantra.compose.managers
|
||||
|
||||
import com.vitorpamplona.quartz.nip01Core.core.HexKey
|
||||
import com.vitorpamplona.quartz.nip01Core.signers.EventTemplate
|
||||
import press.mantra.compose.database.model.MantraChapter
|
||||
import press.mantra.compose.nostr.nip30303.TranslationChapterEvent
|
||||
|
||||
/**
|
||||
* The rows that join a translation to the chapters it is a translation of.
|
||||
*
|
||||
* A translation chapter carries no words. It is `(translation, chapter,
|
||||
* position)` and nothing else, and it exists so that a translated chunk has
|
||||
* somewhere to hang: a translation without one for a chapter is a translation
|
||||
* that chapter cannot be worked on in.
|
||||
*
|
||||
* Both ends of that join arrive on their own schedule -- a chapter is signed
|
||||
* into an artifact that already has translations, a translation is started on
|
||||
* an artifact that already has chapters -- so the same scaffolding has to be
|
||||
* built from either side. One function for both, because two copies of a cross
|
||||
* product is two chances to disagree about what a translation covers.
|
||||
*/
|
||||
object TranslationScaffold {
|
||||
|
||||
/**
|
||||
* A source chapter, reduced to what a translation chapter needs of it:
|
||||
* which chapter, and where it sits.
|
||||
*
|
||||
* Taken as this rather than as a [MantraChapter] because the chapter is not
|
||||
* always a row yet. When a chapter is signed into an artifact, the
|
||||
* scaffolding goes out in the same breath as the chapter itself, against an
|
||||
* id that exists only as the unsigned event a session is about to sign.
|
||||
*/
|
||||
data class SourceChapter(
|
||||
val id: HexKey,
|
||||
val index: Int,
|
||||
) {
|
||||
companion object {
|
||||
fun of(chapter: MantraChapter) = SourceChapter(id = chapter.id, index = chapter.index)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* A translation chapter for every pair of [translationArtifactVersionIds]
|
||||
* and [chapters], in that nesting: a translation's chapters stay together
|
||||
* and in reading order.
|
||||
*
|
||||
* The order is the order a session will sign them in and the order they
|
||||
* will be applied in, so it is fixed here rather than left to a caller.
|
||||
*
|
||||
* [createdAt] is stamped on all of them rather than read per event, so that
|
||||
* a scaffolding proposed as one act reads as one -- the timestamp of the
|
||||
* chapter or the translation that occasioned it, not of whichever moment
|
||||
* each template happened to be built in.
|
||||
*/
|
||||
fun chaptersOf(
|
||||
translationArtifactVersionIds: List<HexKey>,
|
||||
chapters: List<SourceChapter>,
|
||||
createdAt: Long,
|
||||
): List<EventTemplate<TranslationChapterEvent>> =
|
||||
translationArtifactVersionIds.flatMap { translationArtifactVersionId ->
|
||||
chapters.map { chapter ->
|
||||
TranslationChapterEvent.build(
|
||||
translationArtifactVersionId = translationArtifactVersionId,
|
||||
chapterId = chapter.id,
|
||||
// The source chapter's own position, never this list's:
|
||||
// a caller may hold a subset, and counting the list would
|
||||
// renumber the chapters it happens to be holding.
|
||||
index = chapter.index,
|
||||
createdAt = createdAt,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -10,9 +10,7 @@ import androidx.lifecycle.viewModelScope
|
||||
import androidx.lifecycle.viewmodel.initializer
|
||||
import androidx.lifecycle.viewmodel.viewModelFactory
|
||||
import co.touchlab.kermit.Logger
|
||||
import com.vitorpamplona.quartz.nip01Core.core.Event
|
||||
import com.vitorpamplona.quartz.nip01Core.core.HexKey
|
||||
import com.vitorpamplona.quartz.nip01Core.signers.EventTemplate
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.IO
|
||||
import kotlinx.coroutines.launch
|
||||
@@ -22,8 +20,8 @@ import press.mantra.compose.database.model.MantraChapter
|
||||
import press.mantra.compose.database.model.MantraDialect
|
||||
import press.mantra.compose.database.model.intermdiate.LocalChatRoom
|
||||
import press.mantra.compose.managers.FrostSigningManager
|
||||
import press.mantra.compose.managers.TranslationScaffold
|
||||
import press.mantra.compose.nostr.nip30303.TranslationArtifactVersionEvent
|
||||
import press.mantra.compose.nostr.nip30303.TranslationChapterEvent
|
||||
import press.mantra.compose.repository.ChatRepository
|
||||
import press.mantra.compose.repository.FrostSigningRepository
|
||||
import press.mantra.compose.repository.MantraRepository
|
||||
@@ -140,7 +138,13 @@ class AddTranslationArtifactVersionViewModel(
|
||||
// path -- neither of which this screen knows or should. The
|
||||
// translation comes back built, and the chapters are laid
|
||||
// out against it.
|
||||
dependents = { translation -> translationChaptersOf(translation, chapters) }
|
||||
dependents = { translation ->
|
||||
TranslationScaffold.chaptersOf(
|
||||
translationArtifactVersionIds = listOf(translation.id),
|
||||
chapters = chapters.map(TranslationScaffold.SourceChapter::of),
|
||||
createdAt = translation.createdAt,
|
||||
)
|
||||
}
|
||||
)
|
||||
}.onFailure { error ->
|
||||
logger.e("Failed to propose a translation for signing", error)
|
||||
@@ -163,38 +167,6 @@ class AddTranslationArtifactVersionViewModel(
|
||||
companion object {
|
||||
private const val TAG = "AddTranslationViewModel"
|
||||
|
||||
/**
|
||||
* A translation chapter for each of [chapters], ready to be signed with
|
||||
* the translation they hang off.
|
||||
*
|
||||
* A translation and its chapters go to the group as one batch, so these
|
||||
* are built from the translation *after* it has been authored under the
|
||||
* group's key -- [translation] is the unsigned event the session will
|
||||
* sign, which is where the id each chapter carries comes from. Laying
|
||||
* them out anywhere else would mean naming a translation id before one
|
||||
* exists.
|
||||
*
|
||||
* They take the translation's own timestamp, so the batch reads as one
|
||||
* act rather than as events that happen to share a session.
|
||||
*
|
||||
* Empty when the artifact has no chapters, which is a translation with
|
||||
* nothing yet to translate -- the chapters signed into the artifact
|
||||
* afterwards do not reach a translation proposed before them.
|
||||
*/
|
||||
fun translationChaptersOf(
|
||||
translation: Event,
|
||||
chapters: List<MantraChapter>,
|
||||
): List<EventTemplate<TranslationChapterEvent>> = chapters.map { chapter ->
|
||||
TranslationChapterEvent.build(
|
||||
translationArtifactVersionId = translation.id,
|
||||
chapterId = chapter.id,
|
||||
// The source chapter's own position, not this list's: the two
|
||||
// agree today, and only one of them is what the group signed.
|
||||
index = chapter.index,
|
||||
createdAt = translation.createdAt,
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* The most chapters an artifact can be translated with in one session.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user