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
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
use core::fmt;
use std::{
collections::hash_map::DefaultHasher,
fs::{File, OpenOptions},
hash::{Hash, Hasher},
io::{Seek, SeekFrom, Write},
ops::DerefMut,
str,
sync::{
atomic::{AtomicU32, Ordering},
Arc, Mutex, MutexGuard, RwLock,
},
time::SystemTime,
usize,
};
use log::debug;
use crate::{
btree::{
page::{
BTreeBasePage, BTreeHeaderPage, BTreeInternalPage,
BTreeInternalPageIterator, BTreeLeafPage,
BTreeLeafPageIterator, BTreeLeafPageIteratorRc,
BTreePage, BTreePageID, BTreeRootPointerPage, Entry,
PageCategory,
},
page_cache::PageCache,
tuple::{Schema, Tuple, WrappedTuple},
},
concurrent_status::Permission,
field::IntField,
transaction::Transaction,
types::{ResultPod, SmallResult},
utils::{lock_state, HandyRwLock},
Op, Predicate, Unique,
};
enum SearchFor {
IntField(IntField),
LeftMost,
RightMost,
}
/// B+ Tree
pub struct BTreeTable {
// the file that stores the on-disk backing store for this B+
// tree file.
file_path: String,
// the field which index is keyed on
pub key_field: usize,
// the tuple descriptor of tuples in the file
pub tuple_scheme: Schema,
file: Mutex<File>,
table_id: u32,
/// the page index of the last page in the file
///
/// The page index start from 0 and increase monotonically by 1,
/// the page index of "root pointer" page is always 0.
page_index: AtomicU32,
}
#[derive(Copy, Clone)]
pub enum WriteScene {
Random,
Sequential,
}
impl fmt::Display for BTreeTable {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"<BTreeFile, file: {}, id: {}>",
self.file_path, self.table_id
)
}
}
// init functions
impl BTreeTable {
pub fn new(
file_path: &str,
key_field: usize,
row_scheme: &Schema,
) -> Self {
File::create(file_path).expect("io error");
let f = Mutex::new(
OpenOptions::new()
.write(true)
.read(true)
.open(file_path)
.unwrap(),
);
// let file_size = f.rl().metadata().unwrap().len() as usize;
// debug!("btree initialized, file size: {}", file_size);
let mut hasher = DefaultHasher::new();
file_path.hash(&mut hasher);
let unix_time = SystemTime::now();
unix_time.hash(&mut hasher);
let table_id = hasher.finish() as u32;
Self::file_init(f.lock().unwrap(), table_id);
Self {
file_path: file_path.to_string(),
key_field,
tuple_scheme: row_scheme.clone(),
file: f,
table_id,
// start from 1 (the root page)
//
// TODO: init it according to actual condition
page_index: AtomicU32::new(1),
}
}
}
// normal read-only functions
impl BTreeTable {
pub fn get_id(&self) -> u32 {
self.table_id
}
pub fn get_tuple_scheme(&self) -> Schema {
self.tuple_scheme.clone()
}
/// Calculate the number of tuples in the table. Require S_LOCK on
/// all pages.
pub fn tuples_count(&self) -> usize {
let tx = Transaction::new();
let count = BTreeTableIterator::new(&tx, self).count();
tx.commit().unwrap();
count
}
pub fn get_random_tuple(&self, _tx: &Transaction) -> Tuple {
unimplemented!()
}
}
// insert-related functions
impl BTreeTable {
/// Insert a tuple into this BTreeFile, keeping the tuples in
/// sorted order. May cause pages to split if the page where
/// tuple belongs is full.
pub fn insert_tuple(
&self,
tx: &Transaction,
// buffer_pool: &mut BufferPool,
tuple: &Tuple,
) -> SmallResult {
// a read lock on the root pointer page and
// use it to locate the root page
let root_pid = self.get_root_pid(tx);
// find and lock the left-most leaf page corresponding to
// the key field, and split the leaf page if there are no
// more slots available
let field = tuple.get_field(self.key_field);
let mut leaf_rc = self.find_leaf_page(
tx,
Permission::ReadWrite,
root_pid,
SearchFor::IntField(field),
);
if leaf_rc.rl().empty_slots_count() == 0 {
leaf_rc = self.split_leaf_page(
tx,
leaf_rc,
tuple.get_field(self.key_field),
)?;
}
leaf_rc.wl().insert_tuple(&tuple);
return Ok(());
}
/// Split a leaf page to make room for new tuples and
/// recursively split the parent node as needed to
/// accommodate a new entry. The new entry should have
/// a key matching the key field of the first tuple in
/// the right-hand page (the key is "copied up"), and
/// child pointers pointing to the two leaf pages
/// resulting from the split. Update sibling pointers
/// and parent pointers as needed.
///
/// Return the leaf page into which a new tuple with
/// key field "field" should be inserted.
///
/// # Arguments
/// `field`: the key field of the tuple to be inserted after the
/// split is complete. Necessary to know which of the two
/// pages to return.
pub fn split_leaf_page(
&self,
tx: &Transaction,
page_rc: Arc<RwLock<BTreeLeafPage>>,
field: IntField,
) -> ResultPod<BTreeLeafPage> {
let new_sibling_rc = self.get_empty_leaf_page(tx);
let parent_pid: BTreePageID;
let key: IntField;
// borrow of new_sibling_rc start here
// borrow of page_rc start here
{
let mut new_sibling = new_sibling_rc.wl();
let mut page = page_rc.wl();
// 1. adding a new page on the right of the existing
// page and moving half of the tuples to the new page
let tuple_count = page.tuples_count();
let move_tuple_count = tuple_count / 2;
let mut it = BTreeLeafPageIterator::new(&page);
let mut delete_indexes: Vec<usize> = Vec::new();
for tuple in it.by_ref().rev().take(move_tuple_count) {
delete_indexes.push(tuple.get_slot_number());
new_sibling.insert_tuple(&tuple);
}
for i in delete_indexes {
page.delete_tuple(i);
}
let mut it = BTreeLeafPageIterator::new(&page);
key = it.next_back().unwrap().get_field(self.key_field);
// get parent pid for use later
parent_pid = page.get_parent_pid();
}
// borrow of new_sibling_rc end here
// borrow of page_rc end here
// 2. Copy the middle key up into the parent page, and
// recursively split the parent as needed to accommodate
// the new entry.
//
// We put this method outside all the borrow blocks since
// once the parent page is split, a lot of children will
// been borrowed. (may including the current leaf page)
let parent_rc =
self.get_parent_with_empty_slots(tx, parent_pid, field);
// borrow of parent_rc start here
// borrow of page_rc start here
// borrow of new_sibling_rc start here
{
let mut parent = parent_rc.wl();
let mut page = page_rc.wl();
let mut new_sibling = new_sibling_rc.wl();
let mut entry = Entry::new(
key,
&page.get_pid(),
&new_sibling.get_pid(),
);
debug!(
"split start, page: {}, lock status: {}, new_sibling: {}, lock status: {}, parent: {}, lock status: {}",
page.get_pid(),
lock_state(page_rc.clone()),
new_sibling.get_pid(),
lock_state(new_sibling_rc.clone()),
parent.get_pid(),
lock_state(parent_rc.clone()),
);
parent.insert_entry(&mut entry)?;
// set left pointer for the old right sibling
if let Some(old_right_pid) = page.get_right_pid() {
let old_right_rc = Unique::mut_page_cache()
.get_leaf_page(
tx,
Permission::ReadWrite,
&old_right_pid,
)
.unwrap();
old_right_rc
.wl()
.set_left_pid(Some(new_sibling.get_pid()));
}
// set sibling id
new_sibling.set_right_pid(page.get_right_pid());
new_sibling.set_left_pid(Some(page.get_pid()));
page.set_right_pid(Some(new_sibling.get_pid()));
// set parent id
page.set_parent_pid(&parent.get_pid());
new_sibling.set_parent_pid(&parent.get_pid());
}
// borrow of parent_rc end here
// borrow of page_rc end here
// borrow of new_sibling_rc end here
if field > key {
Ok(new_sibling_rc)
} else {
Ok(page_rc)
}
}
pub fn get_empty_page_index(&self, tx: &Transaction) -> u32 {
let root_ptr_rc = self.get_root_ptr_page(tx);
// borrow of root_ptr_rc start here
{
let root_ptr = root_ptr_rc.rl();
let header_pid = root_ptr.get_header_pid();
if let Some(header_pid) = header_pid {
let header_rc = Unique::mut_page_cache()
.get_header_page(
tx,
Permission::ReadOnly,
&header_pid,
)
.unwrap();
// borrow of header_rc start here
{
let header = header_rc.rl();
if let Some(i) = header.get_empty_slot() {
return i;
}
}
}
}
// borrow of root_ptr_rc end here
let index =
self.page_index.fetch_add(1, Ordering::Relaxed) + 1;
index
}
/// Method to encapsulate the process of getting a parent page
/// ready to accept new entries.
///
/// This may mean creating a page to become the new root of
/// the tree, splitting the existing parent page if there are
/// no empty slots, or simply locking and returning the existing
/// parent page.
///
/// # Arguments
/// `field`: the key field of the tuple to be inserted after the
/// split is complete. Necessary to know which of the two
/// pages to return. `parentId`: the id of the parent. May be
/// an internal page or the RootPtr page
fn get_parent_with_empty_slots(
&self,
tx: &Transaction,
parent_id: BTreePageID,
field: IntField,
) -> Arc<RwLock<BTreeInternalPage>> {
// create a parent node if necessary
// this will be the new root of the tree
match parent_id.category {
PageCategory::RootPointer => {
let new_parent_rc = self.get_empty_interanl_page(tx);
// update the root pointer
self.set_root_pid(tx, &new_parent_rc.wl().get_pid());
new_parent_rc
}
PageCategory::Internal => {
let parent_rc = Unique::mut_page_cache()
.get_internal_page(
tx,
Permission::ReadWrite,
&parent_id,
)
.unwrap();
let empty_slots_count: usize;
// borrow of parent_rc start here
{
empty_slots_count =
parent_rc.rl().empty_slots_count();
}
// borrow of parent_rc end here
if empty_slots_count > 0 {
return parent_rc;
} else {
// split upper parent
return self
.split_internal_page(tx, parent_rc, field);
}
}
_ => {
todo!()
}
}
}
/// Split an internal page to make room for new entries and
/// recursively split its parent page as needed to accommodate
/// a new entry. The new entry for the parent should have a
/// key matching the middle key in the original internal page
/// being split (this key is "pushed up" to the parent).
///
/// Make a right sibling page and move half of entries to it.
///
/// The child pointers of the new parent entry should point to the
/// two internal pages resulting from the split. Update parent
/// pointers as needed.
///
/// Return the internal page into which an entry with key field
/// "field" should be inserted
///
/// # Arguments
/// `field`: the key field of the tuple to be inserted after the
/// split is complete. Necessary to know which of the two
/// pages to return.
fn split_internal_page(
&self,
tx: &Transaction,
page_rc: Arc<RwLock<BTreeInternalPage>>,
field: IntField,
) -> Arc<RwLock<BTreeInternalPage>> {
let sibling_rc = self.get_empty_interanl_page(tx);
let key: IntField;
let mut parent_pid: BTreePageID;
let mut new_entry: Entry;
// borrow of sibling_rc start here
// borrow of page_rc start here
{
let mut sibling = sibling_rc.wl();
let mut page = page_rc.wl();
parent_pid = page.get_parent_pid();
if parent_pid.category == PageCategory::RootPointer {
// create new parent page if the parent page is root
// pointer page.
let parent_rc = self.get_empty_interanl_page(tx);
parent_pid = parent_rc.rl().get_pid();
// update the root pointer
self.set_root_pid(tx, &parent_pid);
}
let enties_count = page.entries_count();
let move_entries_count = enties_count / 2;
let mut delete_indexes: Vec<usize> = Vec::new();
let mut it = BTreeInternalPageIterator::new(&page);
for e in it.by_ref().rev().take(move_entries_count) {
delete_indexes.push(e.get_record_id());
sibling.insert_entry(&e).unwrap();
// set parent id for right child
let right_pid = e.get_right_child();
Self::set_parent(tx, &right_pid, &sibling.get_pid());
}
let middle_entry = it.next_back().unwrap();
// also delete the middle entry
delete_indexes.push(middle_entry.get_record_id());
for i in delete_indexes {
page.delete_key_and_right_child(i);
}
// set parent id for right child to the middle entry
Self::set_parent(
tx,
&middle_entry.get_right_child(),
&sibling.get_pid(),
);
key = middle_entry.get_key();
new_entry =
Entry::new(key, &page.get_pid(), &sibling.get_pid());
}
// borrow of sibling_rc end here
// borrow of page_rc end here
let parent_rc =
self.get_parent_with_empty_slots(tx, parent_pid, field);
parent_pid = parent_rc.rl().get_pid();
page_rc.wl().set_parent_pid(&parent_pid);
sibling_rc.wl().set_parent_pid(&parent_pid);
// borrow of parent_rc start here
{
let mut parent = parent_rc.wl();
parent.insert_entry(&mut new_entry).unwrap();
}
// borrow of parent_rc end here
if field > key {
sibling_rc
} else {
page_rc
}
}
}
impl BTreeTable {
/// Method to encapsulate the process of locking/fetching a page.
/// First the method checks the local cache ("dirtypages"),
/// and if it can't find the requested page there, it fetches
/// it from the buffer pool. It also adds pages to the
/// dirtypages cache if they are fetched with read-write
/// permission, since presumably they will soon be dirtied by
/// this transaction.
///
/// This method is needed to ensure that page updates are not lost
/// if the same pages are accessed multiple times.
///
/// reference:
/// - https://sourcegraph.com/github.com/XiaochenCui/small-db-hw@87607789b677d6afee00a223eacb4f441bd4ae87/-/blob/src/java/smalldb/BTreeFile.java?L551&subtree=true
pub fn get_page(&self) {}
}
impl BTreeTable {
pub fn set_root_pid(
&self,
tx: &Transaction,
root_pid: &BTreePageID,
) {
let root_pointer_rc = self.get_root_ptr_page(tx);
root_pointer_rc.wl().set_root_pid(root_pid);
}
fn set_parent(
tx: &Transaction,
child_pid: &BTreePageID,
parent_pid: &BTreePageID,
) {
match child_pid.category {
PageCategory::RootPointer => todo!(),
PageCategory::Internal => {
let left_rc = Unique::mut_page_cache()
.get_internal_page(
tx,
Permission::ReadWrite,
&child_pid,
)
.unwrap();
// borrow of left_rc start here
{
let mut left = left_rc.wl();
left.set_parent_pid(&parent_pid);
}
// borrow of left_rc end here
}
PageCategory::Leaf => {
let child_rc = Unique::mut_page_cache()
.get_leaf_page(
tx,
Permission::ReadWrite,
&child_pid,
)
.unwrap();
// borrow of left_rc start here
{
let mut child = child_rc.wl();
child.set_parent_pid(&parent_pid);
}
// borrow of left_rc end here
}
PageCategory::Header => todo!(),
}
}
/// Recursive function which finds and locks the leaf page in
/// the B+ tree corresponding to the left-most page possibly
/// containing the key field f. It locks all internal nodes
/// along the path to the leaf node with READ_ONLY permission,
/// and locks the leaf node with permission perm.
///
/// # Arguments
///
/// tid - the transaction id
/// pid - the current page being searched
/// perm - the permissions with which to lock the leaf page
/// f - the field to search for
///
/// # Return
///
/// the left-most leaf page possibly containing the key field f
fn find_leaf_page(
&self,
tx: &Transaction,
perm: Permission,
page_id: BTreePageID,
search: SearchFor,
) -> Arc<RwLock<BTreeLeafPage>> {
match page_id.category {
PageCategory::Leaf => {
// get page and return directly
return Unique::mut_page_cache()
.get_leaf_page(tx, perm, &page_id)
.unwrap();
}
PageCategory::Internal => {
let page_rc = Unique::mut_page_cache()
.get_internal_page(
tx,
Permission::ReadWrite,
&page_id,
)
.unwrap();
let mut child_pid: Option<BTreePageID> = None;
// borrow of page_rc start here
{
let page = page_rc.rl();
let it = BTreeInternalPageIterator::new(&page);
let mut entry: Option<Entry> = None;
let mut found = false;
for e in it {
match search {
SearchFor::IntField(field) => {
if e.get_key() >= field {
child_pid =
Some(e.get_left_child());
found = true;
break;
}
}
SearchFor::LeftMost => {
child_pid = Some(e.get_left_child());
found = true;
break;
}
SearchFor::RightMost => {
child_pid = Some(e.get_right_child());
found = true;
// dont't break here, we need to find
// the
// rightmost entry
}
}
entry = Some(e);
}
if !found {
// if not found, search in right of the last
// entry
match entry {
Some(e) => {
child_pid = Some(e.get_right_child());
}
None => todo!(),
}
}
}
// borrow of page_rc end here
// search child page recursively
match child_pid {
Some(child_pid) => {
return self.find_leaf_page(
tx, perm, child_pid, search,
);
}
None => todo!(),
}
}
_ => {
todo!()
}
}
}
pub fn get_file(&self) -> MutexGuard<'_, File> {
self.file.lock().unwrap()
}
/// init file in necessary
fn file_init(
mut file: impl DerefMut<Target = File>,
table_inex: u32,
) {
// if db file is empty, create root pointer page at first
if file.metadata().unwrap().len() == 0 {
// write root pointer page
{
let pid = BTreePageID::new(
PageCategory::RootPointer,
table_inex,
0,
);
let page = BTreeRootPointerPage::new_empty_page(&pid);
let data = page.get_page_data();
file.write(&data).unwrap();
}
// write the first leaf page
{
let data = BTreeBasePage::empty_page_data();
file.write(&data).unwrap();
}
}
}
fn get_empty_leaf_page(
&self,
tx: &Transaction,
) -> Arc<RwLock<BTreeLeafPage>> {
// create the new page
let page_index = self.get_empty_page_index(tx);
let page_id = BTreePageID::new(
PageCategory::Leaf,
self.table_id,
page_index,
);
let page = BTreeLeafPage::new(
&page_id,
&BTreeBasePage::empty_page_data(),
&self.tuple_scheme,
self.key_field,
);
self.write_empty_page_to_disk(&page_id);
let page_rc = Arc::new(RwLock::new(page));
// insert to buffer pool because it's a dirty page at this
// time
Unique::mut_page_cache()
.leaf_buffer
.insert(page_id, page_rc.clone());
page_rc
}
fn get_empty_interanl_page(
&self,
tx: &Transaction,
) -> Arc<RwLock<BTreeInternalPage>> {
// create the new page
let page_index = self.get_empty_page_index(tx);
let page_id = BTreePageID::new(
PageCategory::Internal,
self.table_id,
page_index,
);
let page = BTreeInternalPage::new(
&page_id,
&BTreeBasePage::empty_page_data(),
&self.tuple_scheme,
self.key_field,
);
self.write_empty_page_to_disk(&page_id);
let page_rc = Arc::new(RwLock::new(page));
// insert to buffer pool because it's a dirty page at this
// time
Unique::mut_page_cache()
.internal_buffer
.insert(page_id, page_rc.clone());
page_rc
}
pub(super) fn get_empty_header_page(
&self,
tx: &Transaction,
) -> Arc<RwLock<BTreeHeaderPage>> {
// create the new page
let page_index = self.get_empty_page_index(tx);
let page_id = BTreePageID::new(
PageCategory::Header,
self.table_id,
page_index,
);
let page = BTreeHeaderPage::new(
&page_id,
&BTreeBasePage::empty_page_data(),
);
self.write_empty_page_to_disk(&page_id);
let page_rc = Arc::new(RwLock::new(page));
// insert to buffer pool because it's a dirty page at this
// time
Unique::mut_page_cache()
.header_buffer
.insert(page_id, page_rc.clone());
page_rc
}
pub fn write_empty_page_to_disk(&self, page_id: &BTreePageID) {
self.write_page_to_disk(
page_id,
&BTreeBasePage::empty_page_data(),
)
}
pub fn write_page_to_disk(
&self,
page_id: &BTreePageID,
data: &Vec<u8>,
) {
let start_pos: usize =
page_id.page_index as usize * PageCache::get_page_size();
self.get_file()
.seek(SeekFrom::Start(start_pos as u64))
.expect("io error");
self.get_file().write(&data).expect("io error");
self.get_file().flush().expect("io error");
}
pub fn get_first_page(
&self,
tx: &Transaction,
perm: Permission,
) -> Arc<RwLock<BTreeLeafPage>> {
let page_id = self.get_root_pid(tx);
return self.find_leaf_page(
tx,
perm,
page_id,
SearchFor::LeftMost,
);
}
pub fn get_last_page(
&self,
tx: &Transaction,
perm: Permission,
) -> Arc<RwLock<BTreeLeafPage>> {
let page_id = self.get_root_pid(tx);
return self.find_leaf_page(
tx,
perm,
page_id,
SearchFor::RightMost,
);
}
/// Get the root page pid.
pub fn get_root_pid(&self, tx: &Transaction) -> BTreePageID {
let root_ptr_rc = self.get_root_ptr_page(tx);
let mut root_pid = root_ptr_rc.rl().get_root_pid();
root_pid.table_id = self.get_id();
root_pid
}
pub fn get_root_ptr_page(
&self,
tx: &Transaction,
) -> Arc<RwLock<BTreeRootPointerPage>> {
let root_ptr_pid = BTreePageID {
category: PageCategory::RootPointer,
page_index: 0,
table_id: self.table_id,
};
Unique::mut_page_cache()
.get_root_ptr_page(
tx,
Permission::ReadWrite,
&root_ptr_pid,
)
.unwrap()
}
/// The count of pages in this BTreeFile
///
/// (the ROOT_POINTER page is not included)
pub fn pages_count(&self) -> usize {
let file_size =
self.get_file().metadata().unwrap().len() as usize;
debug!(
"file size: {}, page size: {}",
file_size,
PageCache::get_page_size()
);
file_size / PageCache::get_page_size() - 1
}
// get the first tuple under the internal/leaf page
pub fn get_first_tuple(
&self,
_pid: &BTreePageID,
) -> Option<Tuple> {
todo!()
}
pub fn set_page_index(&self, i: u32) {
self.page_index.store(i, Ordering::Relaxed);
}
// get the last tuple under the internal/leaf page
pub fn get_last_tuple(
&self,
tx: &Transaction,
pid: &BTreePageID,
) -> Option<WrappedTuple> {
match pid.category {
PageCategory::RootPointer => todo!(),
PageCategory::Internal => {
let page_rc = Unique::mut_page_cache()
.get_internal_page(tx, Permission::ReadOnly, pid)
.unwrap();
// borrow of page_rc start here
let child_pid: BTreePageID;
{
let page = page_rc.rl();
let mut it =
BTreeInternalPageIterator::new(&page);
child_pid =
it.next_back().unwrap().get_right_child();
}
// borrow of page_rc end here
self.get_last_tuple(tx, &child_pid)
}
PageCategory::Leaf => {
let page_rc = Unique::mut_page_cache()
.get_leaf_page(tx, Permission::ReadWrite, pid)
.unwrap();
let page = page_rc.rl();
let mut it = BTreeLeafPageIterator::new(&page);
it.next_back()
}
PageCategory::Header => todo!(),
}
}
}
/// debug methods
impl BTreeTable {
/// Print the BTreeFile structure.
///
/// # Arguments
///
/// - `max_level` - the max level of the print
/// - 0: print the root pointer page
/// - 1: print the root pointer page and the root page
/// (internal or leaf)
/// - ...
/// - -1: print all pages
pub fn draw_tree(&self, max_level: i32) {
Unique::concurrent_status().clear();
let tx = Transaction::new();
let mut depiction = "".to_string();
depiction.push_str(
"\n\n----- PRINT TREE STRUCTURE START -----\n\n",
);
// get root pointer page
let root_pointer_pid = BTreePageID {
category: PageCategory::RootPointer,
page_index: 0,
table_id: self.table_id,
};
depiction.push_str(&format!(
"root pointer: {}\n",
root_pointer_pid
));
let root_pid = self.get_root_pid(&tx);
depiction.push_str(
&self.draw_subtree(&tx, &root_pid, 0, max_level),
);
depiction.push_str(&format!(
"\n\n----- PRINT TREE STRUCTURE END -----\n\n"
));
debug!("tree_structure, level {}: {}", max_level, depiction);
tx.commit().unwrap();
}
fn draw_subtree(
&self,
tx: &Transaction,
pid: &BTreePageID,
level: usize,
max_level: i32,
) -> String {
match pid.category {
PageCategory::Internal => {
self.draw_internal_node(tx, pid, level, max_level)
}
PageCategory::Leaf => self.draw_leaf_node(tx, pid, level),
_ => {
panic!("invalid page category: {:?}", pid.category);
}
}
}
fn draw_leaf_node(
&self,
tx: &Transaction,
pid: &BTreePageID,
level: usize,
) -> String {
let mut depiction = "".to_string();
let print_sibling = false;
let mut prefix = "│ ".repeat(level);
let page_rc = Unique::mut_page_cache()
.get_leaf_page(tx, Permission::ReadOnly, &pid)
.unwrap();
let lock_state = lock_state(page_rc.clone());
let mut it =
BTreeLeafPageIteratorRc::new(Arc::clone(&page_rc));
let first_tuple = it.next();
let page = page_rc.rl();
let mut it = BTreeLeafPageIterator::new(&page);
let last_tuple = it.next_back();
if print_sibling {
depiction.push_str(&format!(
"{}├── leaf: {} ({} tuples) (left: {:?}, right: {:?}) (lock state: {})\n",
prefix,
page.get_pid(),
page.tuples_count(),
page.get_left_pid(),
page.get_right_pid(),
lock_state,
));
} else {
depiction.push_str(&format!(
"{}├── leaf: {} ({}/{} tuples) (lock state: {}\n",
prefix,
page.get_pid(),
page.tuples_count(),
page.slot_count,
lock_state,
));
}
prefix = "│ ".repeat(level + 1);
depiction.push_str(&format!(
"{}├── first tuple: {:?}\n",
prefix, first_tuple
));
depiction.push_str(&format!(
"{}└── last tuple: {:?}\n",
prefix, last_tuple
));
return depiction;
}
fn draw_internal_node(
&self,
tx: &Transaction,
pid: &BTreePageID,
level: usize,
max_level: i32,
) -> String {
let mut depiction = "".to_string();
let prefix = "│ ".repeat(level);
let page_rc = Unique::mut_page_cache()
.get_internal_page(tx, Permission::ReadWrite, &pid)
.unwrap();
let lock_state = lock_state(page_rc.clone());
// borrow of page_rc start here
{
let page = page_rc.rl();
depiction.push_str(&format!(
"{}├── internal: {} ({}/{} children) (lock state: {})\n",
prefix,
pid,
page.children_count(),
page.get_children_capacity(),
lock_state,
));
if max_level != -1 && level as i32 == max_level {
return depiction;
}
let it = BTreeInternalPageIterator::new(&page);
for (i, entry) in it.enumerate() {
depiction.push_str(&self.draw_entry(
tx,
i,
&entry,
level + 1,
max_level,
));
}
}
// borrow of page_rc end here
return depiction;
}
fn draw_entry(
&self,
tx: &Transaction,
id: usize,
entry: &Entry,
level: usize,
max_level: i32,
) -> String {
let mut depiction = "".to_string();
let prefix = "│ ".repeat(level);
if id == 0 {
depiction.push_str(&self.draw_subtree(
tx,
&entry.get_left_child(),
level + 1,
max_level,
));
}
depiction.push_str(&format!(
"{}├── key: {}\n",
prefix,
entry.get_key()
));
depiction.push_str(&self.draw_subtree(
tx,
&entry.get_right_child(),
level + 1,
max_level,
));
return depiction;
}
/// checks the integrity of the tree:
/// - parent pointers.
/// - sibling pointers.
/// - range invariants.
/// - record to page pointers.
/// - occupancy invariants. (if enabled)
///
/// require s_lock on all pages.
///
/// panic on any error found.
pub fn check_integrity(&self, check_occupancy: bool) {
Unique::concurrent_status().clear();
let tx = Transaction::new();
let root_ptr_page = self.get_root_ptr_page(&tx);
let root_pid = root_ptr_page.rl().get_root_pid();
let root_summary = self.check_sub_tree(
&tx,
&root_pid,
&root_ptr_page.rl().get_pid(),
None,
None,
check_occupancy,
0,
);
assert!(
root_summary.left_ptr.is_none(),
"left pointer is not none: {:?}",
root_summary.left_ptr
);
assert!(
root_summary.right_ptr.is_none(),
"right pointer is not none: {:?}",
root_summary.right_ptr,
);
tx.commit();
}
/// panic on any error found.
fn check_sub_tree(
&self,
tx: &Transaction,
pid: &BTreePageID,
parent_pid: &BTreePageID,
mut lower_bound: Option<IntField>,
upper_bound: Option<IntField>,
check_occupancy: bool,
depth: usize,
) -> SubtreeSummary {
match pid.category {
PageCategory::Leaf => {
let page_rc = Unique::mut_page_cache()
.get_leaf_page(tx, Permission::ReadOnly, &pid)
.unwrap();
let page = page_rc.rl();
page.check_integrity(
parent_pid,
lower_bound,
upper_bound,
check_occupancy,
depth,
);
return SubtreeSummary {
left_ptr: page.get_left_pid(),
right_ptr: page.get_right_pid(),
left_most_pid: Some(page.get_pid()),
right_most_pid: Some(page.get_pid()),
depth,
};
}
PageCategory::Internal => {
let page_rc = Unique::mut_page_cache()
.get_internal_page(
tx,
Permission::ReadWrite,
&pid,
)
.unwrap();
let page = page_rc.rl();
page.check_integrity(
parent_pid,
lower_bound,
upper_bound,
check_occupancy,
depth,
);
let mut it = BTreeInternalPageIterator::new(&page);
let current = it.next().unwrap();
let mut accumulation = self.check_sub_tree(
tx,
¤t.get_left_child(),
pid,
lower_bound,
Some(current.get_key()),
check_occupancy,
depth + 1,
);
let mut last_entry = current;
for entry in it {
let current_summary = self.check_sub_tree(
tx,
&entry.get_left_child(),
pid,
lower_bound,
Some(entry.get_key()),
check_occupancy,
depth + 1,
);
accumulation = accumulation
.check_and_merge(¤t_summary);
lower_bound = Some(entry.get_key());
last_entry = entry;
}
let last_right_summary = self.check_sub_tree(
tx,
&last_entry.get_right_child(),
pid,
lower_bound,
upper_bound,
check_occupancy,
depth + 1,
);
accumulation =
accumulation.check_and_merge(&last_right_summary);
return accumulation;
}
// no other page types allowed inside the tree.
_ => panic!("invalid page category"),
}
}
}
struct SubtreeSummary {
/// The distance towards the root.
depth: usize,
left_ptr: Option<BTreePageID>,
left_most_pid: Option<BTreePageID>,
right_ptr: Option<BTreePageID>,
right_most_pid: Option<BTreePageID>,
}
impl SubtreeSummary {
fn check_and_merge(
&mut self,
right: &SubtreeSummary,
) -> SubtreeSummary {
assert_eq!(self.depth, right.depth);
assert_eq!(
self.right_ptr, right.left_most_pid,
"depth: {}, left_ptr: {:?}, right_ptr: {:?}",
self.depth, self.right_ptr, right.left_most_pid
);
assert_eq!(self.right_most_pid, right.left_ptr);
let acc = SubtreeSummary {
depth: self.depth,
left_ptr: self.left_ptr,
left_most_pid: self.left_most_pid,
right_ptr: right.right_ptr,
right_most_pid: right.right_most_pid,
};
return acc;
}
}
pub struct BTreeTableIterator<'t> {
tx: &'t Transaction,
page_rc: Arc<RwLock<BTreeLeafPage>>,
last_page_rc: Arc<RwLock<BTreeLeafPage>>,
page_it: BTreeLeafPageIteratorRc,
last_page_it: BTreeLeafPageIteratorRc,
}
impl<'t> BTreeTableIterator<'t> {
pub fn new(tx: &'t Transaction, table: &BTreeTable) -> Self {
let page_rc = table.get_first_page(tx, Permission::ReadOnly);
let last_page_rc =
table.get_last_page(tx, Permission::ReadOnly);
Self {
tx,
page_rc: Arc::clone(&page_rc),
last_page_rc: Arc::clone(&last_page_rc),
page_it: BTreeLeafPageIteratorRc::new(Arc::clone(
&page_rc,
)),
last_page_it: BTreeLeafPageIteratorRc::new(Arc::clone(
&last_page_rc,
)),
}
}
}
impl Iterator for BTreeTableIterator<'_> {
type Item = WrappedTuple;
fn next(&mut self) -> Option<Self::Item> {
let v = self.page_it.next();
if !v.is_none() {
return v;
}
let right = self.page_rc.rl().get_right_pid();
match right {
Some(right) => {
let sibling_rc = Unique::mut_page_cache()
.get_leaf_page(
&self.tx,
Permission::ReadOnly,
&right,
)
.unwrap();
let page_it = BTreeLeafPageIteratorRc::new(
Arc::clone(&sibling_rc),
);
self.page_rc = Arc::clone(&sibling_rc);
self.page_it = page_it;
return self.page_it.next();
}
None => {
return None;
}
}
}
}
impl DoubleEndedIterator for BTreeTableIterator<'_> {
fn next_back(&mut self) -> Option<Self::Item> {
let v = self.last_page_it.next_back();
if !v.is_none() {
return v;
}
let left = self.last_page_rc.rl().get_left_pid();
match left {
Some(left) => {
let sibling_rc = Unique::mut_page_cache()
.get_leaf_page(
self.tx,
Permission::ReadOnly,
&left,
)
.unwrap();
let page_it = BTreeLeafPageIteratorRc::new(
Arc::clone(&sibling_rc),
);
self.last_page_rc = Arc::clone(&sibling_rc);
self.last_page_it = page_it;
return self.last_page_it.next_back();
}
None => {
return None;
}
}
}
}
pub struct BTreeTableSearchIterator<'t> {
tx: &'t Transaction,
current_page_rc: Arc<RwLock<BTreeLeafPage>>,
page_it: BTreeLeafPageIteratorRc,
predicate: Predicate,
key_field: usize,
}
impl<'t> BTreeTableSearchIterator<'t> {
pub fn new(
tx: &'t Transaction,
table: &BTreeTable,
index_predicate: Predicate,
) -> Self {
let start_rc: Arc<RwLock<BTreeLeafPage>>;
let root_pid = table.get_root_pid(tx);
match index_predicate.op {
Op::Equals | Op::GreaterThan | Op::GreaterThanOrEq => {
start_rc = table.find_leaf_page(
&tx,
Permission::ReadOnly,
root_pid,
SearchFor::IntField(index_predicate.field),
)
}
Op::LessThan | Op::LessThanOrEq => {
start_rc = table.find_leaf_page(
&tx,
Permission::ReadOnly,
root_pid,
SearchFor::LeftMost,
)
}
Op::Like => todo!(),
Op::NotEquals => todo!(),
}
Self {
tx,
current_page_rc: Arc::clone(&start_rc),
page_it: BTreeLeafPageIteratorRc::new(Arc::clone(
&start_rc,
)),
predicate: index_predicate,
key_field: table.key_field,
}
}
}
impl Iterator for BTreeTableSearchIterator<'_> {
type Item = WrappedTuple;
// TODO: Short circuit on some conditions.
fn next(&mut self) -> Option<Self::Item> {
loop {
let tuple = self.page_it.next();
match tuple {
Some(t) => match self.predicate.op {
Op::Equals => {
let field = t.get_field(self.key_field);
if field == self.predicate.field {
return Some(t);
} else if field > self.predicate.field {
return None;
}
}
Op::GreaterThan => {
let field = t.get_field(self.key_field);
if field > self.predicate.field {
return Some(t);
}
}
Op::GreaterThanOrEq => {
let field = t.get_field(self.key_field);
if field >= self.predicate.field {
return Some(t);
}
}
Op::LessThan => {
let field = t.get_field(self.key_field);
if field < self.predicate.field {
return Some(t);
} else if field >= self.predicate.field {
return None;
}
}
Op::LessThanOrEq => {
let field = t.get_field(self.key_field);
if field <= self.predicate.field {
return Some(t);
} else if field > self.predicate.field {
return None;
}
}
Op::Like => todo!(),
Op::NotEquals => todo!(),
},
None => {
// init iterator on next page and continue search
let right =
(*self.current_page_rc).rl().get_right_pid();
match right {
Some(pid) => {
let rc = Unique::mut_page_cache()
.get_leaf_page(
self.tx,
Permission::ReadOnly,
&pid,
)
.unwrap();
self.current_page_rc = Arc::clone(&rc);
self.page_it =
BTreeLeafPageIteratorRc::new(
Arc::clone(&rc),
);
continue;
}
None => {
return None;
}
}
}
}
}
}
}