mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
script: Reduce the use of unsafe
in LayoutDom (#31979)
Remove the use of unsafe code in the layout wrappers of the DOM. The main change here is that `unsafe_get()` no longer needs to be an unsafe method, which allows us to transitively remove or reduce unsafe blocks from callers. The function itself is not renamed, because it's still a bit dangerous to start removing the layers of abstraction from actual DOM nodes. In addition `init_style_and_opaque_layout_data` can be merged into `initialize_data`, which removes one more unsafe method. Finally, a "Safety" section is added to some unsafe methods.
This commit is contained in:
parent
8aaff61334
commit
18b37e676b
19 changed files with 89 additions and 86 deletions
|
@ -89,9 +89,14 @@ pub trait LayoutNode<'dom>:
|
|||
/// Returns the type ID of this node.
|
||||
fn type_id(&self) -> LayoutNodeType;
|
||||
|
||||
/// Initialize this node with empty style and opaque layout data.
|
||||
///
|
||||
/// # Safety
|
||||
///
|
||||
/// This method is unsafe because it modifies the given node during
|
||||
/// layout. Callers should ensure that no other layout thread is
|
||||
/// attempting to read or modify the opaque layout data of this node.
|
||||
unsafe fn initialize_data(&self);
|
||||
unsafe fn init_style_and_opaque_layout_data(&self, data: Box<StyleAndOpaqueLayoutData>);
|
||||
unsafe fn take_style_and_opaque_layout_data(&self) -> Box<StyleAndOpaqueLayoutData>;
|
||||
|
||||
fn rev_children(self) -> LayoutIterator<ReverseChildrenIterator<Self>> {
|
||||
LayoutIterator(ReverseChildrenIterator {
|
||||
|
@ -259,7 +264,7 @@ pub trait ThreadSafeLayoutNode<'dom>:
|
|||
///
|
||||
/// We need this because the implementation of some methods need to access the layout
|
||||
/// data flags, and we have this annoying trait separation between script and layout :-(
|
||||
unsafe fn unsafe_get(self) -> Self::ConcreteNode;
|
||||
fn unsafe_get(self) -> Self::ConcreteNode;
|
||||
|
||||
fn node_text_content(self) -> Cow<'dom, str>;
|
||||
|
||||
|
@ -338,7 +343,7 @@ pub trait ThreadSafeLayoutElement<'dom>:
|
|||
///
|
||||
/// We need this so that the functions defined on this trait can call
|
||||
/// lazily_compute_pseudo_element_style, which operates on TElement.
|
||||
unsafe fn unsafe_get(self) -> Self::ConcreteElement;
|
||||
fn unsafe_get(self) -> Self::ConcreteElement;
|
||||
|
||||
/// Get the local name of this element. See
|
||||
/// <https://dom.spec.whatwg.org/#concept-element-local-name>.
|
||||
|
@ -437,7 +442,7 @@ pub trait ThreadSafeLayoutElement<'dom>:
|
|||
.stylist
|
||||
.lazily_compute_pseudo_element_style(
|
||||
&context.guards,
|
||||
unsafe { self.unsafe_get() },
|
||||
self.unsafe_get(),
|
||||
&style_pseudo,
|
||||
RuleInclusion::All,
|
||||
data.styles.primary(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue