rocks 0.1.10

RocksDB bindings for Rust.
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
//! `EventListener` class contains a set of call-back functions that will
//! be called when specific RocksDB event happens such as flush.

use rocks_sys as ll;

use std::fmt;
use std::marker::PhantomData;
use std::mem;
use std::ptr;
use std::slice;
use std::str;

use crate::compaction_job_stats::CompactionJobStats;
use crate::db::{ColumnFamilyHandle, DBRef};
use crate::options::CompressionType;
use crate::table_properties::{TableProperties, TablePropertiesCollection};
use crate::to_raw::FromRaw;
use crate::types::SequenceNumber;
use crate::{Error, Result};

#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum TableFileCreationReason {
    Flush,
    Compaction,
    Recovery,
}

pub struct TableFileCreationBriefInfo {
    raw: *const ll::rocks_table_file_creation_brief_info_t,
}

impl fmt::Debug for TableFileCreationBriefInfo {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("TableFileCreationBriefInfo")
            .field("job_id", &self.job_id())
            .field("reason", &self.reason())
            .field("cf", &self.cf_name())
            .field("file_path", &self.file_path())
            .finish()
    }
}

impl TableFileCreationBriefInfo {
    /// the name of the database where the file was created
    pub fn db_name(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_table_file_creation_brief_info_get_db_name(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the name of the column family where the file was created.
    pub fn cf_name(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_table_file_creation_brief_info_get_cf_name(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the path to the created file.
    pub fn file_path(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_table_file_creation_brief_info_get_file_path(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the id of the job (which could be flush or compaction) that
    /// created the file.
    pub fn job_id(&self) -> i32 {
        unsafe { ll::rocks_table_file_creation_brief_info_get_job_id(self.raw) as i32 }
    }

    /// reason of creating the table.
    pub fn reason(&self) -> TableFileCreationReason {
        unsafe { mem::transmute(ll::rocks_table_file_creation_brief_info_get_reason(self.raw)) }
    }
}

pub struct TableFileCreationInfo {
    raw: *const ll::rocks_table_file_creation_info_t,
}

impl fmt::Debug for TableFileCreationInfo {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("TableFileCreationInfo")
            .field("job_id", &self.job_id())
            .field("reason", &self.reason())
            .field("cf", &self.cf_name())
            .field("file_path", &self.file_path())
            .field("status", &self.status())
            .finish()
    }
}

impl TableFileCreationInfo {
    /// the size of the file.
    pub fn file_size(&self) -> u64 {
        unsafe { ll::rocks_table_file_creation_info_get_file_size(self.raw) }
    }

    /// Detailed properties of the created file.
    pub fn table_properties<'a>(&'a self) -> TableProperties<'a> {
        unsafe { TableProperties::from_ll(ll::rocks_table_file_creation_info_get_table_properties(self.raw)) }
    }
    /// The status indicating whether the creation was successful or not.
    pub fn status(&self) -> Result<()> {
        let mut status = ptr::null_mut::<ll::rocks_status_t>();
        unsafe {
            ll::rocks_table_file_creation_info_get_status(self.raw, &mut status);
            Result::from_ll(status)
        }
    }

    unsafe fn brief_info(&self) -> *const ll::rocks_table_file_creation_brief_info_t {
        ll::rocks_table_file_creation_info_get_brief_info(self.raw)
    }

    /// the name of the database where the file was created
    pub fn db_name(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_table_file_creation_brief_info_get_db_name(self.brief_info(), &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the name of the column family where the file was created.
    pub fn cf_name(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_table_file_creation_brief_info_get_cf_name(self.brief_info(), &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the path to the created file.
    pub fn file_path(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_table_file_creation_brief_info_get_file_path(self.brief_info(), &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the id of the job (which could be flush or compaction) that
    /// created the file.
    pub fn job_id(&self) -> i32 {
        unsafe { ll::rocks_table_file_creation_brief_info_get_job_id(self.brief_info()) as i32 }
    }

    /// reason of creating the table.
    pub fn reason(&self) -> TableFileCreationReason {
        unsafe { mem::transmute(ll::rocks_table_file_creation_brief_info_get_reason(self.brief_info())) }
    }
}

/// Reason for a compaction job, used in `CompactionJobInfo`
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum CompactionReason {
    Unknown,
    /// [Level] number of L0 files > level0_file_num_compaction_trigger
    LevelL0FilesNum,
    /// [Level] total size of level > MaxBytesForLevel()
    LevelMaxLevelSize,
    /// [Universal] Compacting for size amplification
    UniversalSizeAmplification,
    /// [Universal] Compacting for size ratio
    UniversalSizeRatio,
    /// [Universal] number of sorted runs > level0_file_num_compaction_trigger
    UniversalSortedRunNum,
    /// [FIFO] total size > max_table_files_size
    FIFOMaxSize,
    /// Manual compaction
    ManualCompaction,
    /// `DB::SuggestCompactRange()` marked files for compaction
    FilesMarkedForCompaction,
}

/// Reason for a background error, used in event listener
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum BackgroundErrorReason {
    Flush,
    Compaction,
    WriteCallback,
    MemTable,
}

#[derive(Debug)]
pub struct TableFileDeletionInfo<'a> {
    /// The name of the database where the file was deleted.
    pub db_name: &'a str,
    /// The path to the deleted file.
    pub file_path: &'a str,
    /// The id of the job which deleted the file.
    pub job_id: i32,
    /// The status indicating whether the deletion was successful or not.
    pub status: Result<()>,
}

#[derive(Debug)]
pub struct FlushJobInfo<'a> {
    /// the name of the column family
    pub cf_name: &'a str,
    /// the path to the newly created file
    pub file_path: &'a str,
    /// the id of the thread that completed this flush job.
    pub thread_id: u64,
    /// the job id, which is unique in the same thread.
    pub job_id: i32,
    /// If true, then rocksdb is currently slowing-down all writes to prevent
    /// creating too many Level 0 files as compaction seems not able to
    /// catch up the write request speed.  This indicates that there are
    /// too many files in Level 0.
    pub triggered_writes_slowdown: bool,
    /// If true, then rocksdb is currently blocking any writes to prevent
    /// creating more L0 files.  This indicates that there are too many
    /// files in level 0.  Compactions should try to compact L0 files down
    /// to lower levels as soon as possible.
    pub triggered_writes_stop: bool,
    /// The smallest sequence number in the newly created file
    pub smallest_seqno: SequenceNumber,
    /// The largest sequence number in the newly created file
    pub largest_seqno: SequenceNumber,
    /// Table properties of the table being flushed
    pub table_properties: TableProperties<'a>,
}

// Big struct, avoid expensive building
pub struct CompactionJobInfo<'a> {
    raw: *mut ll::rocks_compaction_job_info_t,
    _marker: PhantomData<&'a ()>,
}

impl<'a> fmt::Debug for CompactionJobInfo<'a> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("CompactionJobInfo")
            .field("cf_name", &self.cf_name())
            .field("status", &self.status())
            .field("inputs", &self.input_files().len())
            .field("outputs", &self.output_files().len())
            .finish()
    }
}

impl<'a> CompactionJobInfo<'a> {
    /// the name of the column family where the compaction happened.
    pub fn cf_name(&self) -> &'a str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_compaction_job_info_get_cf_name(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// the status indicating whether the compaction was successful or not.
    pub fn status(&self) -> Result<()> {
        let mut status = ptr::null_mut::<ll::rocks_status_t>();
        unsafe {
            ll::rocks_compaction_job_info_get_status(self.raw, &mut status);
            Result::from_ll(status)
        }
    }

    /// the id of the thread that completed this compaction job.
    pub fn thread_id(&self) -> u64 {
        unsafe { ll::rocks_compaction_job_info_get_thread_id(self.raw) }
    }

    /// the job id, which is unique in the same thread.
    pub fn job_id(&self) -> i32 {
        unsafe { ll::rocks_compaction_job_info_get_job_id(self.raw) as i32 }
    }

    /// the smallest input level of the compaction.
    pub fn base_input_level(&self) -> i32 {
        unsafe { ll::rocks_compaction_job_info_get_base_input_level(self.raw) as i32 }
    }

    /// the output level of the compaction.
    pub fn output_level(&self) -> i32 {
        unsafe { ll::rocks_compaction_job_info_get_output_level(self.raw) as i32 }
    }

    /// the names of the compaction input files.
    pub fn input_files(&self) -> Vec<&'a str> {
        unsafe {
            let num = ll::rocks_compaction_job_info_get_input_files_num(self.raw);
            let mut ptrs = vec![ptr::null(); num];
            let mut sizes = vec![0_usize; num];
            ll::rocks_compaction_job_info_get_input_files(self.raw, ptrs.as_mut_ptr(), sizes.as_mut_ptr());
            ptrs.iter()
                .zip(sizes.iter())
                .map(|(&ptr, &len)| str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len)))
                .collect()
        }
    }

    /// the names of the compaction output files.
    pub fn output_files(&self) -> Vec<&'a str> {
        unsafe {
            let num = ll::rocks_compaction_job_info_get_output_files_num(self.raw);
            let mut ptrs = vec![ptr::null(); num];
            let mut sizes = vec![0_usize; num];
            ll::rocks_compaction_job_info_get_output_files(self.raw, ptrs.as_mut_ptr(), sizes.as_mut_ptr());
            ptrs.iter()
                .zip(sizes.iter())
                .map(|(&ptr, &len)| str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len)))
                .collect()
        }
    }

    /// Table properties for input and output tables.
    /// The map is keyed by values from input_files and output_files.
    pub fn table_properties(&self) -> TablePropertiesCollection {
        unsafe { TablePropertiesCollection::from_ll(ll::rocks_compaction_job_info_get_table_properties(self.raw)) }
    }

    /// Reason to run the compaction
    pub fn compaction_reason(&self) -> CompactionReason {
        unsafe { mem::transmute(ll::rocks_compaction_job_info_get_compaction_reason(self.raw)) }
    }

    /// Compression algorithm used for output files
    pub fn compression(&self) -> CompressionType {
        unsafe { mem::transmute(ll::rocks_compaction_job_info_get_compression(self.raw)) }
    }

    /// If non-null, this variable stores detailed information
    /// about this compaction.
    pub fn stats(&self) -> CompactionJobStats {
        unsafe { CompactionJobStats::from_ll(ll::rocks_compaction_job_info_get_stats(self.raw)) }
    }
}

