text-document-common 1.5.4

Shared entities, database, events, and undo/redo infrastructure for text-document
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
// Generated by Qleany v1.7.3 from common_entity_table.tera
// Phase 2 step 6: junction-free. `TableCell.cell_frame` is the
// source of truth; the jn_frame_from_table_cell_cell_frame table and
// the `hydrate()` re-population step are gone.

use crate::database::Store;
use crate::entities::TableCell;
use crate::error::RepositoryError;
use crate::types::EntityId;
use std::collections::HashMap as StdHashMap;

use super::table_cell_repository::TableCellRelationshipField;
use super::table_cell_repository::TableCellTable;
use super::table_cell_repository::TableCellTableRO;

fn read_field(cell: &TableCell, field: &TableCellRelationshipField) -> Vec<EntityId> {
    match field {
        TableCellRelationshipField::CellFrame => cell.cell_frame.into_iter().collect(),
    }
}

fn write_field(cell: &mut TableCell, field: &TableCellRelationshipField, ids: Vec<EntityId>) {
    match field {
        TableCellRelationshipField::CellFrame => cell.cell_frame = ids.first().copied(),
    }
}

pub struct TableCellHashMapTable<'a> {
    store: &'a Store,
}

impl<'a> TableCellHashMapTable<'a> {
    pub fn new(store: &'a Store) -> Self {
        Self { store }
    }
}

impl<'a> TableCellTable for TableCellHashMapTable<'a> {
    fn create(&mut self, entity: &TableCell) -> Result<TableCell, RepositoryError> {
        self.create_multi(std::slice::from_ref(entity))
            .map(|v| v.into_iter().next().unwrap())
    }

    fn create_multi(&mut self, entities: &[TableCell]) -> Result<Vec<TableCell>, RepositoryError> {
        let mut created = Vec::with_capacity(entities.len());
        let mut map = self.store.table_cells.write().unwrap();

        for entity in entities {
            let new_entity = if entity.id == EntityId::default() {
                let id = self.store.next_id("table_cell");
                TableCell {
                    id,
                    ..entity.clone()
                }
            } else {
                if map.contains_key(&entity.id) {
                    return Err(RepositoryError::DuplicateId {
                        entity: "TableCell",
                        id: entity.id,
                    });
                }
                entity.clone()
            };

            map.insert(new_entity.id, new_entity.clone());
            created.push(new_entity);
        }
        Ok(created)
    }

    fn get(&self, id: &EntityId) -> Result<Option<TableCell>, RepositoryError> {
        Ok(self.store.table_cells.read().unwrap().get(id).cloned())
    }

    fn get_multi(&self, ids: &[EntityId]) -> Result<Vec<Option<TableCell>>, RepositoryError> {
        let map = self.store.table_cells.read().unwrap();
        Ok(ids.iter().map(|id| map.get(id).cloned()).collect())
    }

    fn get_all(&self) -> Result<Vec<TableCell>, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .values()
            .cloned()
            .collect())
    }

    fn update(&mut self, entity: &TableCell) -> Result<TableCell, RepositoryError> {
        self.update_multi(std::slice::from_ref(entity))
            .map(|v| v.into_iter().next().unwrap())
    }

    fn update_multi(&mut self, entities: &[TableCell]) -> Result<Vec<TableCell>, RepositoryError> {
        let mut map = self.store.table_cells.write().unwrap();
        let mut result = Vec::with_capacity(entities.len());
        for entity in entities {
            let mut to_write = entity.clone();
            if let Some(existing) = map.get(&entity.id) {
                to_write.cell_frame = existing.cell_frame;
            }
            map.insert(entity.id, to_write.clone());
            result.push(to_write);
        }
        Ok(result)
    }

    fn update_with_relationships(
        &mut self,
        entity: &TableCell,
    ) -> Result<TableCell, RepositoryError> {
        self.update_with_relationships_multi(std::slice::from_ref(entity))
            .map(|v| v.into_iter().next().unwrap())
    }

    fn update_with_relationships_multi(
        &mut self,
        entities: &[TableCell],
    ) -> Result<Vec<TableCell>, RepositoryError> {
        let mut map = self.store.table_cells.write().unwrap();
        let mut result = Vec::with_capacity(entities.len());
        for entity in entities {
            map.insert(entity.id, entity.clone());
            result.push(entity.clone());
        }
        Ok(result)
    }

    fn remove(&mut self, id: &EntityId) -> Result<(), RepositoryError> {
        self.remove_multi(std::slice::from_ref(id))
    }

    fn remove_multi(&mut self, ids: &[EntityId]) -> Result<(), RepositoryError> {
        let removed: std::collections::HashSet<EntityId> = ids.iter().copied().collect();

        {
            let mut map = self.store.table_cells.write().unwrap();
            for id in ids {
                map.remove(id);
            }
        }

        // Backward cleanup: Tables whose `cells` Vec listed any
        // removed TableCell must strip those ids.
        {
            let mut table_map = self.store.tables.write().unwrap();
            let updates: Vec<(EntityId, crate::entities::Table)> = table_map
                .iter()
                .filter_map(|(tid, t)| {
                    if t.cells.iter().any(|cid| removed.contains(cid)) {
                        let mut updated = t.clone();
                        updated.cells.retain(|cid| !removed.contains(cid));
                        Some((*tid, updated))
                    } else {
                        None
                    }
                })
                .collect();
            for (tid, t) in updates {
                table_map.insert(tid, t);
            }
        }

        Ok(())
    }

    fn get_relationship(
        &self,
        id: &EntityId,
        field: &TableCellRelationshipField,
    ) -> Result<Vec<EntityId>, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .get(id)
            .map(|c| read_field(c, field))
            .unwrap_or_default())
    }

    fn get_relationship_many(
        &self,
        ids: &[EntityId],
        field: &TableCellRelationshipField,
    ) -> Result<StdHashMap<EntityId, Vec<EntityId>>, RepositoryError> {
        let map = self.store.table_cells.read().unwrap();
        let mut out = StdHashMap::new();
        for id in ids {
            out.insert(
                *id,
                map.get(id)
                    .map(|c| read_field(c, field))
                    .unwrap_or_default(),
            );
        }
        Ok(out)
    }

    fn get_relationship_count(
        &self,
        id: &EntityId,
        field: &TableCellRelationshipField,
    ) -> Result<usize, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .get(id)
            .map(|c| read_field(c, field).len())
            .unwrap_or(0))
    }

    fn get_relationship_in_range(
        &self,
        id: &EntityId,
        field: &TableCellRelationshipField,
        offset: usize,
        limit: usize,
    ) -> Result<Vec<EntityId>, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .get(id)
            .map(|c| {
                read_field(c, field)
                    .into_iter()
                    .skip(offset)
                    .take(limit)
                    .collect()
            })
            .unwrap_or_default())
    }

    fn get_relationships_from_right_ids(
        &self,
        field: &TableCellRelationshipField,
        right_ids: &[EntityId],
    ) -> Result<Vec<(EntityId, Vec<EntityId>)>, RepositoryError> {
        let map = self.store.table_cells.read().unwrap();
        let mut out = Vec::new();
        for (id, cell) in map.iter() {
            let list = read_field(cell, field);
            if right_ids.iter().any(|rid| list.contains(rid)) {
                out.push((*id, list));
            }
        }
        Ok(out)
    }

    fn set_relationship_multi(
        &mut self,
        field: &TableCellRelationshipField,
        relationships: Vec<(EntityId, Vec<EntityId>)>,
    ) -> Result<(), RepositoryError> {
        let mut map = self.store.table_cells.write().unwrap();
        for (id, ids) in relationships {
            if let Some(cell) = map.get_mut(&id) {
                write_field(cell, field, ids);
            }
        }
        Ok(())
    }

    fn set_relationship(
        &mut self,
        id: &EntityId,
        field: &TableCellRelationshipField,
        right_ids: &[EntityId],
    ) -> Result<(), RepositoryError> {
        let mut map = self.store.table_cells.write().unwrap();
        if let Some(cell) = map.get_mut(id) {
            write_field(cell, field, right_ids.to_vec());
        }
        Ok(())
    }

    fn move_relationship_ids(
        &mut self,
        id: &EntityId,
        field: &TableCellRelationshipField,
        ids_to_move: &[EntityId],
        new_index: i32,
    ) -> Result<Vec<EntityId>, RepositoryError> {
        let mut map = self.store.table_cells.write().unwrap();
        let Some(cell) = map.get_mut(id) else {
            return Ok(Vec::new());
        };
        let current = read_field(cell, field);
        let moved = reorder(current, ids_to_move, new_index);
        write_field(cell, field, moved.clone());
        Ok(moved)
    }
}

