mirror of
https://github.com/servo/servo.git
synced 2025-06-18 13:24:29 +00:00
This patch makes the MallocSizeOf stuff in Stylo work more like the HeapSizeOf stuff already in Servo, except better. In particular, it adds deriving support for MallocSizeOf, which will make it easier to improve coverage. The patch does the following. - Combines servo/components/style/stylesheets/memory.rs and the heapsize crate into a new crate, malloc_size_of. - Forks the heapsize_derive crate, calling it malloc_size_of, so that MallocSizeOf can be derived. - Both the new crates have MIT/Apache licenses, like heapsize, in case they are incorporated into heapsize in the future. - Renames the methods within MallocSizeOf and the related traits so they are more concise. - Removes MallocSizeOfWithGuard. - Adds `derive(MallocSizeOf)` to a lot of types, in some cases replacing an equivalent or almost-equivalent hand-written implementation. - Adds stuff so that Rc/Arc can be handled properly.
231 lines
7.2 KiB
Rust
231 lines
7.2 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
//! Calculate [specified][specified] and [computed values][computed] from a
|
|
//! tree of DOM nodes and a set of stylesheets.
|
|
//!
|
|
//! [computed]: https://drafts.csswg.org/css-cascade/#computed
|
|
//! [specified]: https://drafts.csswg.org/css-cascade/#specified
|
|
//!
|
|
//! In particular, this crate contains the definitions of supported properties,
|
|
//! the code to parse them into specified values and calculate the computed
|
|
//! values based on the specified values, as well as the code to serialize both
|
|
//! specified and computed values.
|
|
//!
|
|
//! The main entry point is [`recalc_style_at`][recalc_style_at].
|
|
//!
|
|
//! [recalc_style_at]: traversal/fn.recalc_style_at.html
|
|
//!
|
|
//! Major dependencies are the [cssparser][cssparser] and [selectors][selectors]
|
|
//! crates.
|
|
//!
|
|
//! [cssparser]: ../cssparser/index.html
|
|
//! [selectors]: ../selectors/index.html
|
|
|
|
#![deny(warnings)]
|
|
#![deny(missing_docs)]
|
|
|
|
// FIXME(bholley): We need to blanket-allow unsafe code in order to make the
|
|
// gecko atom!() macro work. When Rust 1.14 is released [1], we can uncomment
|
|
// the commented-out attributes in regen_atoms.py and go back to denying unsafe
|
|
// code by default.
|
|
//
|
|
// [1] https://github.com/rust-lang/rust/issues/15701#issuecomment-251900615
|
|
//#![deny(unsafe_code)]
|
|
#![allow(unused_unsafe)]
|
|
|
|
#![recursion_limit = "500"] // For define_css_keyword_enum! in -moz-appearance
|
|
|
|
extern crate app_units;
|
|
extern crate arrayvec;
|
|
extern crate atomic_refcell;
|
|
#[macro_use]
|
|
extern crate bitflags;
|
|
#[allow(unused_extern_crates)] extern crate byteorder;
|
|
#[cfg(feature = "gecko")] #[macro_use] #[no_link] extern crate cfg_if;
|
|
#[macro_use] extern crate cssparser;
|
|
extern crate euclid;
|
|
extern crate fallible;
|
|
extern crate fnv;
|
|
#[cfg(feature = "gecko")] #[macro_use] pub mod gecko_string_cache;
|
|
extern crate hashglobe;
|
|
#[cfg(feature = "servo")] extern crate heapsize;
|
|
#[cfg(feature = "servo")] #[macro_use] extern crate heapsize_derive;
|
|
extern crate itertools;
|
|
extern crate itoa;
|
|
#[cfg(feature = "servo")] #[macro_use] extern crate html5ever;
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
#[macro_use]
|
|
extern crate log;
|
|
#[cfg(feature = "gecko")] #[macro_use] extern crate malloc_size_of;
|
|
#[cfg(feature = "gecko")] #[macro_use] extern crate malloc_size_of_derive;
|
|
#[allow(unused_extern_crates)]
|
|
#[macro_use]
|
|
extern crate matches;
|
|
#[cfg(feature = "gecko")]
|
|
#[macro_use]
|
|
pub extern crate nsstring_vendor as nsstring;
|
|
#[cfg(feature = "gecko")] extern crate num_cpus;
|
|
extern crate num_integer;
|
|
extern crate num_traits;
|
|
extern crate ordered_float;
|
|
extern crate owning_ref;
|
|
extern crate parking_lot;
|
|
extern crate pdqsort;
|
|
extern crate precomputed_hash;
|
|
extern crate rayon;
|
|
extern crate selectors;
|
|
#[cfg(feature = "servo")] #[macro_use] extern crate serde;
|
|
pub extern crate servo_arc;
|
|
#[cfg(feature = "servo")] #[macro_use] extern crate servo_atoms;
|
|
#[cfg(feature = "servo")] extern crate servo_config;
|
|
#[cfg(feature = "servo")] extern crate servo_url;
|
|
extern crate smallbitvec;
|
|
extern crate smallvec;
|
|
#[macro_use]
|
|
extern crate style_derive;
|
|
#[macro_use]
|
|
extern crate style_traits;
|
|
extern crate time;
|
|
extern crate unicode_bidi;
|
|
#[allow(unused_extern_crates)]
|
|
extern crate unicode_segmentation;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
#[cfg(feature = "servo")] pub mod animation;
|
|
pub mod applicable_declarations;
|
|
#[allow(missing_docs)] // TODO.
|
|
#[cfg(feature = "servo")] pub mod attr;
|
|
pub mod bezier;
|
|
pub mod bloom;
|
|
pub mod cache;
|
|
pub mod context;
|
|
pub mod counter_style;
|
|
pub mod custom_properties;
|
|
pub mod data;
|
|
pub mod dom;
|
|
pub mod driver;
|
|
pub mod element_state;
|
|
#[cfg(feature = "servo")] mod encoding_support;
|
|
pub mod error_reporting;
|
|
pub mod font_face;
|
|
pub mod font_metrics;
|
|
#[cfg(feature = "gecko")] #[allow(unsafe_code)] pub mod gecko;
|
|
#[cfg(feature = "gecko")] #[allow(unsafe_code)] pub mod gecko_bindings;
|
|
pub mod hash;
|
|
pub mod invalidation;
|
|
#[allow(missing_docs)] // TODO.
|
|
pub mod logical_geometry;
|
|
pub mod matching;
|
|
pub mod media_queries;
|
|
pub mod parallel;
|
|
pub mod parser;
|
|
pub mod rule_tree;
|
|
pub mod scoped_tls;
|
|
pub mod selector_map;
|
|
pub mod selector_parser;
|
|
pub mod shared_lock;
|
|
pub mod sharing;
|
|
pub mod style_resolver;
|
|
pub mod stylist;
|
|
#[cfg(feature = "servo")] #[allow(unsafe_code)] pub mod servo;
|
|
pub mod str;
|
|
pub mod style_adjuster;
|
|
pub mod stylesheet_set;
|
|
pub mod stylesheets;
|
|
pub mod thread_state;
|
|
pub mod timer;
|
|
pub mod traversal;
|
|
pub mod traversal_flags;
|
|
#[macro_use]
|
|
#[allow(non_camel_case_types)]
|
|
pub mod values;
|
|
|
|
use std::fmt;
|
|
use style_traits::ToCss;
|
|
|
|
#[cfg(feature = "gecko")] pub use gecko_string_cache as string_cache;
|
|
#[cfg(feature = "gecko")] pub use gecko_string_cache::Atom;
|
|
#[cfg(feature = "gecko")] pub use gecko_string_cache::Namespace;
|
|
#[cfg(feature = "gecko")] pub use gecko_string_cache::Atom as Prefix;
|
|
#[cfg(feature = "gecko")] pub use gecko_string_cache::Atom as LocalName;
|
|
|
|
#[cfg(feature = "servo")] pub use servo_atoms::Atom;
|
|
#[cfg(feature = "servo")] pub use html5ever::Prefix;
|
|
#[cfg(feature = "servo")] pub use html5ever::LocalName;
|
|
#[cfg(feature = "servo")] pub use html5ever::Namespace;
|
|
|
|
/// The CSS properties supported by the style system.
|
|
/// Generated from the properties.mako.rs template by build.rs
|
|
#[macro_use]
|
|
#[allow(unsafe_code)]
|
|
#[deny(missing_docs)]
|
|
pub mod properties {
|
|
include!(concat!(env!("OUT_DIR"), "/properties.rs"));
|
|
}
|
|
|
|
#[cfg(feature = "gecko")]
|
|
#[allow(unsafe_code, missing_docs)]
|
|
pub mod gecko_properties {
|
|
include!(concat!(env!("OUT_DIR"), "/gecko_properties.rs"));
|
|
}
|
|
|
|
macro_rules! reexport_computed_values {
|
|
( $( { $name: ident, $boxed: expr } )+ ) => {
|
|
/// Types for [computed values][computed].
|
|
///
|
|
/// [computed]: https://drafts.csswg.org/css-cascade/#computed
|
|
pub mod computed_values {
|
|
$(
|
|
pub use properties::longhands::$name::computed_value as $name;
|
|
)+
|
|
// Don't use a side-specific name needlessly:
|
|
pub use properties::longhands::border_top_style::computed_value as border_style;
|
|
}
|
|
}
|
|
}
|
|
longhand_properties_idents!(reexport_computed_values);
|
|
|
|
/// Serializes as CSS a comma-separated list of any `T` that supports being
|
|
/// serialized as CSS.
|
|
pub fn serialize_comma_separated_list<W, T>(dest: &mut W,
|
|
list: &[T])
|
|
-> fmt::Result
|
|
where W: fmt::Write,
|
|
T: ToCss,
|
|
{
|
|
if list.is_empty() {
|
|
return Ok(());
|
|
}
|
|
|
|
list[0].to_css(dest)?;
|
|
|
|
for item in list.iter().skip(1) {
|
|
dest.write_str(", ")?;
|
|
item.to_css(dest)?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(feature = "gecko")] use gecko_string_cache::WeakAtom;
|
|
#[cfg(feature = "servo")] use servo_atoms::Atom as WeakAtom;
|
|
|
|
/// Extension methods for selectors::attr::CaseSensitivity
|
|
pub trait CaseSensitivityExt {
|
|
/// Return whether two atoms compare equal according to this case sensitivity.
|
|
fn eq_atom(self, a: &WeakAtom, b: &WeakAtom) -> bool;
|
|
}
|
|
|
|
impl CaseSensitivityExt for selectors::attr::CaseSensitivity {
|
|
fn eq_atom(self, a: &WeakAtom, b: &WeakAtom) -> bool {
|
|
match self {
|
|
selectors::attr::CaseSensitivity::CaseSensitive => a == b,
|
|
selectors::attr::CaseSensitivity::AsciiCaseInsensitive => a.eq_ignore_ascii_case(b),
|
|
}
|
|
}
|
|
}
|