pub struct MemTableInfo {
    raw: *const ll::rocks_mem_table_info_t,
}

impl fmt::Debug for MemTableInfo {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("MemTableInfo")
            .field("cf", &self.cf_name())
            .field("first_seqno", &self.first_seqno())
            .field("earliest_seqno", &self.earliest_seqno())
            .field("num_entries", &self.num_entries())
            .field("num_deletes", &self.num_deletes())
            .finish()
    }
}

impl MemTableInfo {
    /// the name of the column family to which memtable belongs
    pub fn cf_name(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_mem_table_info_get_cf_name(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// Sequence number of the first element that was inserted
    /// into the memtable.
    pub fn first_seqno(&self) -> SequenceNumber {
        unsafe { SequenceNumber(ll::rocks_mem_table_info_get_first_seqno(self.raw)) }
    }

    /// Sequence number that is guaranteed to be smaller than or equal
    /// to the sequence number of any key that could be inserted into this
    /// memtable. It can then be assumed that any write with a larger(or equal)
    /// sequence number will be present in this memtable or a later memtable.
    pub fn earliest_seqno(&self) -> SequenceNumber {
        unsafe { SequenceNumber(ll::rocks_mem_table_info_get_earliest_seqno(self.raw)) }
    }

    /// Total number of entries in memtable
    pub fn num_entries(&self) -> u64 {
        unsafe { ll::rocks_mem_table_info_get_num_entries(self.raw) }
    }
    /// Total number of deletes in memtable
    pub fn num_deletes(&self) -> u64 {
        unsafe { ll::rocks_mem_table_info_get_num_deletes(self.raw) }
    }
}

pub struct ExternalFileIngestionInfo {
    raw: *const ll::rocks_external_file_ingestion_info_t,
}

impl fmt::Debug for ExternalFileIngestionInfo {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("ExternalFileIngestionInfo")
            .field("cf", &self.cf_name())
            .field("external_file_path", &self.external_file_path())
            .field("internal_file_path", &self.internal_file_path())
            .field("global_seqno", &self.global_seqno())
            .finish()
    }
}

impl ExternalFileIngestionInfo {
    /// the name of the column family
    pub fn cf_name(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_external_file_ingestion_info_get_cf_name(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// Path of the file outside the DB
    pub fn external_file_path(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_external_file_ingestion_info_get_external_file_path(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// Path of the file inside the DB
    pub fn internal_file_path(&self) -> &str {
        let mut len = 0;
        unsafe {
            let ptr = ll::rocks_external_file_ingestion_info_get_internal_file_path(self.raw, &mut len);
            str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
        }
    }

    /// The global sequence number assigned to keys in this file
    pub fn global_seqno(&self) -> SequenceNumber {
        unsafe { SequenceNumber(ll::rocks_external_file_ingestion_info_get_global_seqno(self.raw)) }
    }

    /// Table properties of the table being flushed
    pub fn table_properties(&self) -> TableProperties {
        unsafe { TableProperties::from_ll(ll::rocks_external_file_ingestion_info_get_table_properties(self.raw)) }
    }
}

#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum CompactionListenerValueType {
    Value,
    MergeOperand,
    Delete,
    SingleDelete,
    RangeDelete,
    Invalid,
}

/// A call-back function to RocksDB which will be called when the compaction
/// iterator is compacting values. It is mean to be returned from
/// `EventListner::GetCompactionEventListner()` at the beginning of compaction
/// job.
pub trait CompactionEventListener {
    fn on_compaction(
        &mut self,
        level: i32,
        key: &[u8],
        value_type: CompactionListenerValueType,
        existing_value: &[u8],
        sn: SequenceNumber,
        is_new: bool,
    );
}

/// A single compaction event for an easy listener callback.
#[derive(Debug, Clone)]
pub struct CompactionEvent<'a> {
    pub level: i32,
    pub key: &'a [u8],
    pub value_type: CompactionListenerValueType,
    pub existing_value: &'a [u8],
    pub sn: SequenceNumber,
    pub is_new: bool,
}

impl<F> CompactionEventListener for F
where
    F: FnMut(CompactionEvent),
{
    fn on_compaction(
        &mut self,
        level: i32,
        key: &[u8],
        value_type: CompactionListenerValueType,
        existing_value: &[u8],
        sn: SequenceNumber,
        is_new: bool,
    ) {
        (*self)(CompactionEvent {
            level: level,
            key: key,
            value_type: value_type,
            existing_value: existing_value,
            sn: sn,
            is_new: is_new,
        });
    }
}

/// `EventListener` class contains a set of call-back functions that will
/// be called when specific RocksDB event happens such as flush.  It can
/// be used as a building block for developing custom features such as
/// stats-collector or external compaction algorithm.
///
/// Note that call-back functions should not run for an extended period of
/// time before the function returns, otherwise RocksDB may be blocked.
/// For example, it is not suggested to do `DB::CompactFiles()` (as it may
/// run for a long while) or issue many of `DB::Put()` (as Put may be blocked
/// in certain cases) in the same thread in the `EventListener` callback.
/// However, doing `DB::CompactFiles()` and `DB::Put()` in another thread is
/// considered safe.
///
/// [Threading] All `EventListener` callback will be called using the
/// actual thread that involves in that specific event.   For example, it
/// is the RocksDB background flush thread that does the actual flush to
/// call `EventListener::OnFlushCompleted()`.
///
/// [Locking] All `EventListener` callbacks are designed to be called without
/// the current thread holding any DB mutex. This is to prevent potential
/// deadlock and performance issue when using EventListener callback
/// in a complex way. However, all `EventListener` call-back functions
/// should not run for an extended period of time before the function
/// returns, otherwise RocksDB may be blocked. For example, it is not
/// suggested to do `DB::CompactFiles()` (as it may run for a long while)
/// or issue many of `DB::Put()` (as Put may be blocked in certain cases)
/// in the same thread in the `EventListener` callback. However, doing
/// `DB::CompactFiles()` and `DB::Put()` in a thread other than the
/// EventListener callback thread is considered safe.
///
/// FIXME: how to hold CFHandle ref
pub trait EventListener {
    /// A call-back function to RocksDB which will be called whenever a
    /// registered RocksDB flushes a file.  The default implementation is
    /// no-op.
    ///
    /// Note that the this function must be implemented in a way such that
    /// it should not run for an extended period of time before the function
    /// returns.  Otherwise, RocksDB may be blocked.
    fn on_flush_completed(&mut self, db: &DBRef, flush_job_info: &FlushJobInfo) {}

    /// A call-back function to RocksDB which will be called before a
    /// RocksDB starts to flush memtables.  The default implementation is
    /// no-op.
    ///
    /// Note that the this function must be implemented in a way such that
    /// it should not run for an extended period of time before the function
    /// returns.  Otherwise, RocksDB may be blocked.
    fn on_flush_begin(&mut self, db: &DBRef, flush_job_info: &FlushJobInfo) {}

    /// A call-back function for RocksDB which will be called whenever
    /// a SST file is deleted.  Different from OnCompactionCompleted and
    /// OnFlushCompleted, this call-back is designed for external logging
    /// service and thus only provide string parameters instead
    /// of a pointer to DB.  Applications that build logic basic based
    /// on file creations and deletions is suggested to implement
    /// OnFlushCompleted and OnCompactionCompleted.
    ///
    /// Note that if applications would like to use the passed reference
    /// outside this function call, they should make copies from the
    /// returned value.
    fn on_table_file_deleted(&mut self, info: &TableFileDeletionInfo) {}

    /// A call-back function for RocksDB which will be called whenever
    /// a registered RocksDB compacts a file. The default implementation
    /// is a no-op.
    ///
    /// Note that this function must be implemented in a way such that
    /// it should not run for an extended period of time before the function
    /// returns. Otherwise, RocksDB may be blocked.
    ///
    /// # Arguments
    ///
    /// - db: a pointer to the rocksdb instance which just compacted a file.
    ///
    /// - ci: a reference to a CompactionJobInfo struct. `ci` is released after this function is
    ///   returned, and must be copied if it is needed outside of this function.
    fn on_compaction_completed(&mut self, db: &DBRef, ci: &CompactionJobInfo) {}

    /// A call-back function for RocksDB which will be called whenever
    /// a SST file is created.  Different from OnCompactionCompleted and
    /// OnFlushCompleted, this call-back is designed for external logging
    /// service and thus only provide string parameters instead
    /// of a pointer to DB.  Applications that build logic basic based
    /// on file creations and deletions is suggested to implement
    /// OnFlushCompleted and OnCompactionCompleted.
    ///
    /// Historically it will only be called if the file is successfully created.
    /// Now it will also be called on failure case. User can check info.status
    /// to see if it succeeded or not.
    ///
    /// Note that if applications would like to use the passed reference
    /// outside this function call, they should make copies from these
    /// returned value.
    fn on_table_file_created(&mut self, info: &TableFileCreationInfo) {}

    /// A call-back function for RocksDB which will be called before
    /// a SST file is being created. It will follow by OnTableFileCreated after
    /// the creation finishes.
    ///
    /// Note that if applications would like to use the passed reference
    /// outside this function call, they should make copies from these
    /// returned value.
    fn on_table_file_creation_started(&mut self, info: &TableFileCreationBriefInfo) {}

    /// A call-back function for RocksDB which will be called before
    /// a memtable is made immutable.
    ///
    /// Note that the this function must be implemented in a way such that
    /// it should not run for an extended period of time before the function
    /// returns.  Otherwise, RocksDB may be blocked.
    ///
    /// Note that if applications would like to use the passed reference
    /// outside this function call, they should make copies from these
    /// returned value.
    fn on_memtable_sealed(&mut self, info: &MemTableInfo) {}

    /// A call-back function for RocksDB which will be called before
    /// a column family handle is deleted.
    ///
    /// Note that the this function must be implemented in a way such that
    /// it should not run for an extended period of time before the function
    /// returns.  Otherwise, RocksDB may be blocked.
    ///
    /// @param handle is a pointer to the column family handle to be deleted
    /// which will become a dangling pointer after the deletion.
    fn on_column_family_handle_deletion_started(&mut self, handle: &ColumnFamilyHandle) {}

    /// A call-back function for RocksDB which will be called after an external
    /// file is ingested using IngestExternalFile.
    ///
    /// Note that the this function will run on the same thread as
    /// `IngestExternalFile()`, if this function is blocked, `IngestExternalFile()`
    /// will be blocked from finishing.
    fn on_external_file_ingested(&mut self, db: &DBRef, info: &ExternalFileIngestionInfo) {}

    /// A call-back function for RocksDB which will be called before setting the
    /// background error status to a non-OK value. The new background error status
    /// is provided in `bg_error` and can be modified by the callback. E.g., a
    /// callback can suppress errors by resetting it to Error::OK(), thus
    /// preventing the database from entering read-only mode. We do not provide any
    /// guarantee when failed flushes/compactions will be rescheduled if the user
    /// suppresses an error.
    ///
    /// Note that this function can run on the same threads as flush, compaction,
    /// and user writes. So, it is extremely important not to perform heavy
    /// computations or blocking calls in this function.
    ///
    /// Rust: use `Ok(())` to suppress errors, use `Err(bg_error)` otherwise and default impl.
    fn on_background_error(&mut self, reason: BackgroundErrorReason, bg_error: Error) -> Result<()> {
        Err(bg_error)
    }

    /// Factory method to return CompactionEventListener. If multiple listeners
    /// provides CompactionEventListner, only the first one will be used.
    fn get_compaction_event_listener(&mut self) -> Option<&mut dyn CompactionEventListener> {
        None
    }
}

#[doc(hidden)]
pub mod c {
    use super::*;
    use crate::db::DBRef;
    use crate::to_raw::FromRaw;
    use std::mem;
    use std::ptr;
    use std::slice;
    use std::str;

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_drop(l: *mut ()) {
        let listener = l as *mut Box<dyn EventListener>;
        Box::from_raw(listener);
    }

    unsafe fn flush_job_info_convert<'a>(info: *mut ll::rocks_flush_job_info_t) -> FlushJobInfo<'a> {
        FlushJobInfo {
            cf_name: {
                let mut len = 0;
                let ptr = ll::rocks_flush_job_info_get_cf_name(info, &mut len);
                str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
            },
            file_path: {
                let mut len = 0;
                let ptr = ll::rocks_flush_job_info_get_file_path(info, &mut len);
                str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
            },
            thread_id: ll::rocks_flush_job_info_get_thread_id(info),
            job_id: ll::rocks_flush_job_info_get_job_id(info) as i32,
            triggered_writes_slowdown: ll::rocks_flush_job_info_get_triggered_writes_slowdown(info) != 0,
            triggered_writes_stop: ll::rocks_flush_job_info_get_triggered_writes_stop(info) != 0,
            smallest_seqno: SequenceNumber(ll::rocks_flush_job_info_get_smallest_seqno(info)),
            largest_seqno: SequenceNumber(ll::rocks_flush_job_info_get_largest_seqno(info)),
            table_properties: TableProperties::from_ll(ll::rocks_flush_job_info_get_table_properties(info)),
        }
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_flush_completed(
        l: *mut (),
        db: *mut (), // DB**
        info: *mut ll::rocks_flush_job_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let db_ref = mem::transmute::<_, DBRef>(db);
        let flush_job_info = flush_job_info_convert(info);

        (*listener).on_flush_completed(&db_ref, &flush_job_info);
        mem::forget(db_ref);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_flush_begin(
        l: *mut (),
        db: *mut (), // DB**
        info: *mut ll::rocks_flush_job_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let db_ref = mem::transmute::<_, DBRef>(db);
        let flush_job_info = flush_job_info_convert(info);

        (*listener).on_flush_begin(&db_ref, &flush_job_info);
        mem::forget(db_ref);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_table_file_deleted(
        l: *mut (),
        info: *mut ll::rocks_table_file_deletion_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let info = TableFileDeletionInfo {
            db_name: {
                let mut len = 0;
                let ptr = ll::rocks_table_file_deletion_info_get_db_name(info, &mut len);
                str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
            },
            file_path: {
                let mut len = 0;
                let ptr = ll::rocks_table_file_deletion_info_get_file_path(info, &mut len);
                str::from_utf8_unchecked(slice::from_raw_parts(ptr as *const u8, len))
            },
            job_id: ll::rocks_table_file_deletion_info_get_job_id(info) as i32,
            status: {
                let mut status = ptr::null_mut::<ll::rocks_status_t>();
                ll::rocks_table_file_deletion_info_get_status(info, &mut status);
                Result::from_ll(status)
            },
        };

        (*listener).on_table_file_deleted(&info);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_compaction_completed(
        l: *mut (),
        db: *mut (), // DB** <=> DBRef
        ci: *mut ll::rocks_compaction_job_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let db_ref = mem::transmute::<_, DBRef>(db);
        let info = CompactionJobInfo {
            raw: ci,
            _marker: PhantomData,
        };

        (*listener).on_compaction_completed(&db_ref, &info);
        mem::forget(db_ref);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_table_file_created(
        l: *mut (),
        info: *mut ll::rocks_table_file_creation_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let info = TableFileCreationInfo { raw: info };
        (*listener).on_table_file_created(&info);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_table_file_creation_started(
        l: *mut (),
        info: *mut ll::rocks_table_file_creation_brief_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let info = TableFileCreationBriefInfo { raw: info };
        (*listener).on_table_file_creation_started(&info);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_memtable_sealed(l: *mut (), info: *mut ll::rocks_mem_table_info_t) {
        let listener = l as *mut Box<dyn EventListener>;
        let info = MemTableInfo { raw: info };
        (*listener).on_memtable_sealed(&info);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_column_family_handle_deletion_started(
        l: *mut (),
        handle: *mut ll::rocks_column_family_handle_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let cf = ColumnFamilyHandle::from_ll(handle);
        (*listener).on_column_family_handle_deletion_started(&cf);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_external_file_ingested(
        l: *mut (),
        db: *mut (), // DB**
        info: *const ll::rocks_external_file_ingestion_info_t,
    ) {
        let listener = l as *mut Box<dyn EventListener>;
        let db_ref = mem::transmute::<_, DBRef>(db);
        let info = ExternalFileIngestionInfo { raw: info };
        (*listener).on_external_file_ingested(&db_ref, &info);
        mem::forget(db_ref);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_on_background_error(
        l: *mut (),
        reason: BackgroundErrorReason,
        bg_error: *mut ll::rocks_status_t,
    ) -> u8 {
        let listener = l as *mut Box<dyn EventListener>;
        let result = Result::from_ll(bg_error);
        let ret = (*listener).on_background_error(reason, result.unwrap_err());
        if ret.is_ok() {
            0
        } else {
            1
        }
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_event_listener_get_compaction_event_listener(l: *mut ()) -> *mut () {
        let listener = l as *mut Box<dyn EventListener>;
        match (*listener).get_compaction_event_listener() {
            Some(mut_ref) => Box::into_raw(Box::new(mut_ref)) as *mut (),
            None => ptr::null_mut(),
        }
    }

    // CompactionEventListener
    #[no_mangle]
    pub unsafe extern "C" fn rust_compaction_event_listener_drop(l: *mut ()) {
        let compaction_listener = l as *mut &mut dyn CompactionEventListener;
        Box::from_raw(compaction_listener);
    }

    #[no_mangle]
    pub unsafe extern "C" fn rust_compaction_event_listener_on_compaction(
        l: *mut (),
        level: i32,
        key: &&[u8], // *Slice
        value_type: CompactionListenerValueType,
        existing_value: &&[u8],
        sn: u64,
        is_new: u8,
    ) {
        let compaction_listener = l as *mut &mut dyn CompactionEventListener;
        (*compaction_listener).on_compaction(level, key, value_type, existing_value, SequenceNumber(sn), is_new != 0)
    }
}

#[cfg(test)]
mod tests {
    use super::super::rocksdb::*;
    use super::*;

    #[derive(Default)]
    struct MyEventListener {
        flush_completed_called: usize,
        flush_begin_called: usize,
        table_file_deleted_called: usize,
        compaction_completed_called: usize,
        table_file_created_called: usize,
        table_file_creation_started_called: usize,
        on_memtable_sealed_called: usize,
        on_external_file_ingested_called: usize,
        on_column_family_handle_deletion_started_called: usize,
    }

    impl Drop for MyEventListener {
        fn drop(&mut self) {
            assert!(
                self.flush_begin_called
                    * self.flush_completed_called
                    * self.table_file_deleted_called
                    * self.compaction_completed_called
                    * self.table_file_created_called
                    * self.table_file_creation_started_called
                    * self.on_memtable_sealed_called
                    * self.on_external_file_ingested_called
                    > 0
            );

            // FIXME: seems default cf is deleted twice
            assert!(self.on_column_family_handle_deletion_started_called > 0);

            // assert!(false);
            // FIXME: must assert drop is called
        }
    }

    impl EventListener for MyEventListener {
        fn on_flush_completed(&mut self, db: &DBRef, flush_job_info: &FlushJobInfo) {
            assert!(db.name().len() > 0, "DB name is accessible");
            self.flush_completed_called += 1;
        }

        fn on_flush_begin(&mut self, db: &DBRef, flush_job_info: &FlushJobInfo) {
            self.flush_begin_called += 1;
        }

        fn on_table_file_deleted(&mut self, info: &TableFileDeletionInfo) {
            assert!(info.status.is_ok());
            self.table_file_deleted_called += 1;
        }

        fn on_compaction_completed(&mut self, db: &DBRef, ci: &CompactionJobInfo) {
            assert!(ci.status().is_ok());
            assert!(ci.stats().num_input_files() > 0);
            self.compaction_completed_called += 1;
        }

        fn on_table_file_created(&mut self, info: &TableFileCreationInfo) {
            // maybe: Err(ShutdownInProgress(None, "Database shutdown or Column family drop during compaction"))
            // so `db.pause_background_work()` is needed
            assert!(info.status().is_ok());
            assert!(info.file_size() > 0);
            assert!(info.table_properties().num_entries() > 0);
            assert!(info.reason() != TableFileCreationReason::Recovery);
            self.table_file_created_called += 1;
        }

        fn on_table_file_creation_started(&mut self, info: &TableFileCreationBriefInfo) {
            assert!(info.reason() != TableFileCreationReason::Recovery);
            self.table_file_creation_started_called += 1;
        }

        fn on_memtable_sealed(&mut self, info: &MemTableInfo) {
            assert!(info.num_entries() > 0);
            self.on_memtable_sealed_called += 1;
        }

        fn on_column_family_handle_deletion_started(&mut self, handle: &ColumnFamilyHandle) {
            assert_eq!(handle.id(), 0); // default cf
            self.on_column_family_handle_deletion_started_called += 1;
        }

        fn on_external_file_ingested(&mut self, db: &DBRef, info: &ExternalFileIngestionInfo) {
            assert_eq!(info.table_properties().num_entries(), 9);
            self.on_external_file_ingested_called += 1;
        }

        // TODO: how to test this?
        fn on_background_error(&mut self, reason: BackgroundErrorReason, bg_error: Error) -> Result<()> {
            Err(bg_error)
        }

        fn get_compaction_event_listener(&mut self) -> Option<&mut dyn CompactionEventListener> {
            static mut FUNC: &'static dyn Fn(CompactionEvent) = &|event| {
                assert!(event.is_new);
                // print here will suppress rust test's capture
                // since it'll be called from C++
                // println!("listen compaction event: got => {:?} {:?}", event.sn, event);
            };
            unsafe { Some(&mut FUNC) }
        }
    }

    #[test]
    fn event_listener_works() {
        let tmp_dir = ::tempdir::TempDir::new_in(".", "rocks").unwrap();
        let db = DB::open(
            Options::default().map_db_options(|db| db.create_if_missing(true).add_listener(MyEventListener::default())),
            &tmp_dir,
        )
        .unwrap();

        for i in 0..100 {
            let key = format!("test2-key-{}", i);
            let val = format!("rocksdb-value-{}", i * 10);

            db.put(&WriteOptions::default(), key.as_bytes(), val.as_bytes())
                .unwrap();

            if i % 6 == 0 {
                assert!(db.flush(&FlushOptions::default().wait(true)).is_ok());
            }
            if i % 36 == 0 {
                assert!(db.compact_range(&CompactRangeOptions::default(), ..).is_ok());
            }
        }

        /*
        let cf = db.create_column_family(&Default::default(), "index").unwrap();
        cf.put(&Default::default(), b"test_idx", b"index_val").unwrap();
        assert!(db.drop_column_family(&cf).is_ok());
        */

        assert!(db.flush(&Default::default()).is_ok());

        // ingest an sst file
        use crate::sst_file_writer::SstFileWriter;

        let sst_dir = ::tempdir::TempDir::new_in(".", "rocks.sst").unwrap();
        let writer = SstFileWriter::builder().build();
        writer.open(sst_dir.path().join("2333.sst")).unwrap();
        for i in 0..9 {
            let key = format!("B{:05}", i);
            let value = format!("ABCDEFGH{:03}IJKLMN", i);
            writer.put(key.as_bytes(), value.as_bytes()).unwrap();
        }
        let info = writer.finish().unwrap();
        assert_eq!(info.num_entries(), 9);

        let ret = db.ingest_external_file(
            &[sst_dir.path().join("2333.sst")],
            &IngestExternalFileOptions::default(),
        );
        assert!(ret.is_ok(), "ingest external file fails: {:?}", ret);

        // must have bg threads
        assert!(Env::default_instance().get_thread_list().len() > 0);

        // safe shutdown
        assert!(db.pause_background_work().is_ok());
    }
}