pub struct TableCellHashMapTableRO<'a> {
    store: &'a Store,
}

impl<'a> TableCellHashMapTableRO<'a> {
    pub fn new(store: &'a Store) -> Self {
        Self { store }
    }
}

impl<'a> TableCellTableRO for TableCellHashMapTableRO<'a> {
    fn get(&self, id: &EntityId) -> Result<Option<TableCell>, RepositoryError> {
        Ok(self.store.table_cells.read().unwrap().get(id).cloned())
    }

    fn get_multi(&self, ids: &[EntityId]) -> Result<Vec<Option<TableCell>>, RepositoryError> {
        let map = self.store.table_cells.read().unwrap();
        Ok(ids.iter().map(|id| map.get(id).cloned()).collect())
    }

    fn get_all(&self) -> Result<Vec<TableCell>, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .values()
            .cloned()
            .collect())
    }

    fn get_relationship(
        &self,
        id: &EntityId,
        field: &TableCellRelationshipField,
    ) -> Result<Vec<EntityId>, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .get(id)
            .map(|c| read_field(c, field))
            .unwrap_or_default())
    }

    fn get_relationship_many(
        &self,
        ids: &[EntityId],
        field: &TableCellRelationshipField,
    ) -> Result<StdHashMap<EntityId, Vec<EntityId>>, RepositoryError> {
        let map = self.store.table_cells.read().unwrap();
        let mut out = StdHashMap::new();
        for id in ids {
            out.insert(
                *id,
                map.get(id)
                    .map(|c| read_field(c, field))
                    .unwrap_or_default(),
            );
        }
        Ok(out)
    }

    fn get_relationship_count(
        &self,
        id: &EntityId,
        field: &TableCellRelationshipField,
    ) -> Result<usize, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .get(id)
            .map(|c| read_field(c, field).len())
            .unwrap_or(0))
    }

    fn get_relationship_in_range(
        &self,
        id: &EntityId,
        field: &TableCellRelationshipField,
        offset: usize,
        limit: usize,
    ) -> Result<Vec<EntityId>, RepositoryError> {
        Ok(self
            .store
            .table_cells
            .read()
            .unwrap()
            .get(id)
            .map(|c| {
                read_field(c, field)
                    .into_iter()
                    .skip(offset)
                    .take(limit)
                    .collect()
            })
            .unwrap_or_default())
    }

    fn get_relationships_from_right_ids(
        &self,
        field: &TableCellRelationshipField,
        right_ids: &[EntityId],
    ) -> Result<Vec<(EntityId, Vec<EntityId>)>, RepositoryError> {
        let map = self.store.table_cells.read().unwrap();
        let mut out = Vec::new();
        for (id, cell) in map.iter() {
            let list = read_field(cell, field);
            if right_ids.iter().any(|rid| list.contains(rid)) {
                out.push((*id, list));
            }
        }
        Ok(out)
    }
}

fn reorder(current: Vec<EntityId>, ids_to_move: &[EntityId], new_index: i32) -> Vec<EntityId> {
    if ids_to_move.is_empty() {
        return current;
    }
    let move_set: std::collections::HashSet<EntityId> = ids_to_move.iter().copied().collect();
    let mut remaining: Vec<EntityId> = current
        .into_iter()
        .filter(|eid| !move_set.contains(eid))
        .collect();
    let insert_pos = if new_index < 0 || (new_index as usize) > remaining.len() {
        remaining.len()
    } else {
        new_index as usize
    };
    for (i, &eid) in ids_to_move.iter().enumerate() {
        remaining.insert(insert_pos + i, eid);
    }
    remaining
}