mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Change StyleSet to track stylesheets by unique ID.
MozReview-Commit-ID: Ky3P53o4Euw
This commit is contained in:
parent
32f4273e38
commit
2b6c494f85
4 changed files with 62 additions and 37 deletions
|
@ -18,7 +18,7 @@ use std::collections::HashMap;
|
|||
use std::sync::Arc;
|
||||
use std::sync::mpsc::{Receiver, Sender, channel};
|
||||
use stylesheet_set::StylesheetSet;
|
||||
use stylesheets::{FontFaceRule, Origin};
|
||||
use stylesheets::{FontFaceRule, Origin, Stylesheet};
|
||||
use stylist::{ExtraStyleData, Stylist};
|
||||
|
||||
/// The container for data that a Servo-backed Gecko document needs to style
|
||||
|
@ -106,8 +106,9 @@ impl PerDocumentStyleDataImpl {
|
|||
};
|
||||
|
||||
let author_style_disabled = self.stylesheets.author_style_disabled();
|
||||
let stylesheets = self.stylesheets.flush();
|
||||
stylist.update(stylesheets,
|
||||
let mut stylesheets = Vec::<Arc<Stylesheet>>::new();
|
||||
self.stylesheets.flush(&mut stylesheets);
|
||||
stylist.update(stylesheets.as_slice(),
|
||||
&StylesheetGuards::same(guard),
|
||||
/* ua_sheets = */ None,
|
||||
/* stylesheets_changed = */ true,
|
||||
|
|
|
@ -1574,16 +1574,18 @@ extern "C" {
|
|||
extern "C" {
|
||||
pub fn Servo_StyleSet_AppendStyleSheet(set: RawServoStyleSetBorrowed,
|
||||
sheet: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
flush: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Servo_StyleSet_PrependStyleSheet(set: RawServoStyleSetBorrowed,
|
||||
sheet: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
flush: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Servo_StyleSet_RemoveStyleSheet(set: RawServoStyleSetBorrowed,
|
||||
sheet: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
flush: bool);
|
||||
}
|
||||
extern "C" {
|
||||
|
@ -1591,8 +1593,8 @@ extern "C" {
|
|||
RawServoStyleSetBorrowed,
|
||||
sheet:
|
||||
RawServoStyleSheetBorrowed,
|
||||
reference:
|
||||
RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
before_unique_id: u32,
|
||||
flush: bool);
|
||||
}
|
||||
extern "C" {
|
||||
|
|
|
@ -4,19 +4,26 @@
|
|||
|
||||
//! A centralized set of stylesheets for a document.
|
||||
|
||||
use arc_ptr_eq;
|
||||
use std::sync::Arc;
|
||||
use stylesheets::Stylesheet;
|
||||
|
||||
/// Entry for a StylesheetSet. We don't bother creating a constructor, because
|
||||
/// there's no sensible defaults for the member variables.
|
||||
pub struct StylesheetSetEntry {
|
||||
unique_id: u32,
|
||||
sheet: Arc<Stylesheet>,
|
||||
}
|
||||
|
||||
/// The set of stylesheets effective for a given document.
|
||||
pub struct StylesheetSet {
|
||||
/// The actual list of all the stylesheets that apply to the given document.
|
||||
/// The actual list of all the stylesheets that apply to the given document,
|
||||
/// each stylesheet associated with a unique ID.
|
||||
///
|
||||
/// This is only a list of top-level stylesheets, and as such it doesn't
|
||||
/// include recursive `@import` rules.
|
||||
stylesheets: Vec<Arc<Stylesheet>>,
|
||||
entries: Vec<StylesheetSetEntry>,
|
||||
|
||||
/// Whether the stylesheets list above has changed since the last restyle.
|
||||
/// Whether the entries list above has changed since the last restyle.
|
||||
dirty: bool,
|
||||
|
||||
/// Has author style been disabled?
|
||||
|
@ -27,7 +34,7 @@ impl StylesheetSet {
|
|||
/// Create a new empty StylesheetSet.
|
||||
pub fn new() -> Self {
|
||||
StylesheetSet {
|
||||
stylesheets: vec![],
|
||||
entries: vec![],
|
||||
dirty: false,
|
||||
author_style_disabled: false,
|
||||
}
|
||||
|
@ -39,39 +46,51 @@ impl StylesheetSet {
|
|||
self.author_style_disabled
|
||||
}
|
||||
|
||||
fn remove_stylesheet_if_present(&mut self, sheet: &Arc<Stylesheet>) {
|
||||
self.stylesheets.retain(|x| !arc_ptr_eq(x, sheet));
|
||||
fn remove_stylesheet_if_present(&mut self, unique_id: u32) {
|
||||
self.entries.retain(|x| x.unique_id != unique_id);
|
||||
}
|
||||
|
||||
/// Appends a new stylesheet to the current set.
|
||||
pub fn append_stylesheet(&mut self, sheet: &Arc<Stylesheet>) {
|
||||
self.remove_stylesheet_if_present(sheet);
|
||||
self.stylesheets.push(sheet.clone());
|
||||
pub fn append_stylesheet(&mut self, sheet: &Arc<Stylesheet>,
|
||||
unique_id: u32) {
|
||||
self.remove_stylesheet_if_present(unique_id);
|
||||
self.entries.push(StylesheetSetEntry {
|
||||
unique_id: unique_id,
|
||||
sheet: sheet.clone(),
|
||||
});
|
||||
self.dirty = true;
|
||||
}
|
||||
|
||||
/// Prepend a new stylesheet to the current set.
|
||||
pub fn prepend_stylesheet(&mut self, sheet: &Arc<Stylesheet>) {
|
||||
self.remove_stylesheet_if_present(sheet);
|
||||
self.stylesheets.insert(0, sheet.clone());
|
||||
pub fn prepend_stylesheet(&mut self, sheet: &Arc<Stylesheet>,
|
||||
unique_id: u32) {
|
||||
self.remove_stylesheet_if_present(unique_id);
|
||||
self.entries.insert(0, StylesheetSetEntry {
|
||||
unique_id: unique_id,
|
||||
sheet: sheet.clone(),
|
||||
});
|
||||
self.dirty = true;
|
||||
}
|
||||
|
||||
/// Insert a given stylesheet before another stylesheet in the document.
|
||||
pub fn insert_stylesheet_before(&mut self,
|
||||
sheet: &Arc<Stylesheet>,
|
||||
before: &Arc<Stylesheet>) {
|
||||
self.remove_stylesheet_if_present(sheet);
|
||||
let index = self.stylesheets.iter().position(|x| {
|
||||
arc_ptr_eq(x, before)
|
||||
}).expect("`before` stylesheet not found");
|
||||
self.stylesheets.insert(index, sheet.clone());
|
||||
unique_id: u32,
|
||||
before_unique_id: u32) {
|
||||
self.remove_stylesheet_if_present(unique_id);
|
||||
let index = self.entries.iter().position(|x| {
|
||||
x.unique_id == before_unique_id
|
||||
}).expect("`before_unique_id` stylesheet not found");
|
||||
self.entries.insert(index, StylesheetSetEntry {
|
||||
unique_id: unique_id,
|
||||
sheet: sheet.clone(),
|
||||
});
|
||||
self.dirty = true;
|
||||
}
|
||||
|
||||
/// Remove a given stylesheet from the set.
|
||||
pub fn remove_stylesheet(&mut self, sheet: &Arc<Stylesheet>) {
|
||||
self.remove_stylesheet_if_present(sheet);
|
||||
pub fn remove_stylesheet(&mut self, unique_id: u32) {
|
||||
self.remove_stylesheet_if_present(unique_id);
|
||||
self.dirty = true;
|
||||
}
|
||||
|
||||
|
@ -90,9 +109,11 @@ impl StylesheetSet {
|
|||
}
|
||||
|
||||
/// Flush the current set, unmarking it as dirty.
|
||||
pub fn flush(&mut self) -> &[Arc<Stylesheet>] {
|
||||
pub fn flush(&mut self, sheets: &mut Vec<Arc<Stylesheet>>) {
|
||||
self.dirty = false;
|
||||
&self.stylesheets
|
||||
for entry in &self.entries {
|
||||
sheets.push(entry.sheet.clone())
|
||||
}
|
||||
}
|
||||
|
||||
/// Mark the stylesheets as dirty, because something external may have
|
||||
|
|
|
@ -593,12 +593,13 @@ pub extern "C" fn Servo_StyleSheet_ClearAndUpdate(stylesheet: RawServoStyleSheet
|
|||
#[no_mangle]
|
||||
pub extern "C" fn Servo_StyleSet_AppendStyleSheet(raw_data: RawServoStyleSetBorrowed,
|
||||
raw_sheet: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
flush: bool) {
|
||||
let global_style_data = &*GLOBAL_STYLE_DATA;
|
||||
let guard = global_style_data.shared_lock.read();
|
||||
let mut data = PerDocumentStyleData::from_ffi(raw_data).borrow_mut();
|
||||
let sheet = HasArcFFI::as_arc(&raw_sheet);
|
||||
data.stylesheets.append_stylesheet(sheet);
|
||||
data.stylesheets.append_stylesheet(sheet, unique_id);
|
||||
if flush {
|
||||
data.flush_stylesheets(&guard);
|
||||
}
|
||||
|
@ -607,12 +608,13 @@ pub extern "C" fn Servo_StyleSet_AppendStyleSheet(raw_data: RawServoStyleSetBorr
|
|||
#[no_mangle]
|
||||
pub extern "C" fn Servo_StyleSet_PrependStyleSheet(raw_data: RawServoStyleSetBorrowed,
|
||||
raw_sheet: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
flush: bool) {
|
||||
let global_style_data = &*GLOBAL_STYLE_DATA;
|
||||
let guard = global_style_data.shared_lock.read();
|
||||
let mut data = PerDocumentStyleData::from_ffi(raw_data).borrow_mut();
|
||||
let sheet = HasArcFFI::as_arc(&raw_sheet);
|
||||
data.stylesheets.prepend_stylesheet(sheet);
|
||||
data.stylesheets.prepend_stylesheet(sheet, unique_id);
|
||||
if flush {
|
||||
data.flush_stylesheets(&guard);
|
||||
}
|
||||
|
@ -621,14 +623,14 @@ pub extern "C" fn Servo_StyleSet_PrependStyleSheet(raw_data: RawServoStyleSetBor
|
|||
#[no_mangle]
|
||||
pub extern "C" fn Servo_StyleSet_InsertStyleSheetBefore(raw_data: RawServoStyleSetBorrowed,
|
||||
raw_sheet: RawServoStyleSheetBorrowed,
|
||||
raw_reference: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
before_unique_id: u32,
|
||||
flush: bool) {
|
||||
let global_style_data = &*GLOBAL_STYLE_DATA;
|
||||
let guard = global_style_data.shared_lock.read();
|
||||
let mut data = PerDocumentStyleData::from_ffi(raw_data).borrow_mut();
|
||||
let sheet = HasArcFFI::as_arc(&raw_sheet);
|
||||
let reference = HasArcFFI::as_arc(&raw_reference);
|
||||
data.stylesheets.insert_stylesheet_before(sheet, reference);
|
||||
data.stylesheets.insert_stylesheet_before(sheet, unique_id, before_unique_id);
|
||||
if flush {
|
||||
data.flush_stylesheets(&guard);
|
||||
}
|
||||
|
@ -636,13 +638,12 @@ pub extern "C" fn Servo_StyleSet_InsertStyleSheetBefore(raw_data: RawServoStyleS
|
|||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn Servo_StyleSet_RemoveStyleSheet(raw_data: RawServoStyleSetBorrowed,
|
||||
raw_sheet: RawServoStyleSheetBorrowed,
|
||||
unique_id: u32,
|
||||
flush: bool) {
|
||||
let global_style_data = &*GLOBAL_STYLE_DATA;
|
||||
let guard = global_style_data.shared_lock.read();
|
||||
let mut data = PerDocumentStyleData::from_ffi(raw_data).borrow_mut();
|
||||
let sheet = HasArcFFI::as_arc(&raw_sheet);
|
||||
data.stylesheets.remove_stylesheet(sheet);
|
||||
data.stylesheets.remove_stylesheet(unique_id);
|
||||
if flush {
|
||||
data.flush_stylesheets(&guard);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue