mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-28 21:04:47 +00:00

These are two different concept, and it is confusing to keep them in the same enum We want to support component without any base element, and Void is already used for global component, so do this refactoring before
52 lines
1.9 KiB
Rust
52 lines
1.9 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
//! Passes that fills the root component used_types.globals
|
|
|
|
use by_address::ByAddress;
|
|
|
|
use crate::diagnostics::BuildDiagnostics;
|
|
use crate::expression_tree::NamedReference;
|
|
use crate::object_tree::*;
|
|
use std::collections::HashSet;
|
|
use std::rc::Rc;
|
|
|
|
/// Fill the root_component's used_types.globals
|
|
pub fn collect_globals(doc: &Document, _diag: &mut BuildDiagnostics) {
|
|
doc.root_component.used_types.borrow_mut().globals.clear();
|
|
let mut set = HashSet::new();
|
|
let mut sorted_globals = vec![];
|
|
for (_, ty) in &doc.exports.0 {
|
|
if let Some(c) = ty.as_ref().left() {
|
|
if c.is_global() {
|
|
if set.insert(ByAddress(c.clone())) {
|
|
collect_in_component(c, &mut set, &mut sorted_globals);
|
|
sorted_globals.push(c.clone());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
collect_in_component(&doc.root_component, &mut set, &mut sorted_globals);
|
|
doc.root_component.used_types.borrow_mut().globals = sorted_globals;
|
|
}
|
|
|
|
fn collect_in_component(
|
|
component: &Rc<Component>,
|
|
global_set: &mut HashSet<ByAddress<Rc<Component>>>,
|
|
sorted_globals: &mut Vec<Rc<Component>>,
|
|
) {
|
|
let mut maybe_collect_global = |nr: &mut NamedReference| {
|
|
let element = nr.element();
|
|
let global_component = element.borrow().enclosing_component.upgrade().unwrap();
|
|
if global_component.is_global() {
|
|
if global_set.insert(ByAddress(global_component.clone())) {
|
|
collect_in_component(&global_component, global_set, sorted_globals);
|
|
sorted_globals.push(global_component);
|
|
}
|
|
}
|
|
};
|
|
visit_all_named_references(component, &mut maybe_collect_global);
|
|
for component in &component.used_types.borrow().sub_components {
|
|
visit_all_named_references(component, &mut maybe_collect_global);
|
|
}
|
|
}
|