Skip to content

Commit

Permalink
[write-fonts] Fix double-counting some graph nodes
Browse files Browse the repository at this point in the history
This was a subtle bug in our packing code, where under certain
conditions we would double count inbound edges to certain nodes, causing
us not to duplicate them when we should have.
  • Loading branch information
cmyr committed Sep 7, 2023
1 parent cdf988f commit b81bd09
Showing 1 changed file with 55 additions and 5 deletions.
60 changes: 55 additions & 5 deletions write-fonts/src/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -664,12 +664,23 @@ impl Graph {
}
}

fn find_subgraph_map_hb(&self, idx: ObjectId, graph: &mut HashMap<ObjectId, usize>) {
fn find_subgraph_map_hb(&self, idx: ObjectId, graph: &mut BTreeMap<ObjectId, usize>) {
use std::collections::btree_map::Entry;
for link in &self.objects[&idx].offsets {
*graph.entry(link.object).or_default() += 1;
self.find_subgraph_map_hb(link.object, graph);
match graph.entry(link.object) {
// To avoid double counting, we only recurse if we are seeing
// this node for the first time.
Entry::Vacant(entry) => {
entry.insert(1);
self.find_subgraph_map_hb(link.object, graph);
}
Entry::Occupied(entry) => {
*entry.into_mut() += 1;
}
}
}
}

/// find all of the members of 'targets' that are reachable, skipping nodes in `visited`.
fn find_connected_nodes_hb(
&self,
Expand Down Expand Up @@ -706,11 +717,11 @@ impl Graph {
log::trace!("isolating subgraph with {} roots", roots.len());

// map of object id -> number of incoming edges
let mut subgraph = HashMap::new();
let mut subgraph = BTreeMap::new();

for root in roots.iter() {
// for the roots, we set the edge count to the number of long
// incoming offsets; if this differs from the total number off
// incoming offsets; if this differs from the total number of
// incoming offsets it means we need to dupe the root as well.
let inbound_wide_offsets = self.nodes[root]
.parents
Expand Down Expand Up @@ -1435,6 +1446,45 @@ mod tests {
assert_eq!(graph.num_roots_per_space[&graph.nodes[&ids[5]].space], 1);
}

#[test]
fn all_roads_lead_to_overflow() {
// this is a regression test for a bug we had where we would fail
// to correctly duplicate shared subgraphs when there were
// multiple links between two objects, which caused us to overcount
// the 'incoming edges in subgraph'.

let _ = env_logger::builder().is_test(true).try_init();

let ids = make_ids::<9>();
let sizes = [10, 10, 10, 10, 10, 65524, 65524, 10, 24];
let mut graph = TestGraphBuilder::new(ids, sizes)
.add_link(ids[0], ids[1], OffsetLen::Offset32)
.add_link(ids[0], ids[2], OffsetLen::Offset32)
.add_link(ids[0], ids[3], OffsetLen::Offset32)
.add_link(ids[0], ids[4], OffsetLen::Offset32)
.add_link(ids[1], ids[5], OffsetLen::Offset16)
.add_link(ids[1], ids[5], OffsetLen::Offset16)
.add_link(ids[2], ids[6], OffsetLen::Offset16)
.add_link(ids[3], ids[7], OffsetLen::Offset16)
.add_link(ids[5], ids[8], OffsetLen::Offset16)
.add_link(ids[5], ids[8], OffsetLen::Offset16)
.add_link(ids[6], ids[8], OffsetLen::Offset16)
.add_link(ids[7], ids[8], OffsetLen::Offset16)
.build();

graph.assign_spaces_hb();
graph.sort_shortest_distance();
let overflows = graph.find_overflows();
assert!(!overflows.is_empty());
graph.try_splitting_subgraphs(&overflows);
graph.sort_shortest_distance();
let overflows = graph.find_overflows();
assert!(!overflows.is_empty());
assert!(graph.try_splitting_subgraphs(&overflows));
graph.sort_shortest_distance();
assert!(!graph.has_overflows());
}

#[test]
fn two_roots_one_space() {
// If a subgraph is reachable from multiple long offsets, they are all
Expand Down

0 comments on commit b81bd09

Please sign in to comment.