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
use entropy::predict::{PathPredict, WindowPredict};
use entropy::probabilities::{InstancesToProbabilities, SymbolIndex, SymbolInfo};

use io::TokenWriter;
use TokenWriterError;

use binjs_shared::{
    FieldName, IdentifierName, InterfaceName, Node, PropertyKey, SharedString, F64,
};

use itertools::Itertools;

use std;
use std::cell::{Ref, RefCell, RefMut};
use std::collections::HashMap;
use std::rc::Rc;

pub type IOPath = binjs_shared::ast::Path<
    InterfaceName,
    (
        /* child index */ usize,
        /* field name */ FieldName,
    ),
>;

pub use entropy::predict::Instances;

/// A newtype for `usize` used to count the number of some item in a given file.
#[derive(
    Default,
    Serialize,
    Deserialize,
    From,
    Into,
    AddAssign,
    Clone,
    Copy,
    Debug,
    PartialOrd,
    Ord,
    PartialEq,
    Eq,
)]
pub struct InstancesInFile(pub usize);

/// A newtype for `usize` used to count the number of files containing some item.
#[derive(
    Default,
    Display,
    Serialize,
    Deserialize,
    From,
    Into,
    AddAssign,
    Clone,
    Copy,
    Debug,
    PartialOrd,
    Ord,
    PartialEq,
    Eq,
)]
pub struct FilesContaining(pub usize);

/// Add a single symbol to the table of probabilities for a given path.
///
/// Note that this macro could not be implemented as a simple method, as we need to adapt it to different field names.
///
/// Usage:
/// `update_in_context!(self, name_of_the_probability_table, "Description, used for debugging", value_to_encode, path_in_the_ast)`
macro_rules! update_in_context {
    ( $me: ident, $table: ident, $description: expr, $path:expr, $value: expr ) => {{
        use std::borrow::Borrow;

        let path = $path.borrow();
        let mut table = $me.dictionaries.current_mut().$table.borrow_mut();
        table.add(path, $value);

        Ok(())
    }};
}

/// Add a single symbol to the table of probabilities for a prediction window
/// (see `predict::WindowPredict` for details).
///
/// Note that this macro could not be implemented as a simple method, as we need to adapt it to different field names.
///
/// Usage:
/// `update_in_window!(self, name_of_the_probability_table, value_to_encode)`
macro_rules! update_in_window {
    ( $me: ident, $table:ident, $value: expr ) => {{
        let mut table = $me.dictionaries.current_mut().$table.borrow_mut();
        table.add($value);

        Ok(())
    }};
}

/// Count one instance of a user-extensible value in the AST. Used to count the number
/// of instances of e.g. each specific string, each specific number, etc.
///
/// Note that this macro could not be implemented as a simple method, as we need to adapt it to different field names.
///
/// Usage:
/// `increment_instance_count!(self, name_of_the_probability_table, value_to_count)`
macro_rules! increment_instance_count {
    ( $me: ident, $table: ident, $value: expr ) => {
        debug!(target: "dictionary", "Dictionary: Inserting instance {:?}", $value);
        $me.instances_of_user_extensible_data_in_current_file.$table
            .entry($value)
            .and_modify(|instances| {
                *instances += InstancesInFile(1) // We have already seen this string in this file, increment.
            }).or_insert(InstancesInFile(1));    // First time we see this string in this file, store 1.
    }
}

/// Result of a fetch operation in a LinearTable.
#[derive(Clone, Copy, Debug)]
pub enum Fetch<T> {
    /// The value was already in the cache.
    Hit(T),

    /// The value was not in the cache.
    Miss(T),
}
impl<T> Fetch<T> {
    /// Return `true` if this result represents a hit.
    pub fn is_hit(&self) -> bool {
        match *self {
            Fetch::Hit(_) => true,
            _ => false,
        }
    }

    /// Return the slot represented by this fetch.
    pub fn slot(&self) -> &T {
        match *self {
            Fetch::Hit(ref result) => result,
            Fetch::Miss(ref result) => result,
        }
    }
}

/// An index in an LinearTable.
#[derive(Clone, Copy, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub enum TableRef {
    /// The index represents a value in a shared dictionary.
    Shared(usize),

    /// The index represents a value in a prelude dictionary.
    Prelude(usize),
}
impl TableRef {
    pub fn as_shared(&self) -> Option<usize> {
        match *self {
            TableRef::Shared(result) => Some(result),
            _ => None,
        }
    }
}

/// The initial size of LinearTables, in elements.
const INDEXED_TABLE_INITIAL_CAPACITY: usize = 1024;

/// A data structure designed to cache information accessible
/// either by index or by value.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct LinearTable<T>
where
    T: Eq + std::hash::Hash + Clone,
{
    /// The values in the table, in the order in which they were added.
    /// Used to perform lookup with `at_index`.
    values: Vec<T>,

    /// A mapping to value back to the indices used to access them.
    refs_by_value: HashMap<T, TableRef>,

    /// The number of values representing shared dictionary entries in this table.
    shared_len: usize,
}
impl<T> LinearTable<T>
where
    T: Eq + std::hash::Hash + Clone,
{
    /// The number of values representing shared dictionary entries in this table.
    pub fn shared_len(&self) -> usize {
        self.shared_len
    }

    /// The number of values representing prelude dictionary entries in this table.
    pub fn prelude_len(&self) -> usize {
        self.values.len() - self.shared_len
    }

    /// The number of values in this table.
    pub fn len(&self) -> usize {
        self.values.len()
    }
}
impl<T> LinearTable<T>
where
    T: Eq + std::hash::Hash + Clone + std::fmt::Debug + Ord,
{
    /// Create a new LinearTable from a list of instances.
    ///
    /// Values appearing in `instances` that have `threshold` instances or less are ignored.
    pub fn new(
        value_to_instances: HashMap<T, FilesContaining>,
        threshold: FilesContaining,
    ) -> Self {
        debug!(target: "dictionary", "Creating a LinearTable with a threshold of {}", Into::<usize>::into(threshold));
        let value_to_instances = value_to_instances.into_iter().sorted(); // We sort to enforce traversal order.
        let mut values = Vec::with_capacity(INDEXED_TABLE_INITIAL_CAPACITY);
        let mut refs_by_value = HashMap::with_capacity(INDEXED_TABLE_INITIAL_CAPACITY);
        for (value, instances) in value_to_instances {
            debug!(target: "dictionary", "Should we add {:?} to the LinearTable ({} instances)?", value, instances);
            if instances <= threshold {
                // Too few instances, skipping.
                debug!(target: "dictionary", "Too few instances: {} <= {} for {:?}", instances, threshold, value);
                continue;
            }
            let len = TableRef::Shared(values.len());
            values.push(value.clone());
            let prev = refs_by_value.insert(value, len);
            assert!(prev.is_none());
        }
        let shared_len = values.len();
        let result = LinearTable {
            values,
            refs_by_value,
            shared_len,
        };
        debug!(target: "dictionary", "Dictionary: LinearTable contains {:?}", result);
        result
    }

    /// Create an empty `LinearTable`.
    pub fn with_capacity(len: usize) -> Self {
        LinearTable {
            values: Vec::with_capacity(len),
            refs_by_value: HashMap::with_capacity(len),
            shared_len: 0,
        }
    }

    /// Attempt to get the index for a value from the `LinearTable`.
    ///
    /// If the value is already in the cache, return `Fetch::Hit(index)`, where `index` is the
    /// immutable index of the value. Otherwise, allocate a new slot `index` and return
    /// `Fetch::Miss(index)`.
    ///
    /// In both `Fetch::Hit(index)` and `Fetch::Miss(index)`, `0` is the first value, `1` the second
    /// value, etc.
    pub fn fetch_index(&mut self, value: &T) -> Fetch<TableRef> {
        use std::collections::hash_map::Entry::*;
        debug!(target: "dictionary", "Dictionary: 'I'm looking for {:?} in {:?}", value, self);
        let index = self.values.len() - self.shared_len;
        let result = match self.refs_by_value.entry(value.clone()) {
            Occupied(slot) => return Fetch::Hit(*slot.get()),
            Vacant(slot) => {
                let result = TableRef::Prelude(index);
                slot.insert(result.clone());
                result
            }
        };
        self.values.push(value.clone());
        Fetch::Miss(result)
    }

    /// Create a copy of the current LinearTable with an added prelude dictionary.
    pub fn with_prelude<'a>(&self, prelude: &'a [T]) -> Result<Self, &'a T> {
        debug!(target: "dictionary", "LinearTable with {} shared, {} prelude", self.shared_len(), prelude.len());
        let mut clone = self.clone();
        for item in prelude {
            if clone.fetch_index(item).is_hit() {
                // The prelude shouldn't duplicate anything from the dictionary.
                return Err(item);
            }
        }
        Ok(clone)
    }

    /// Access the contents of this table by index.
    pub fn at_index(&self, table_ref: &TableRef) -> Option<&T> {
        let index = match *table_ref {
            TableRef::Shared(raw) => raw,
            TableRef::Prelude(raw) => raw + self.shared_len,
        };
        self.values.get(index)
    }
}

/// Options for creating a dictionary.
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct Options {
    /// Length of AST paths used to establish probabilities.
    depth: usize,

    /// Width of AST paths used to establish probabilities.
    width: usize,
}
impl Options {
    /// Set the length of AST paths used to establish probabilities.
    pub fn with_depth(self, depth: usize) -> Self {
        Options { depth, ..self }
    }

    /// Set the width of windows of references used to establish probabilities.
    pub fn with_width(self, width: usize) -> Self {
        Options { width, ..self }
    }
}

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Dictionary<T> {
    // --- Non-extensible sets of symbols, predicted by path.
    // Used for entropy coding.
    // ---
    /// All booleans appearing in the AST, predicted by path.
    bool_by_path: Rc<RefCell<PathPredict<Option<bool>, T>>>,

    /// All string enumerations, predicted by path.
    string_enum_by_path: Rc<RefCell<PathPredict<SharedString, T>>>,

    /// All interface names, predicted by path.
    interface_name_by_path: Rc<RefCell<PathPredict<InterfaceName, T>>>,

    // --- Extensible sets of symbols, predicted by path.
    // Used for experiments with entropy coding, but so far, not very
    // good with extensibility. There are good chances that this section
    // will disappear in future versions.
    // ---
    /// All floats appearing in the AST.
    float_by_path: Rc<RefCell<PathPredict<Option<F64>, T>>>,

    /// All unsigned longs appearing in the AST.
    unsigned_long_by_path: Rc<RefCell<PathPredict<u32, T>>>,

    /// All property keys.
    property_key_by_path: Rc<RefCell<PathPredict<Option<PropertyKey>, T>>>,

    /// All identifier names, predicted by path.
    identifier_name_by_path: Rc<RefCell<PathPredict<Option<IdentifierName>, T>>>,

    /// All string literals, predicted by path.
    string_literal_by_path: Rc<RefCell<PathPredict<Option<SharedString>, T>>>,

    /// All list lengths, predicted by path.
    list_length_by_path: Rc<RefCell<PathPredict<Option<u32>, T>>>,

    // --- Extensible sets of symbols, predicted by window.
    // Used for experiments for extensibility of entropy coding, but so far,
    // not very good at compression, and might cause serious alignment issues.
    // There are good chances that this section will disappear in future versions.
    // ---
    /// All property keys, predicted by window.
    property_key_by_window: Rc<RefCell<WindowPredict<Option<PropertyKey>, T>>>,

    /// All identifier names, predicted by window.
    identifier_name_by_window: Rc<RefCell<WindowPredict<Option<IdentifierName>, T>>>,

    /// All string literals, predicted by window.
    string_literal_by_window: Rc<RefCell<WindowPredict<Option<SharedString>, T>>>,

    // --- Extensible sets of symbols, as indexed tables.
    // Used to represent instances of extensible sets of symbols as indices in
    // a table. Pretty good for extensibility, experiments pending on
    // compression-level and performance.
    // ---
    /// All unsigned longs.
    unsigned_longs: Rc<RefCell<LinearTable<u32>>>,

    /// All string literals. `None` for `null`.
    string_literals: Rc<RefCell<LinearTable<Option<SharedString>>>>,

    /// All identifier names. `None` for `null`.
    identifier_names: Rc<RefCell<LinearTable<Option<IdentifierName>>>>,

    /// All property keys. `None` for `null`.
    property_keys: Rc<RefCell<LinearTable<Option<PropertyKey>>>>,

    /// All list lenghts. `None` for `null`.
    list_lengths: Rc<RefCell<LinearTable<Option<u32>>>>,

    /// All floats. `None` for `null`.
    floats: Rc<RefCell<LinearTable<Option<F64>>>>,
    // Missing:
    // - offsets (cannot be predicted?)
    // - directives?
}
impl<T> Dictionary<T> {
    /// Create a new dictionary using paths of `depth` depth
    /// and windows of `width` width.
    pub fn new(Options { depth, width }: Options) -> Self {
        Dictionary {
            // By path.
            bool_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            float_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            unsigned_long_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            string_enum_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            property_key_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            identifier_name_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            string_literal_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            list_length_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),
            interface_name_by_path: Rc::new(RefCell::new(PathPredict::new(depth))),

            // By window.
            property_key_by_window: Rc::new(RefCell::new(WindowPredict::new(width))),
            identifier_name_by_window: Rc::new(RefCell::new(WindowPredict::new(width))),
            string_literal_by_window: Rc::new(RefCell::new(WindowPredict::new(width))),

            // Linear tables.
            string_literals: Rc::new(RefCell::new(LinearTable::with_capacity(0))),
            identifier_names: Rc::new(RefCell::new(LinearTable::with_capacity(0))),
            property_keys: Rc::new(RefCell::new(LinearTable::with_capacity(0))),
            list_lengths: Rc::new(RefCell::new(LinearTable::with_capacity(0))),
            floats: Rc::new(RefCell::new(LinearTable::with_capacity(0))),
            unsigned_longs: Rc::new(RefCell::new(LinearTable::with_capacity(0))),
        }
    }

    // The following methods are read-only accessors and may be used regardless
    // of whether we're producing the dictionary or using it.

    pub fn bool_by_path(&self) -> Ref<PathPredict<Option<bool>, T>> {
        self.bool_by_path.as_ref().borrow()
    }

    pub fn string_enum_by_path(&self) -> Ref<PathPredict<SharedString, T>> {
        self.string_enum_by_path.as_ref().borrow()
    }

    pub fn interface_name_by_path(&self) -> Ref<PathPredict<InterfaceName, T>> {
        self.interface_name_by_path.as_ref().borrow()
    }

    pub fn float_by_path(&self) -> Ref<PathPredict<Option<F64>, T>> {
        self.float_by_path.as_ref().borrow()
    }

    pub fn unsigned_long_by_path(&self) -> Ref<PathPredict<u32, T>> {
        self.unsigned_long_by_path.as_ref().borrow()
    }

    pub fn property_key_by_path(&self) -> Ref<PathPredict<Option<PropertyKey>, T>> {
        self.property_key_by_path.as_ref().borrow()
    }

    pub fn identifier_name_by_path(&self) -> Ref<PathPredict<Option<IdentifierName>, T>> {
        self.identifier_name_by_path.as_ref().borrow()
    }

    pub fn string_literal_by_path(&self) -> Ref<PathPredict<Option<SharedString>, T>> {
        self.string_literal_by_path.as_ref().borrow()
    }

    pub fn list_length_by_path(&self) -> Ref<PathPredict<Option<u32>, T>> {
        self.list_length_by_path.as_ref().borrow()
    }

    pub fn property_key_by_window(&self) -> Ref<WindowPredict<Option<PropertyKey>, T>> {
        self.property_key_by_window.as_ref().borrow()
    }

    pub fn identifier_name_by_window(&self) -> Ref<WindowPredict<Option<IdentifierName>, T>> {
        self.identifier_name_by_window.as_ref().borrow()
    }

    pub fn string_literal_by_window(&self) -> Ref<WindowPredict<Option<SharedString>, T>> {
        self.string_literal_by_window.as_ref().borrow()
    }

    pub fn unsigned_longs(&self) -> Ref<LinearTable<u32>> {
        self.unsigned_longs.as_ref().borrow()
    }

    pub fn string_literals(&self) -> Ref<LinearTable<Option<SharedString>>> {
        self.string_literals.as_ref().borrow()
    }

    pub fn identifier_names(&self) -> Ref<LinearTable<Option<IdentifierName>>> {
        self.identifier_names.as_ref().borrow()
    }

    pub fn property_keys(&self) -> Ref<LinearTable<Option<PropertyKey>>> {
        self.property_keys.as_ref().borrow()
    }

    pub fn list_lengths(&self) -> Ref<LinearTable<Option<u32>>> {
        self.list_lengths.as_ref().borrow()
    }

    pub fn floats(&self) -> Ref<LinearTable<Option<F64>>> {
        self.floats.as_ref().borrow()
    }

    /// Return the depth of the current dictionary.
    pub fn depth(&self) -> usize {
        assert_eq!(
            self.bool_by_path().depth(),
            self.string_enum_by_path().depth()
        );
        assert_eq!(
            self.bool_by_path().depth(),
            self.interface_name_by_path().depth()
        );
        self.bool_by_path().depth()
    }

    /// Return the number of states in this dictionary.
    pub fn len(&self) -> usize {
        // Make sure that we don't forget a field.
        let Dictionary {
            ref bool_by_path,
            ref float_by_path,
            ref unsigned_long_by_path,
            ref string_enum_by_path,
            ref property_key_by_path,
            ref identifier_name_by_path,
            ref string_literal_by_path,
            ref list_length_by_path,
            ref interface_name_by_path,
            property_key_by_window: _,
            string_literal_by_window: _,
            identifier_name_by_window: _,
            string_literals: _,
            identifier_names: _,
            property_keys: _,
            list_lengths: _,
            floats: _,
            unsigned_longs: _,
        } = *self;

        bool_by_path.borrow().len()
            + float_by_path.borrow().len()
            + unsigned_long_by_path.borrow().len()
            + string_enum_by_path.borrow().len()
            + property_key_by_path.borrow().len()
            + identifier_name_by_path.borrow().len()
            + interface_name_by_path.borrow().len()
            + string_literal_by_path.borrow().len()
            + list_length_by_path.borrow().len()
            + interface_name_by_path.borrow().len()
    }
}

impl Dictionary<Instances> {
    pub fn bool_by_path_mut(&mut self) -> RefMut<PathPredict<Option<bool>, Instances>> {
        self.bool_by_path.as_ref().borrow_mut()
    }

    pub fn string_enum_by_path_mut(&mut self) -> RefMut<PathPredict<SharedString, Instances>> {
        self.string_enum_by_path.as_ref().borrow_mut()
    }

    pub fn interface_name_by_path_mut(&mut self) -> RefMut<PathPredict<InterfaceName, Instances>> {
        self.interface_name_by_path.as_ref().borrow_mut()
    }

    pub fn float_by_path_mut(&mut self) -> RefMut<PathPredict<Option<F64>, Instances>> {
        self.float_by_path.as_ref().borrow_mut()
    }

    pub fn unsigned_long_by_path_mut(&mut self) -> RefMut<PathPredict<u32, Instances>> {
        self.unsigned_long_by_path.as_ref().borrow_mut()
    }

    pub fn property_key_by_path_mut(
        &mut self,
    ) -> RefMut<PathPredict<Option<PropertyKey>, Instances>> {
        self.property_key_by_path.as_ref().borrow_mut()
    }

    pub fn identifier_name_by_path_mut(
        &mut self,
    ) -> RefMut<PathPredict<Option<IdentifierName>, Instances>> {
        self.identifier_name_by_path.as_ref().borrow_mut()
    }

    pub fn string_literal_by_path_mut(
        &mut self,
    ) -> RefMut<PathPredict<Option<SharedString>, Instances>> {
        self.string_literal_by_path.as_ref().borrow_mut()
    }

    pub fn list_length_by_path_mut(&mut self) -> RefMut<PathPredict<Option<u32>, Instances>> {
        self.list_length_by_path.as_ref().borrow_mut()
    }

    pub fn property_key_by_window_mut(
        &mut self,
    ) -> RefMut<WindowPredict<Option<PropertyKey>, Instances>> {
        self.property_key_by_window.as_ref().borrow_mut()
    }

    pub fn identifier_name_by_window_mut(
        &mut self,
    ) -> RefMut<WindowPredict<Option<IdentifierName>, Instances>> {
        self.identifier_name_by_window.as_ref().borrow_mut()
    }

    pub fn string_literal_by_window_mut(
        &mut self,
    ) -> RefMut<WindowPredict<Option<SharedString>, Instances>> {
        self.string_literal_by_window.as_ref().borrow_mut()
    }

