discret 0.6.2

A backend to create peer to peer (P2P) applications, using a GraphQL inspired syntax
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
use std::{
    collections::{HashMap, HashSet},
    hash::Hash,
};

use super::{
    daily_log::DailyMutations,
    sqlite_database::{RowMappingFn, Writeable},
    Error, Result, VEC_OVERHEAD,
};
use crate::{
    date_utils::{date, date_next_day, now},
    security::{import_verifying_key, new_uid, SigningKey, Uid},
};

use rusqlite::{params_from_iter, Connection, OptionalExtension};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use tokio::sync::mpsc;

impl Default for Node {
    fn default() -> Self {
        let date = now();
        Self {
            id: new_uid(),
            room_id: None,
            cdate: date,
            mdate: date,
            _entity: "".to_string(),
            _json: None,
            _binary: None,
            verifying_key: vec![],
            _signature: vec![],
            _local_id: None,
        }
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Node {
    pub id: Uid,
    pub room_id: Option<Uid>,
    pub cdate: i64,
    pub mdate: i64,
    pub _entity: String,
    pub _json: Option<String>,
    pub _binary: Option<Vec<u8>>,
    pub verifying_key: Vec<u8>,
    pub _signature: Vec<u8>,

    //_local_id stores the rowid of the Node for update purpose.
    // This id only make sense to the local sqlite database.
    // It will not be transmitted during synchronisation
    #[serde(skip)]
    pub _local_id: Option<i64>,
}
impl Node {
    ///
    /// Creates the required tables and indexes
    ///
    /// _node_fts is the table that provides the full text search functionality
    ///
    /// _nodes keeps its rowid because it is required for the full text seach.
    ///
    pub fn create_tables(conn: &Connection) -> Result<()> {
        //system table stores compressed text and json
        conn.execute(
            "
        CREATE TABLE _node (
            id BLOB NOT NULL,
            room_id BLOB,
            cdate INTEGER  NOT NULL,
            mdate INTEGER  NOT NULL,
            _entity TEXT  NOT NULL,
            _json TEXT,
            _binary BLOB,
            verifying_key BLOB NOT NULL,
            _signature BLOB NOT NULL
        ) STRICT",
            [],
        )?;

        conn.execute(
            "CREATE  INDEX _node_id__entity ON _node (id, _entity, mdate)",
            [],
        )?;

        conn.execute(
            "CREATE INDEX _node_entity ON _node (_entity, room_id, mdate)",
            [],
        )?;

        //the full text search virtual table
        conn.execute(
            "CREATE VIRTUAL TABLE _node_fts USING fts5(text, content='' , tokenize='trigram', detail=full)",
            [],
        )?;

        // conn.execute(
        //     "CREATE VIRTUAL TABLE _node_fts USING fts5(text, content='' , prefix='2,3' , detail=none)",
        //     [],
        // )?;

        //log the deletions for synchronisation
        conn.execute(
            "CREATE TABLE _node_deletion_log (
            room_id BLOB,
            id BLOB,
            mdate INTEGER,
            entity TEXT,
            deletion_date INTEGER,
            verifying_key BLOB NOT NULL,
            signature BLOB NOT NULL,
            PRIMARY KEY(room_id, deletion_date, id, entity )
        ) WITHOUT ROWID, STRICT",
            [],
        )?;

        Ok(())
    }

    pub fn eq(&self, node: &Node) -> bool {
        let room_id = match (&self.room_id, &node.room_id) {
            (Some(a), Some(b)) => a.eq(b),
            (None, None) => true,
            _ => false,
        };

        let _json = match (&self._json, &node._json) {
            (Some(a), Some(b)) => a.eq(b),
            (None, None) => true,
            _ => false,
        };

        let _binary = match (&self._binary, &node._binary) {
            (Some(a), Some(b)) => a.eq(b),
            (None, None) => true,
            _ => false,
        };

        room_id
            && _json
            && _binary
            && self.id.eq(&node.id)
            && self.cdate.eq(&node.cdate)
            && self.mdate.eq(&node.mdate)
            && self._entity.eq(&node._entity)
            && self.verifying_key.eq(&node.verifying_key)
    }

    pub fn hash(&self) -> Result<blake3::Hash> {
        let mut hasher = blake3::Hasher::new();
        hasher.update(&self.id);
        if let Some(rid) = &self.room_id {
            hasher.update(rid);
        }
        hasher.update(&self.cdate.to_le_bytes());
        hasher.update(&self.mdate.to_le_bytes());
        hasher.update(self._entity.as_bytes());

        if let Some(v) = &self._json {
            let serialized = serde_json::to_string(v)?;
            hasher.update(serialized.as_bytes());
        }

        if let Some(v) = &self._binary {
            hasher.update(v);
        }

        hasher.update(&self.verifying_key);
        Ok(hasher.finalize())
    }

    ///
    /// check the node's signature
    ///
    pub fn verify(&self) -> Result<()> {
        if self._entity.is_empty() {
            return Err(Error::EmptyNodeEntity());
        }

        //ensure that the Json field is an Object field
        if let Some(v) = &self._json {
            let value: Value = serde_json::from_str(v)?;
            if value.as_object().is_none() {
                return Err(Error::InvalidNode(String::from(
                    "json field is not an Object",
                )));
            }
        }
        let hash = self.hash()?;

        let pub_key = import_verifying_key(&self.verifying_key)?;
        pub_key.verify(hash.as_bytes(), &self._signature)?;

        Ok(())
    }

    ///
    /// sign the node after performing some checks
    ///
    pub fn sign(&mut self, signing_key: &impl SigningKey) -> Result<()> {
        self.verifying_key = signing_key.export_verifying_key();

        if self._entity.is_empty() {
            return Err(Error::EmptyNodeEntity());
        }
        //ensure that the Json field is an Object field
        if let Some(v) = &self._json {
            let value: Value = serde_json::from_str(v)?;
            if value.as_object().is_none() {
                return Err(Error::InvalidNode(String::from(
                    "json field is not an Object",
                )));
            }
        }

        let hash = self.hash()?;
        let signature = signing_key.sign(hash.as_bytes());
        self._signature = signature;

        Ok(())
    }

    ///
    /// Convert sql query result into a Node
    ///
    pub const NODE_MAPPING: RowMappingFn<Self> = |row| {
        Ok(Box::new(Node {
            id: row.get(0)?,
            room_id: row.get(1)?,
            cdate: row.get(2)?,
            mdate: row.get(3)?,
            _entity: row.get(4)?,
            _json: row.get(5)?,
            _binary: row.get(6)?,
            verifying_key: row.get(7)?,
            _signature: row.get(8)?,
            _local_id: row.get(9)?,
        }))
    };

    ///
    /// Retrieve a node using its primary key
    ///
    pub fn get_with_entity(
        id: &Uid,
        entity: &str,
        conn: &Connection,
    ) -> std::result::Result<Option<Box<Node>>, rusqlite::Error> {
        const QUERY: &str = "
            SELECT id , room_id, cdate, mdate, _entity,_json, _binary, verifying_key, _signature, rowid  
            FROM _node 
            WHERE 
            id = ? AND 
            _entity = ?";
        let mut get_stmt = conn.prepare_cached(QUERY)?;
        let node = get_stmt
            .query_row((id, entity), Self::NODE_MAPPING)
            .optional()?;
        Ok(node)
    }

    pub const NODE_ROOM_QUERY: &'static str = "
    SELECT id , room_id, cdate, mdate, _entity,_json, _binary, verifying_key, _signature, rowid  
    FROM _node 
    WHERE 
        id = ? AND 
        room_id = ? AND  
        _entity = ?";
    ///
    /// Retrieve a node using its primary key
    ///
    pub fn get_in_room(
        id: &Uid,
        room_id: &Uid,
        entity: &str,
        conn: &Connection,
    ) -> std::result::Result<Option<Box<Node>>, rusqlite::Error> {
        let mut get_stmt = conn.prepare_cached(Self::NODE_ROOM_QUERY)?;
        let node = get_stmt
            .query_row((id, room_id, entity), Self::NODE_MAPPING)
            .optional()?;
        Ok(node)
    }

    ///
    /// Low level method to delete a node
    /// This method is intended to be used in the write thread wich perform operations in larges batches.
    /// This method does not check for data integrity to avoid any errors that would cause the rollback of a potentially large number of write queries
    ///
    /// Nodes are soft deleted first. Upon deletion they are updated by prepending '$' to the _entity field field value.
    ///
    /// Deleting an allready deleted node wil result in an hard deletion
    /// Hard deletions are not synchronized
    ///
    pub fn delete(id: &Uid, conn: &Connection) -> std::result::Result<(), rusqlite::Error> {
        let mut delete_stmt = conn.prepare_cached("DELETE FROM _node WHERE id=? ")?;
        delete_stmt.execute([id])?;
        Ok(())
    }

    ///
    /// Verify the existence of a specific Node
    ///
    ///
    pub fn exist(id: &Uid, entity: &str, conn: &Connection) -> Result<bool> {
        let mut exists_stmt =
            conn.prepare_cached("SELECT 1 FROM _node WHERE id = ? AND _entity = ?")?;
        let node: Option<i64> = exists_stmt
            .query_row((id, entity), |row| row.get(0))
            .optional()?;

        Ok(node.is_some())
    }

    ///
    /// Intended to be used in the GraphDatase insert thread.
    /// There is only one insert thread, so we only do the minimal amount of query to avoid any overhead.
    /// The parameters: rowid, previous_fts are retrieved in a select thread
    ///
    pub fn write(
        &mut self,
        conn: &Connection,
        index: bool,
        old_fts_str: &Option<String>,
        node_fts_str: &Option<String>,
    ) -> std::result::Result<(), rusqlite::Error> {
        static UPDATE_FTS_QUERY: &str = "INSERT INTO _node_fts (rowid, text) VALUES (?, ?)";
        if let Some(id) = self._local_id {
            if index {
                if let Some(previous) = old_fts_str {
                    let mut delete_fts_stmt = conn.prepare_cached(
                        "INSERT INTO _node_fts (_node_fts, rowid, text) VALUES('delete', ?, ?)",
                    )?;
                    delete_fts_stmt.execute((id, previous))?;
                }

                if let Some(current) = node_fts_str {
                    let mut insert_fts_stmt = conn.prepare_cached(UPDATE_FTS_QUERY)?;
                    insert_fts_stmt.execute((id, current))?;
                }
            }

            let mut update_node_stmt = conn.prepare_cached(
                "
            UPDATE _node SET 
                id = ?,
                room_id = ?,
                cdate = ?,
                mdate = ?,
                _entity = ?,
                _json = ?,
                _binary = ?,
                verifying_key = ?,
                _signature = ?
            WHERE
                rowid = ? ",
            )?;

            update_node_stmt.execute((
                &self.id,
                &self.room_id,
                &self.cdate,
                &self.mdate,
                &self._entity,
                &self._json,
                &self._binary,
                &self.verifying_key,
                &self._signature,
                id,
            ))?;
        } else {
            let mut insert_stmt = conn.prepare_cached(
                "INSERT INTO _node ( 
                    id,
                    room_id,
                    cdate,
                    mdate,
                    _entity,
                    _json,
                    _binary,
                    verifying_key,
                    _signature
                ) VALUES (
                    ?, ?, ?, ?, ?, ?, ?, ?, ?
                )",
            )?;
            let rowid = insert_stmt.insert((
                &self.id,
                &self.room_id,
                &self.cdate,
                &self.mdate,
                &self._entity,
                &self._json,
                &self._binary,
                &self.verifying_key,
                &self._signature,
            ))?;
            self._local_id = Some(rowid);
            if index {
                if let Some(current) = node_fts_str {
                    let mut insert_fts_stmt = conn.prepare_cached(UPDATE_FTS_QUERY)?;
                    insert_fts_stmt.execute((rowid, current))?;
                }
            }
        }
        Ok(())
    }

    //
    // retrieve all node id for a room at a specific date
    // used for synchonisation
    //
    pub fn get_daily_nodes_for_room(
        room_id: &Uid,
        entity: String,
        day: i64,
        batch_size: usize,
        sender: &mpsc::Sender<Result<HashSet<NodeIdentifier>>>,
        conn: &Connection,
    ) -> Result<()> {
        let query = "SELECT id, mdate, _signature
            FROM _node 
            WHERE 
                room_id = ? AND
                _entity = ? AND
                mdate >= ? AND mdate < ? 
            ORDER BY mdate DESC";
        let mut stmt = conn.prepare_cached(query)?;

        let mut rows = stmt.query((room_id, entity, date(day), date_next_day(day)))?;
        let mut res = HashSet::new();
        let mut len = 0;
        while let Some(row) = rows.next()? {
            let node = NodeIdentifier {
                id: row.get(0)?,
                mdate: row.get(1)?,
                signature: row.get(2)?,
            };

            let size = bincode::serialized_size(&node)?;
            let insert_len = len + size + VEC_OVERHEAD;
            if insert_len > batch_size as u64 {
                let ready = res;
                res = HashSet::new();
                len = 0;
                let s = sender.blocking_send(Ok(ready));
                if s.is_err() {
                    break;
                }
            } else {
                len = insert_len;
            }

            res.insert(node);
        }
        if !res.is_empty() {
            let _ = sender.blocking_send(Ok(res));
        }
        Ok(())
    }

    //
    // Filter the node id set by removing unwanted nodes
    // remaining id will be requested during synchonisation
    // the set is provided by the get_ids_for_room_at method
    //
    pub fn filter_existing(
        node_ids: &mut HashSet<NodeIdentifier>,
        conn: &Connection,
    ) -> Result<Vec<NodeToInsert>> {
        let it = &mut node_ids.iter().peekable();
        let mut q = String::new();
        let mut ids = Vec::new();
        while let Some(node) = it.next() {
            q.push('?');
            if it.peek().is_some() {
                q.push(',');
            }
            ids.push(&node.id);
        }

        let query = format!("
        SELECT id , room_id, cdate, mdate, _entity,_json, _binary, verifying_key, _signature, rowid  
        FROM _node 
        WHERE 
         id in ({}) ",
            q,);

        let mut stmt = conn.prepare(&query)?;
        let mut rows = stmt.query(params_from_iter(ids.iter()))?;

        let mut result = Vec::new();
        while let Some(row) = rows.next()? {
            let node = Node {
                id: row.get(0)?,
                room_id: row.get(1)?,
                cdate: row.get(2)?,
                mdate: row.get(3)?,
                _entity: row.get(4)?,
                _json: row.get(5)?,
                _binary: row.get(6)?,
                verifying_key: row.get(7)?,
                _signature: row.get(8)?,
                _local_id: row.get(9)?,
            };

            let existing = NodeIdentifier {
                id: node.id,
                mdate: node.mdate,
                signature: node._signature,
            };
            #[allow(clippy::if_same_then_else)]
            if let Some(new) = node_ids.get(&existing) {
                //remove the incoming node if it is older to that the existing one
                if new.mdate < existing.mdate {
                    node_ids.remove(&existing);
                } else
                //Removes the incoming node if
                //  mdate are equals AND
                //      signature is lower than the existing one: arbitrary heuristic to handle the unlucky case of two updates at the same millisecond
                //      OR signature are equals: no need to update
                if (new.mdate.eq(&existing.mdate)) && (new.signature <= existing.signature) {
                    node_ids.remove(&existing);
                } else {
                    let node_id = node_ids.take(&existing).unwrap();

                    let old_fts = if let Some(json_str) = node._json {
                        let json: serde_json::Value = serde_json::from_str(&json_str)?;
                        let mut old_tfs = String::new();
                        extract_json(&json, &mut old_tfs)?;
                        Some(old_tfs)
                    } else {
                        None
                    };

                    let node_to_insert = NodeToInsert {
                        id: node_id.id,
                        node: None,
                        entity_name: None,
                        index: false,
                        old_local_id: node._local_id,
                        old_room_id: node.room_id,
                        old_mdate: node.mdate,
                        old_verifying_key: Some(node.verifying_key),
                        old_fts_str: old_fts,
                        node_fts_str: None,
                    };

                    result.push(node_to_insert);
                }
            }
        }

        for node_id in node_ids.drain() {
            let node_to_insert = NodeToInsert {
                id: node_id.id,
                node: None,
                entity_name: None,
                index: false,
                old_local_id: None,
                old_room_id: None,
                old_mdate: 0,
                old_verifying_key: None,
                old_fts_str: None,
                node_fts_str: None,
            };

            result.push(node_to_insert);
        }

        Ok(result)
    }

