Skip to content

Commit

Permalink
remove panics in planning
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Sep 27, 2023
1 parent 1f1a483 commit e52e041
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 30 deletions.
12 changes: 4 additions & 8 deletions vegafusion-core/src/planning/split_domain_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,7 @@ impl<'a> SplitScaleDomainVisitor<'a> {
}
]
}
))
.unwrap();
))?;

// Create new domain specification that uses the new dataset
let new_domain: ScaleDomainSpec = serde_json::from_value(serde_json::json!([
Expand All @@ -267,8 +266,7 @@ impl<'a> SplitScaleDomainVisitor<'a> {
escape_field(&new_data_name)
)
}
]))
.unwrap();
]))?;

(new_data, new_domain)
} else {
Expand Down Expand Up @@ -324,8 +322,7 @@ impl<'a> SplitScaleDomainVisitor<'a> {
}
]
}
))
.unwrap()
))?
} else {
// Will sort by the grouped field values
serde_json::from_value(serde_json::json!(
Expand All @@ -346,8 +343,7 @@ impl<'a> SplitScaleDomainVisitor<'a> {
}
]
}
))
.unwrap()
))?
})
}
}
28 changes: 6 additions & 22 deletions vegafusion-core/src/planning/stitch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,14 @@ pub fn stitch_specs(
keep_variables: &[ScopedVariable],
) -> Result<CommPlan> {
// Get client spec variable types
let client_defs: HashSet<_> = client_spec.definition_vars().unwrap().into_iter().collect();
let client_inputs: HashSet<_> = client_spec
.input_vars(task_scope)
.unwrap()
.into_iter()
.collect();
let client_updates: HashSet<_> = client_spec
.update_vars(task_scope)
.unwrap()
.into_iter()
.collect();
let client_defs: HashSet<_> = client_spec.definition_vars()?.into_iter().collect();
let client_inputs: HashSet<_> = client_spec.input_vars(task_scope)?.into_iter().collect();
let client_updates: HashSet<_> = client_spec.update_vars(task_scope)?.into_iter().collect();

// Get server spec variable types
let server_defs: HashSet<_> = server_spec.definition_vars().unwrap().into_iter().collect();
let server_inputs: HashSet<_> = server_spec
.input_vars(task_scope)
.unwrap()
.into_iter()
.collect();
let server_updates: HashSet<_> = server_spec
.update_vars(task_scope)
.unwrap()
.into_iter()
.collect();
let server_defs: HashSet<_> = server_spec.definition_vars()?.into_iter().collect();
let server_inputs: HashSet<_> = server_spec.input_vars(task_scope)?.into_iter().collect();
let server_updates: HashSet<_> = server_spec.update_vars(task_scope)?.into_iter().collect();

// Determine communication requirements
let mut server_to_client: HashSet<_> = client_inputs
Expand Down

0 comments on commit e52e041

Please sign in to comment.