    /// Combine a dictionary obtained by sampling (`self`) and a baseline dictionary
    /// (obtained by `entropy::baseline`) to produce a dictionary able to handle
    /// values that grammatically correct but have not been witnessed during
    /// sampling.
    pub fn with_grammar_fallback(&self, fallback: Dictionary<Instances>) -> Self {
        let result = self.clone();
        let original_len = result.len();
        result
            .bool_by_path
            .borrow_mut()
            .add_fallback(&fallback.bool_by_path());
        result
            .string_enum_by_path
            .borrow_mut()
            .add_fallback(&fallback.string_enum_by_path());
        result
            .interface_name_by_path
            .borrow_mut()
            .add_fallback(&fallback.interface_name_by_path());

        debug!(target: "dictionary", "Added fallback to dictionary {} states => {} states",
            original_len,
            result.len());

        result
    }
}

impl InstancesToProbabilities for Dictionary<Instances> {
    type AsProbabilities = Dictionary<SymbolInfo>;

    /// Convert a dictionary counting instances into a dictionary that
    /// counts probabilities.
    fn instances_to_probabilities(&self, _description: &str) -> Dictionary<SymbolInfo> {
        Dictionary {
            // By path.
            bool_by_path: Rc::new(RefCell::new(
                self.bool_by_path()
                    .instances_to_probabilities("bool_by_path"),
            )),
            float_by_path: Rc::new(RefCell::new(
                self.float_by_path()
                    .instances_to_probabilities("float_by_path"),
            )),
            unsigned_long_by_path: Rc::new(RefCell::new(
                self.unsigned_long_by_path()
                    .instances_to_probabilities("unsigned_long_by_path"),
            )),
            string_enum_by_path: Rc::new(RefCell::new(
                self.string_enum_by_path()
                    .instances_to_probabilities("string_enum_by_path"),
            )),
            property_key_by_path: Rc::new(RefCell::new(
                self.property_key_by_path()
                    .instances_to_probabilities("property_key_by_path"),
            )),
            identifier_name_by_path: Rc::new(RefCell::new(
                self.identifier_name_by_path()
                    .instances_to_probabilities("identifier_name_by_path"),
            )),
            interface_name_by_path: Rc::new(RefCell::new(
                self.interface_name_by_path()
                    .instances_to_probabilities("interface_name_by_path"),
            )),
            string_literal_by_path: Rc::new(RefCell::new(
                self.string_literal_by_path()
                    .instances_to_probabilities("string_literal_by_path"),
            )),
            list_length_by_path: Rc::new(RefCell::new(
                self.list_length_by_path()
                    .instances_to_probabilities("list_length_by_path"),
            )),

            // By window.
            property_key_by_window: Rc::new(RefCell::new(
                self.property_key_by_window()
                    .instances_to_probabilities("property_key_by_window"),
            )),
            identifier_name_by_window: Rc::new(RefCell::new(
                self.identifier_name_by_window()
                    .instances_to_probabilities("identifier_name_by_window"),
            )),
            string_literal_by_window: Rc::new(RefCell::new(
                self.string_literal_by_window()
                    .instances_to_probabilities("string_literal_by_window"),
            )),

            // Linear tables. No probabilities here.
            string_literals: self.string_literals.clone(),
            floats: self.floats.clone(),
            list_lengths: self.list_lengths.clone(),
            identifier_names: self.identifier_names.clone(),
            property_keys: self.property_keys.clone(),
            unsigned_longs: self.unsigned_longs.clone(),
        }
    }
}

/// A container for all the user-extensible data in files,
/// e.g. string literals or numbers.
///
/// This container is used to collect statistics, such as the number
/// of instances of a given string in a file, or the number of files
/// that contain a given string.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct UserExtensibleData<T> {
    /// Instances of IdentifierName.
    pub identifier_name_instances: HashMap<Option<IdentifierName>, T>,

    /// Instances of PropertyKey
    pub property_key_instances: HashMap<Option<PropertyKey>, T>,

    /// Instances of InterfaceName
    pub interface_name_instances: HashMap<InterfaceName, T>,

    /// Instances of string literals.
    pub string_literal_instances: HashMap<Option<SharedString>, T>,

    /// Instances of string enums.
    pub string_enum_instances: HashMap<SharedString, T>,

    /// Instances of list lengths.
    pub list_length_instances: HashMap<Option<u32>, T>,

    /// Instances of floating-point numbers.
    pub float_instances: HashMap<Option<F64>, T>,

    /// Instances of unsigned longs.
    pub unsigned_long_instances: HashMap<u32, T>,
}
impl<T> UserExtensibleData<T> {
    pub fn len(&self) -> usize {
        // Make sure that we don't forget a field.
        let UserExtensibleData {
            ref identifier_name_instances,
            ref property_key_instances,
            ref interface_name_instances,
            ref string_literal_instances,
            ref string_enum_instances,
            ref list_length_instances,
            ref float_instances,
            ref unsigned_long_instances,
        } = *self;
        identifier_name_instances.len()
            + property_key_instances.len()
            + string_literal_instances.len()
            + string_enum_instances.len()
            + interface_name_instances.len()
            + list_length_instances.len()
            + float_instances.len()
            + unsigned_long_instances.len()
    }
}