    pub fn filtered_by_room(
        room_id: &Uid,
        node_ids: Vec<Uid>,
        batch_size: usize,
        sender: &mpsc::Sender<Result<Vec<Node>>>,
        conn: &Connection,
    ) -> Result<()> {
        let it = &mut node_ids.iter().peekable();
        let mut q = String::new();
        while let Some(_) = it.next() {
            q.push('?');
            if it.peek().is_some() {
                q.push(',');
            }
        }

        let query = format!(
            "
        SELECT 
            id, room_id, cdate, mdate, _entity, _json, _binary, verifying_key, _signature, rowid
        FROM _node
        WHERE 
            id in ({}) 
        ",
            q
        );

        let mut stmt = conn.prepare(&query)?;
        let mut rows = stmt.query(params_from_iter(node_ids.iter()))?;

        let mut len = 0;
        let mut res: Vec<Node> = Vec::new();
        while let Some(row) = rows.next()? {
            let id: Uid = row.get(0)?;
            let db_room_id: Option<Uid> = row.get(1)?;
            match &db_room_id {
                Some(rid) => {
                    if !rid.eq(room_id) {
                        continue;
                    }
                }
                None => {
                    continue;
                }
            }
            let node = Node {
                id,
                room_id: db_room_id,
                cdate: row.get(2)?,
                mdate: row.get(3)?,
                _entity: row.get(4)?,
                _json: row.get(5)?,
                _binary: row.get(6)?,
                verifying_key: row.get(7)?,
                _signature: row.get(8)?,
                _local_id: row.get(9)?,
            };
            let size = bincode::serialized_size(&node)?;
            let insert_len = len + size + VEC_OVERHEAD;

            if insert_len > batch_size as u64 {
                let ready = res;
                res = Vec::new();
                len = 0;
                let s = sender.blocking_send(Ok(ready));
                if s.is_err() {
                    break;
                }
            } else {
                len = insert_len;
            }
            res.push(node);
        }
        if !res.is_empty() {
            let _ = sender.blocking_send(Ok(res));
        }
        Ok(())
    }
}
impl Writeable for Node {
    fn write(&mut self, conn: &Connection) -> std::result::Result<(), rusqlite::Error> {
        if let Some(id) = self._local_id {
            let mut update_node_stmt = conn.prepare_cached(
                "
            UPDATE _node SET 
                id = ?,
                room_id = ?,
                cdate = ?,
                mdate = ?,
                _entity = ?,
                _json = ?,
                _binary = ?,
                verifying_key = ?,
                _signature = ?
            WHERE
                rowid = ? ",
            )?;

            update_node_stmt.execute((
                &self.id,
                &self.room_id,
                &self.cdate,
                &self.mdate,
                &self._entity,
                &self._json,
                &self._binary,
                &self.verifying_key,
                &self._signature,
                id,
            ))?;
        } else {
            let mut insert_stmt = conn.prepare_cached(
                "INSERT INTO _node ( 
                    id,
                    room_id,
                    cdate,
                    mdate,
                    _entity,
                    _json,
                    _binary,
                    verifying_key,
                    _signature
                ) VALUES (
                    ?, ?, ?, ?, ?, ?, ?, ?, ?
                )",
            )?;
            let rowid = insert_stmt.insert((
                &self.id,
                &self.room_id,
                &self.cdate,
                &self.mdate,
                &self._entity,
                &self._json,
                &self._binary,
                &self.verifying_key,
                &self._signature,
            ))?;
            self._local_id = Some(rowid);
        }
        Ok(())
    }
}
#[derive(Serialize, Deserialize, Debug)]
pub struct NodeIdentifier {
    pub id: Uid,
    pub mdate: i64,
    pub signature: Vec<u8>,
}
impl Eq for NodeIdentifier {}
impl PartialEq for NodeIdentifier {
    fn eq(&self, other: &Self) -> bool {
        self.id == other.id
    }
}
impl Hash for NodeIdentifier {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.id.hash(state);
    }
}

///
/// data structure that will gather all information required to properly insert a node
/// used during synchronisation
///
#[derive(Default)]
pub struct NodeToInsert {
    pub id: Uid,
    pub node: Option<Node>,
    pub entity_name: Option<String>,
    pub index: bool,
    pub old_room_id: Option<Uid>,
    pub old_mdate: i64,
    pub old_verifying_key: Option<Vec<u8>>,
    pub old_local_id: Option<i64>,
    pub old_fts_str: Option<String>,
    pub node_fts_str: Option<String>,
}
impl NodeToInsert {
    pub fn update_daily_logs(&self, daily_log: &mut DailyMutations) {
        if self.node.is_none() {
            return;
        }
        let node = self.node.as_ref().unwrap();

        if let Some(room_id) = &node.room_id {
            if let Some(old_id) = &self.old_room_id {
                if !room_id.eq(old_id) {
                    daily_log.set_need_update(*old_id, &node._entity, self.old_mdate);
                }
            }
            daily_log.set_need_update(*room_id, &node._entity, node.mdate);
        }
    }
}

impl Writeable for NodeToInsert {
    fn write(&mut self, conn: &Connection) -> std::result::Result<(), rusqlite::Error> {
        if self.node.is_none() {
            return Ok(());
        }
        let node = self.node.as_mut().unwrap();
        node.write(conn, self.index, &self.old_fts_str, &self.node_fts_str)?;

        Ok(())
    }
}

pub type DeletionEntriesWithAuthors = HashMap<Uid, (NodeDeletionEntry, Option<Vec<u8>>)>;

#[derive(Serialize, Deserialize, Debug)]
pub struct NodeDeletionEntry {
    pub room_id: Uid,
    pub id: Uid,
    pub entity: String,
    pub mdate: i64,
    pub deletion_date: i64,
    pub verifying_key: Vec<u8>,
    pub signature: Vec<u8>,
    //used for synchronisation authorisation
    #[serde(skip)]
    pub entity_name: Option<String>,
}
impl NodeDeletionEntry {
    pub fn build(
        room: Uid,
        node: &Node,
        deletion_date: i64,
        signing_key: &impl SigningKey,
    ) -> Self {
        let verifying_key = signing_key.export_verifying_key();
        let signature = Self::sign(&room, node, deletion_date, &verifying_key, signing_key);
        Self {
            room_id: room,
            id: node.id,
            entity: node._entity.clone(),
            mdate: node.mdate,
            deletion_date,
            verifying_key,
            signature,
            entity_name: None,
        }
    }

    pub fn sign(
        room: &[u8],
        node: &Node,
        deletion_date: i64,
        verifying_key: &[u8],
        signing_key: &impl SigningKey,
    ) -> Vec<u8> {
        let mut hasher = blake3::Hasher::new();
        hasher.update(room);
        hasher.update(&node.id);
        hasher.update(&node.mdate.to_le_bytes());
        hasher.update(node._entity.as_bytes());
        hasher.update(&deletion_date.to_le_bytes());
        hasher.update(verifying_key);
        let hash = hasher.finalize();
        signing_key.sign(hash.as_bytes())
    }

    pub fn verify(&self) -> Result<()> {
        let mut hasher = blake3::Hasher::new();
        hasher.update(&self.room_id);
        hasher.update(&self.id);
        hasher.update(&self.mdate.to_le_bytes());
        hasher.update(self.entity.as_bytes());
        hasher.update(&self.deletion_date.to_le_bytes());
        hasher.update(&self.verifying_key);
        let hash = hasher.finalize();
        let pub_key = import_verifying_key(&self.verifying_key)?;
        pub_key.verify(hash.as_bytes(), &self.signature)?;
        Ok(())
    }

    pub fn get_entries(
        room_id: &Uid,
        entity: String,
        del_date: i64,
        batch_size: usize,
        sender: &mpsc::Sender<Result<Vec<NodeDeletionEntry>>>,
        conn: &Connection,
    ) -> Result<()> {
        let mut stmt = conn.prepare_cached(
            "
            SELECT 
                room_id ,
                id,
                entity,
                mdate,
                deletion_date,
                verifying_key,
                signature
            FROM _node_deletion_log
            WHERE 
                room_id = ? AND
                entity = ? AND
                deletion_date >= ? AND deletion_date < ? 
        ",
        )?;

        let mut rows = stmt.query((room_id, entity, date(del_date), date_next_day(del_date)))?;
        let mut res = Vec::new();
        let mut len = 0;
        while let Some(row) = rows.next()? {
            let deletion_lo = Self {
                room_id: row.get(0)?,
                id: row.get(1)?,
                entity: row.get(2)?,
                mdate: row.get(3)?,
                deletion_date: row.get(4)?,
                verifying_key: row.get(5)?,
                signature: row.get(6)?,
                entity_name: None,
            };
            let size = bincode::serialized_size(&deletion_lo)?;
            let insert_len = len + size + VEC_OVERHEAD;
            if insert_len > batch_size as u64 {
                let ready = res;
                res = Vec::new();
                len = 0;
                let s = sender.blocking_send(Ok(ready));
                if s.is_err() {
                    break;
                }
            } else {
                len = insert_len;
            }
            res.push(deletion_lo);
        }
        if !res.is_empty() {
            let _ = sender.blocking_send(Ok(res));
        }

        Ok(())
    }