impl<K> InstancesToProbabilities for HashMap<K, FilesContaining>
where
    K: Eq + std::hash::Hash + Clone,
{
    type AsProbabilities = HashMap<K, SymbolInfo>;

    fn instances_to_probabilities(&self, _description: &str) -> HashMap<K, SymbolInfo> {
        let instances = self
            .values()
            .map(|x| {
                let x: usize = x.clone().into();
                x as u32
            })
            .collect();
        let distribution = Rc::new(RefCell::new(
            range_encoding::CumulativeDistributionFrequency::new(instances),
        ));

        self.into_iter()
            .enumerate()
            .map(|(index, (key, _))| {
                (
                    (*key).clone(),
                    SymbolInfo {
                        index: SymbolIndex::from(index),
                        distribution: distribution.clone(),
                    },
                )
            })
            .collect()
    }
}

/// A family of dictionaries.
///
/// By convention:
/// - key `""` maps to the starting dictionary;
/// - key `"*"` maps to the fallback dictionary, in which
///   all probabilities are equal.
#[derive(Clone, Serialize, Deserialize)]
pub struct DictionaryFamily<T> {
    dictionaries: HashMap<SharedString, Dictionary<T>>,

    /// The stack of dictionaries.
    ///
    /// Note that we clone dictionaries on top of the stack. This assumes that dictionary
    /// cloning is cheap enough that this is a reasonable thing to do.
    dictionary_stack: Vec<(SharedString, Dictionary<T>)>,
}
impl<T> DictionaryFamily<T> {
    /// Exit the current dictionary, returning to the parent dictionary.
    ///
    /// # Failure
    ///
    /// Fails if `name` is not the name of the current dictionary. Used for assertion
    /// purposes.
    pub fn exit(&mut self, name: &SharedString) {
        assert!(self.dictionary_stack.len() > 1);
        let leaving = self.dictionary_stack.pop().unwrap();
        assert_eq!(&leaving.0, name);
    }

    /// Return the sum of lengths of all dictionaries in this family.
    pub fn len(&self) -> usize {
        self.dictionaries
            .values()
            .map(|dictionary| dictionary.len())
            .sum()
    }
}

impl DictionaryFamily<Instances> {
    /// Create an empty DictionaryFamily.
    ///
    /// Initially, this `DictionaryFamily` does not have a current
    /// dictionary. Before the first call to `Self::current` or `Self::current_mut`,
    /// clients MUST call either `enter_existing`or `enter_or_create` to enter a
    /// dictionary.
    pub fn new() -> Self {
        DictionaryFamily {
            dictionaries: HashMap::new(),
            dictionary_stack: vec![],
        }
    }

    /// Push a dictionary on top of the stack.
    /// Create the dictionary if no such dictionary exists.
    pub fn enter_or_create(&mut self, name: &SharedString, options: Options) {
        let dictionary = self
            .dictionaries
            .entry(name.clone())
            .or_insert_with(|| Dictionary::new(options));
        self.dictionary_stack
            .push((name.clone(), dictionary.clone()));
    }

    /// Access the current dictionary, mutably.
    pub fn current_mut(&mut self) -> &mut Dictionary<Instances> {
        &mut self
            .dictionary_stack
            .last_mut()
            .expect("Cannot call `DictionaryFamily::current`, as there's no current dictionary.")
            .1
    }

    /// Iterate mutably through all dictionaries in this family.
    pub fn values_mut(&mut self) -> impl Iterator<Item = &mut Dictionary<Instances>> {
        self.dictionaries.values_mut()
    }

    /// Manually insert a dictionary in the family.
    ///
    /// Returns `true` if there was already a baseline dictionary, `false` otherwise.
    pub fn insert_baseline(&mut self, dictionary: Dictionary<Instances>) -> bool {
        // If there is no main dictionary, add one.
        self.dictionaries
            .entry(SharedString::from_str(""))
            .or_insert_with(|| dictionary.clone());

        // Insert a dictionary for special key `*`.
        self.dictionaries
            .insert(SharedString::from_str("*"), dictionary)
            .is_some()
    }
}

impl DictionaryFamily<SymbolInfo> {
    pub fn enter_existing(&mut self, name: &SharedString) -> Result<(), ()> {
        let dictionary = self.dictionaries.get(name).ok_or(())?;
        self.dictionary_stack
            .push((name.clone(), dictionary.clone()));
        Ok(())
    }

    /// Access the current dictionary, immutably.
    pub fn current(&self) -> &Dictionary<SymbolInfo> {
        &self
            .dictionary_stack
            .last()
            .expect("Cannot call `DictionaryFamily::current`, as there's no current dictionary.")
            .1
    }
}

impl InstancesToProbabilities for DictionaryFamily<Instances> {
    type AsProbabilities = DictionaryFamily<SymbolInfo>;
    fn instances_to_probabilities(&self, description: &str) -> DictionaryFamily<SymbolInfo> {
        assert!(self.dictionary_stack.len() == 1 || self.dictionary_stack.len() == 0); // We only want the toplevel dictionary.
        DictionaryFamily {
            dictionaries: self
                .dictionaries
                .iter()
                .map(|(name, dict)| (name.clone(), dict.instances_to_probabilities(description)))
                .collect(),
            dictionary_stack: vec![],
        }
    }
}

/// A structure used to build a dictionary based on a sample of files.
pub struct DictionaryBuilder {
    /// The family of dictionaries being constructed.
    dictionaries: DictionaryFamily<Instances>,

    /// Number of instances of each string in the current file.
    instances_of_user_extensible_data_in_current_file: UserExtensibleData<InstancesInFile>,

    /// Number of files in which each string appears.
    files_containing_user_extensible_data: UserExtensibleData<FilesContaining>,

    /// Options used to create new dictionaries.
    options: Options,
}

impl DictionaryBuilder {
    /// Create a new dictionary builder using paths of `depth` depth
    /// and windows of `width` width.
    ///
    /// Use `DictionaryBuilder::done` to convert it into a `Dictionary`.
    pub fn new(options: Options) -> Self {
        let mut family = DictionaryFamily::new();
        family.enter_or_create(&SharedString::from_str(""), options.clone());
        DictionaryBuilder {
            dictionaries: family,
            options,
            instances_of_user_extensible_data_in_current_file: UserExtensibleData::default(),
            files_containing_user_extensible_data: UserExtensibleData::default(),
        }
    }

    /// Return a dictionary containing all the paths collected and all
    /// the user-extensible content that appear in more than one file.
    pub fn done(mut self, threshold: FilesContaining) -> DictionaryFamily<Instances> {
        {
            let dictionary = self.dictionaries.current_mut();

            // Generate indexed tables for user-extensible values.
            // These tables are shared across all the dictionaries of the family.
            dictionary.identifier_names = Rc::new(RefCell::new(LinearTable::new(
                self.files_containing_user_extensible_data
                    .identifier_name_instances,
                threshold,
            )));
            dictionary.property_keys = Rc::new(RefCell::new(LinearTable::new(
                self.files_containing_user_extensible_data
                    .property_key_instances,
                threshold,
            )));
            dictionary.list_lengths = Rc::new(RefCell::new(LinearTable::new(
                self.files_containing_user_extensible_data
                    .list_length_instances,
                threshold,
            )));
            dictionary.floats = Rc::new(RefCell::new(LinearTable::new(
                self.files_containing_user_extensible_data.float_instances,
                threshold,
            )));
            dictionary.unsigned_longs = Rc::new(RefCell::new(LinearTable::new(
                self.files_containing_user_extensible_data
                    .unsigned_long_instances,
                threshold,
            )));
            dictionary.string_literals = Rc::new(RefCell::new(LinearTable::new(
                self.files_containing_user_extensible_data
                    .string_literal_instances,
                threshold,
            )));
        }
        self.dictionaries
    }

    pub fn len(&self) -> usize {
        self.dictionaries.len()
    }

    /// Access statistics on the number of files containing specific user-extensible values.
    pub fn files_containing(&self) -> &UserExtensibleData<FilesContaining> {
        &self.files_containing_user_extensible_data
    }

    /// Access statistics on the number of instances of a specific user-extensible value.
    pub fn instances_in_file(&self) -> &UserExtensibleData<InstancesInFile> {
        &self.instances_of_user_extensible_data_in_current_file
    }

    /// Take all strings of a given nature present in a file (as stored
    /// in `self.instances_of_user_extensible_data_in_current_file`) and mark them as
    /// appearing in one more file (as stored in `self.files_containing_user_extensible_data`).
    ///
    /// The caller is responsible for making sure that `source` is a
    /// `self.instances_of_user_extensible_data_in_current_file.XXX` and `destination`
    /// is the corresponding `self.files_containing_user_extensible_data.XXX`.
    ///
    /// Note: This is a function rather than a method because making it a method
    /// would require us to borrow mutably `source` *and* while calling into `self`.
    /// Not very borrow-checker-compatible.
    fn transfer_instances<V>(
        source: &mut HashMap<V, InstancesInFile>,
        destination: &mut HashMap<V, FilesContaining>,
    ) where
        V: std::hash::Hash + Eq + Clone + std::fmt::Debug,
    {
        for (k, _) in source.drain() {
            // Increase the number of files in `destination` that contain `k` by 1,
            // ignoring the number of instances of `k` in `source`.
            destination
                .entry(k)
                .and_modify(|instances| *instances += FilesContaining(1))
                .or_insert(FilesContaining(1));
        }
    }

    fn done_with_file(&mut self) {
        // Count the number of files in which user-extensible instances appear.
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .identifier_name_instances,
            &mut self
                .files_containing_user_extensible_data
                .identifier_name_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .property_key_instances,
            &mut self
                .files_containing_user_extensible_data
                .property_key_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .interface_name_instances,
            &mut self
                .files_containing_user_extensible_data
                .interface_name_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .string_literal_instances,
            &mut self
                .files_containing_user_extensible_data
                .string_literal_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .string_enum_instances,
            &mut self
                .files_containing_user_extensible_data
                .string_enum_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .list_length_instances,
            &mut self
                .files_containing_user_extensible_data
                .list_length_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .float_instances,
            &mut self.files_containing_user_extensible_data.float_instances,
        );
        Self::transfer_instances(
            &mut self
                .instances_of_user_extensible_data_in_current_file
                .unsigned_long_instances,
            &mut self
                .files_containing_user_extensible_data
                .unsigned_long_instances,
        );
    }
}

impl<'a> TokenWriter for &'a mut DictionaryBuilder {
    type Data = [u8; 0]; // Placeholder

    fn done(self) -> Result<Self::Data, TokenWriterError> {
        self.done_with_file();
        debug!(target: "entropy", "Built a dictionary family with len: {}", self.dictionaries.len());
        Ok([])
    }