    pub fn with_previous_authors(
        nodes: Vec<Self>,
        conn: &Connection,
    ) -> Result<DeletionEntriesWithAuthors> {
        let mut map = HashMap::new();
        let mut nodes_id: Vec<Uid> = Vec::with_capacity(nodes.len());
        let it = &mut nodes.into_iter().peekable();

        let mut in_clause = String::new();
        while let Some(nid) = it.next() {
            in_clause.push('?');
            nodes_id.push(nid.id);
            map.insert(nid.id, (nid, None));
            if it.peek().is_some() {
                in_clause.push(',');
            }
        }
        let query = format!(
            "SELECT id, verifying_key  FROM _node WHERE id in ({})",
            in_clause
        );
        let mut stmt = conn.prepare(&query)?;
        let mut rows = stmt.query(params_from_iter(nodes_id.iter()))?;
        while let Some(row) = rows.next()? {
            let id: Uid = row.get(0)?;
            let verifying_key: Option<Vec<u8>> = row.get(1)?;
            if let Some(entry) = map.get_mut(&id) {
                entry.1 = verifying_key;
            }
        }
        Ok(map)
    }

    pub fn delete_all(
        nodes: &mut Vec<Self>,
        daily_log: &mut DailyMutations,
        conn: &Connection,
    ) -> std::result::Result<(), rusqlite::Error> {
        let query = "DELETE FROM _node WHERE room_id=? AND id=?";
        let mut stmt = conn.prepare_cached(query)?;
        for node in nodes {
            stmt.execute((node.room_id, node.id))?;
            node.write(conn)?;
            daily_log.set_need_update(node.room_id, &node.entity, node.deletion_date);
            daily_log.set_need_update(node.room_id, &node.entity, node.mdate);
        }

        Ok(())
    }
}
impl Writeable for NodeDeletionEntry {
    fn write(&mut self, conn: &Connection) -> std::result::Result<(), rusqlite::Error> {
        let mut insert_stmt = conn.prepare_cached(
            "INSERT OR REPLACE INTO _node_deletion_log (
                room_id,
                id,
                entity,
                mdate,
                deletion_date,
                verifying_key,
                signature
            ) VALUES (?,?,?,?,?,?,?)
        ",
        )?;
        insert_stmt.execute((
            &self.room_id,
            &self.id,
            &self.entity,
            &self.mdate,
            &self.deletion_date,
            &self.verifying_key,
            &self.signature,
        ))?;
        Ok(())
    }
}

///
/// Extract all text from a json object for full text search
///
pub fn extract_json(val: &serde_json::Value, buff: &mut String) -> Result<()> {
    match val {
        serde_json::Value::String(v) => {
            buff.push_str(v);
            buff.push(' ');
            Ok(())
        }
        serde_json::Value::Array(arr) => {
            for v in arr {
                extract_json(v, buff)?;
            }
            Ok(())
        }
        serde_json::Value::Object(map) => {
            for v in map {
                extract_json(v.1, buff)?;
            }
            Ok(())
        }
        _ => Ok(()),
    }
}

#[cfg(test)]
mod tests {

    use crate::security::{new_uid, Ed25519SigningKey};

    use super::*;

    #[test]
    fn node_signature() {
        let keypair = Ed25519SigningKey::new();
        let mut node = Node {
            _entity: "TEST".to_string(),
            ..Default::default()
        };
        node.sign(&keypair).unwrap();
        node.verify().unwrap();

        node.id = new_uid();
        node.sign(&keypair).unwrap();
        node.verify().unwrap();

        node.cdate = node.cdate + 1;
        node.verify()
            .expect_err("cdate has changed, the verification fails");
        node.sign(&keypair).unwrap();
        node.verify().unwrap();

        node.mdate = node.mdate + 1;
        node.verify()
            .expect_err("mdate has changed, the verification fails");
        node.sign(&keypair).unwrap();
        node.verify().unwrap();

        let bad_json = r#"["expecting an object, not an array"]"#.to_string();
        node._json = Some(bad_json);
        node.verify().expect_err("Invalid json");
        node.sign(&keypair).expect_err("Invalid json");
        let good_json = r#"{
            "randomtext": "Lorem ipsum dolor sit amet"
        }"#
        .to_string();
        node._json = Some(good_json);
        node.verify()
            .expect_err("_json has changed, verification fails");
        node.sign(&keypair).unwrap();
        node.verify().unwrap();

        node._binary = Some(vec![1, 2, 3]);
        node.verify()
            .expect_err("_json changed, the verification fails");
        node.sign(&keypair).unwrap();
        node.verify().unwrap();

        node.verifying_key = b"badkey".to_vec();
        node.verify()
            .expect_err("_pub_key has changed, the verifcation fails");
        node.sign(&keypair).unwrap();
        assert_ne!(b"badkey".to_vec(), node.verifying_key);
        node.verify().unwrap();
    }

    #[test]
    fn node_fts() {
        let conn = Connection::open_in_memory().unwrap();
        Node::create_tables(&conn).unwrap();

        let keypair = Ed25519SigningKey::new();

        let good_json = r#"{
            "randomtext": "Lorem ipsum dolor sit amet"
        }"#
        .to_string();

        let mut node = Node {
            _entity: "TEST".to_string(),
            cdate: now(),
            _json: Some(good_json),
            ..Default::default()
        };
        node.sign(&keypair).unwrap();
        node.write(
            &conn,
            true,
            &None,
            &Some(String::from("Lorem ipsum dolor sit amet")),
        )
        .unwrap();

        let mut stmt = conn
            .prepare(
                "
        SELECT id ,room_id, cdate, mdate, _entity,_json, _binary, verifying_key, _signature, _node.rowid 
        FROM _node_fts JOIN _node ON _node_fts.rowid=_node.rowid 
        WHERE _node_fts MATCH ? 
        ORDER BY rank;",
            )
            .unwrap();
        let results = stmt.query_map(["Lorem"], Node::NODE_MAPPING).unwrap();
        let mut res = vec![];
        for node in results {
            let node = node.unwrap();
            node.verify().unwrap();
            res.push(node);
        }
        assert_eq!(1, res.len());

        let results = stmt.query_map(["randomtext"], Node::NODE_MAPPING).unwrap();
        assert_eq!(0, results.count()); //JSON fields name are not indexed

        node._json = Some(
            r#"{
            "randomtext": "ipsum dolor sit amet Conjectur"
        }"#
            .to_string(),
        );

        node.write(
            &conn,
            true,
            &Some(String::from("Lorem ipsum dolor sit amet")),
            &Some(String::from("ipsum dolor sit amet Conjectur")),
        )
        .unwrap();

        let results = stmt.query_map(["lorem"], Node::NODE_MAPPING).unwrap();
        assert_eq!(0, results.count()); //Search table is correctly updated

        let results = stmt.query_map(["conjectur"], Node::NODE_MAPPING).unwrap();
        assert_eq!(1, results.count()); //Search table is correctly updated

        //
        // Test disabling indexing
        //
        node.write(
            &conn,
            false,
            &Some(String::from("ipsum dolor sit amet Conjectur")),
            &Some(String::from("will not be inserted")),
        )
        .unwrap();

        let results = stmt.query_map(["lorem"], Node::NODE_MAPPING).unwrap();
        assert_eq!(0, results.count()); //Search table is correctly updated

        let results = stmt.query_map(["inserted"], Node::NODE_MAPPING).unwrap();
        assert_eq!(0, results.count()); //Search table is correctly updated
    }

    #[test]
    fn mutate_test() {
        let conn = Connection::open_in_memory().unwrap();
        Node::create_tables(&conn).unwrap();

        let keypair = Ed25519SigningKey::new();

        let good_json = r#"{
            "randomtext": "Lorem ipsum dolor sit amet"
        }"#
        .to_string();

        let mut node = Node {
            _entity: "TEST".to_string(),
            cdate: now(),
            _json: Some(good_json),
            ..Default::default()
        };
        node.sign(&keypair).unwrap();
        node.write(
            &conn,
            true,
            &None,
            &Some(String::from("Lorem ipsum dolor sit amet")),
        )
        .unwrap();

        node._json = Some(
            r#"{
            "randomtext": "dolor sit amet"
        }"#
            .to_string(),
        );

        node.sign(&keypair).unwrap();
        node.write(
            &conn,
            true,
            &None,
            &Some(String::from("Lorem ipsum dolor sit amet")),
        )
        .unwrap();
    }

    #[test]
    fn delete() {
        let conn = Connection::open_in_memory().unwrap();
        Node::create_tables(&conn).unwrap();

        let signing_key = Ed25519SigningKey::new();
        let entity = "Pet";

        let mut node = Node {
            _entity: String::from(entity),
            ..Default::default()
        };
        node.sign(&signing_key).unwrap();
        node.write(&conn, false, &None, &None).unwrap();

        let new_node = Node::get_with_entity(&node.id, entity, &conn).unwrap();
        assert!(new_node.is_some());

        Node::delete(&node.id, &conn).unwrap();
        let node_exists = Node::exist(&node.id, entity, &conn).unwrap();
        assert!(!node_exists);

        let mut exists_stmt = conn.prepare("SELECT count(1) FROM _node").unwrap();
        let num_nodes: i64 = exists_stmt.query_row([], |row| Ok(row.get(0)?)).unwrap();
        assert_eq!(0, num_nodes);
    }

    #[test]
    fn node_deletion_log() {
        let conn = Connection::open_in_memory().unwrap();
        Node::create_tables(&conn).unwrap();

        let signing_key = Ed25519SigningKey::new();
        let entity = "Pet";
        let room_id = new_uid();
        let mut node = Node {
            room_id: Some(room_id),
            _entity: String::from(entity),
            ..Default::default()
        };
        node.sign(&signing_key).unwrap();
        node.write(&conn, false, &None, &None).unwrap();
        Node::delete(&node.id, &conn).unwrap();

        let mut node_deletion_log = NodeDeletionEntry::build(room_id, &node, now(), &signing_key);
        node_deletion_log.write(&conn).unwrap();

        let batch_size = 4096;
        let (reply, mut receive) = mpsc::channel::<Result<Vec<NodeDeletionEntry>>>(1);

        NodeDeletionEntry::get_entries(
            &room_id,
            entity.to_string(),
            date(node_deletion_log.deletion_date),
            batch_size,
            &reply,
            &conn,
        )
        .unwrap();
        let deletion_logs = receive.blocking_recv().unwrap().unwrap();
        let entry = &deletion_logs[0];

        assert_eq!(&node.room_id.unwrap(), &entry.room_id);
        assert_eq!(&node.id, &entry.id);
        assert_eq!(&node._entity, &entry.entity);
        assert_eq!(&node.mdate, &entry.mdate);
    }

    #[test]
    fn get_room_nodes_at() {
        let conn = Connection::open_in_memory().unwrap();
        Node::create_tables(&conn).unwrap();

        let signing_key = Ed25519SigningKey::new();
        let entity = "Pet";
        let room_id1 = new_uid();
        let date = 1000;
        let mut node1 = Node {
            room_id: Some(room_id1.clone()),
            _entity: String::from(entity),
            mdate: date,
            ..Default::default()
        };
        node1.sign(&signing_key).unwrap();
        node1.write(&conn, false, &None, &None).unwrap();

        let mut node2 = Node {
            room_id: Some(room_id1.clone()),
            _entity: String::from(entity),
            mdate: date,
            ..Default::default()
        };
        node2.sign(&signing_key).unwrap();
        node2.write(&conn, false, &None, &None).unwrap();

        let mut node3 = Node {
            room_id: Some(room_id1.clone()),
            _entity: String::from(entity),
            mdate: date,
            ..Default::default()
        };
        node3.sign(&signing_key).unwrap();
        node3.write(&conn, false, &None, &None).unwrap();
        let (reply, mut receive) = mpsc::channel::<Result<HashSet<NodeIdentifier>>>(1);

        Node::get_daily_nodes_for_room(
            &room_id1,
            entity.to_string(),
            date,
            1024 * 8,
            &reply,
            &conn,
        )
        .unwrap();
        let mut ids = receive.blocking_recv().unwrap().unwrap();
        assert_eq!(3, ids.len());

        let date2 = now();
        node3.mdate = date2;
        node3.sign(&signing_key).unwrap();
        node3.write(&conn, false, &None, &None).unwrap();

        let (reply, mut receive) = mpsc::channel::<Result<HashSet<NodeIdentifier>>>(1);
        Node::get_daily_nodes_for_room(
            &room_id1,
            entity.to_string(),
            date,
            1024 * 8,
            &reply,
            &conn,
        )
        .unwrap();
        let ids_2 = receive.blocking_recv().unwrap().unwrap();
        assert_eq!(2, ids_2.len());

        Node::filter_existing(&mut ids, &conn).unwrap();
        assert_eq!(0, ids.len());
    }

    #[test]
    fn delete_from_deletion_log() {
        let conn = Connection::open_in_memory().unwrap();
        Node::create_tables(&conn).unwrap();

        let signing_key = Ed25519SigningKey::new();
        let entity = "Pet";
        let room_id = new_uid();
        let mut node = Node {
            room_id: Some(room_id),
            _entity: String::from(entity),
            ..Default::default()
        };
        node.sign(&signing_key).unwrap();
        node.write(&conn, false, &None, &None).unwrap();

        let mut node_deletion_log = NodeDeletionEntry::build(room_id, &node, now(), &signing_key);
        node_deletion_log.write(&conn).unwrap();
        let batch_size = 4096;
        let (reply, mut receive) = mpsc::channel::<Result<Vec<NodeDeletionEntry>>>(1);

        NodeDeletionEntry::get_entries(
            &room_id,
            entity.to_string(),
            date(node_deletion_log.deletion_date),
            batch_size,
            &reply,
            &conn,
        )
        .unwrap();
        let deletion_logs = receive.blocking_recv().unwrap().unwrap();
        let entry = &deletion_logs[0];

        assert_eq!(&node.room_id.unwrap(), &entry.room_id);
        assert_eq!(&node.id, &entry.id);
        assert_eq!(&node._entity, &entry.entity);
        assert_eq!(&node.mdate, &entry.mdate);

        assert!(Node::get_with_entity(&node.id, &entity, &conn)
            .unwrap()
            .is_some());

        let log_with_author =
            NodeDeletionEntry::with_previous_authors(deletion_logs, &conn).unwrap();
        let entry = log_with_author.get(&node.id).unwrap();
        assert!(entry.1.is_some());
        let mut deletion: Vec<NodeDeletionEntry> =
            log_with_author.into_iter().map(|e| e.1 .0).collect();
        NodeDeletionEntry::delete_all(&mut deletion, &mut DailyMutations::new(), &conn).unwrap();

        assert!(Node::get_with_entity(&node.id, &entity, &conn)
            .unwrap()
            .is_none());
    }
}