    fn bool_at(&mut self, value: Option<bool>, path: &IOPath) -> Result<(), TokenWriterError> {
        (*self).bool_at(value, path)
    }

    fn float_at(&mut self, value: Option<f64>, path: &IOPath) -> Result<(), TokenWriterError> {
        (*self).float_at(value, path)
    }

    fn unsigned_long_at(&mut self, value: u32, path: &IOPath) -> Result<(), TokenWriterError> {
        (*self).unsigned_long_at(value, path)
    }

    fn string_enum_at(
        &mut self,
        value: &SharedString,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).string_enum_at(value, path)
    }

    fn string_at(
        &mut self,
        value: Option<&SharedString>,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).string_at(value, path)
    }

    fn property_key_at(
        &mut self,
        value: Option<&PropertyKey>,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).property_key_at(value, path)
    }

    fn identifier_name_at(
        &mut self,
        value: Option<&IdentifierName>,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).identifier_name_at(value, path)
    }

    fn enter_list_at(&mut self, len: usize, path: &IOPath) -> Result<(), TokenWriterError> {
        (*self).enter_list_at(len, path)
    }

    fn enter_tagged_tuple_at(
        &mut self,
        node: &dyn Node,
        tag: &InterfaceName,
        children: &[&FieldName],
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).enter_tagged_tuple_at(node, tag, children, path)
    }

    fn offset_at(&mut self, path: &IOPath) -> Result<(), TokenWriterError> {
        (*self).offset_at(path)
    }

    fn enter_scoped_dictionary_at(
        &mut self,
        name: &SharedString,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).enter_scoped_dictionary_at(name, path)
    }

    fn exit_scoped_dictionary_at(
        &mut self,
        name: &SharedString,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        (*self).exit_scoped_dictionary_at(name, path)
    }
}

impl TokenWriter for DictionaryBuilder {
    type Data = [u8; 0]; // Placeholder

    fn done(mut self) -> Result<Self::Data, TokenWriterError> {
        self.done_with_file();
        debug!(target: "entropy", "Built a dictionary family with len: {}", self.dictionaries.len());
        Ok([])
    }

    fn bool_at(&mut self, value: Option<bool>, path: &IOPath) -> Result<(), TokenWriterError> {
        update_in_context!(self, bool_by_path, "bool_by_path", path, value)?;
        Ok(())
    }

    fn float_at(&mut self, value: Option<f64>, path: &IOPath) -> Result<(), TokenWriterError> {
        let value = value.map(|x| x.into());
        update_in_context!(self, float_by_path, "float_by_path", path, value)?;
        increment_instance_count!(self, float_instances, value);
        Ok(())
    }

    fn unsigned_long_at(&mut self, value: u32, path: &IOPath) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            unsigned_long_by_path,
            "unsigned_long_by_path",
            path,
            value
        )?;
        increment_instance_count!(self, unsigned_long_instances, value);
        Ok(())
    }

    fn string_enum_at(
        &mut self,
        value: &SharedString,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            string_enum_by_path,
            "string_enum_by_path",
            path,
            value.clone()
        )?;
        Ok(())
    }

    fn string_at(
        &mut self,
        value: Option<&SharedString>,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            string_literal_by_path,
            "string_literal_by_path",
            path,
            value.cloned()
        )?;
        update_in_window!(self, string_literal_by_window, value.cloned())?;
        increment_instance_count!(self, string_literal_instances, value.cloned());
        Ok(())
    }

    fn property_key_at(
        &mut self,
        value: Option<&PropertyKey>,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            property_key_by_path,
            "property_key_by_path",
            path,
            value.cloned()
        )?;
        update_in_window!(self, property_key_by_window, value.cloned())?;
        increment_instance_count!(self, property_key_instances, value.cloned());
        Ok(())
    }

    fn identifier_name_at(
        &mut self,
        value: Option<&IdentifierName>,
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            identifier_name_by_path,
            "identifier_name_by_path",
            path,
            value.cloned()
        )?;
        update_in_window!(self, identifier_name_by_window, value.cloned())?;
        increment_instance_count!(self, identifier_name_instances, value.cloned());
        Ok(())
    }

    fn enter_list_at(&mut self, len: usize, path: &IOPath) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            list_length_by_path,
            "list_length_by_path",
            path,
            Some(len as u32)
        )?;
        increment_instance_count!(self, list_length_instances, Some(len as u32));
        Ok(())
    }

    fn enter_tagged_tuple_at(
        &mut self,
        _node: &dyn Node,
        tag: &InterfaceName,
        _children: &[&FieldName],
        path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        update_in_context!(
            self,
            interface_name_by_path,
            "interface_name_by_path",
            path,
            tag.clone()
        )?;
        increment_instance_count!(self, interface_name_instances, tag.clone());
        Ok(())
    }

    fn offset_at(&mut self, _path: &IOPath) -> Result<(), TokenWriterError> {
        Ok(())
    }

    fn enter_scoped_dictionary_at(
        &mut self,
        name: &SharedString,
        _path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        self.dictionaries
            .enter_or_create(name, self.options.clone());
        Ok(())
    }

    fn exit_scoped_dictionary_at(
        &mut self,
        name: &SharedString,
        _path: &IOPath,
    ) -> Result<(), TokenWriterError> {
        self.dictionaries.exit(name);
        Ok(())
    }
}