Refactor FontStyle and really fix #193

* Using .connect(", ") just to use .split(",") later is silly.
Keep it a vector.
* The 'font-style' property can not be both italic and oblique.
Use an enum instead of two booleans.
This commit is contained in:
Simon Sapin 2014-01-03 14:52:33 +00:00
parent da14203f91
commit 5372212161
6 changed files with 61 additions and 67 deletions

View file

@ -15,7 +15,7 @@ use std::rc::RcMut;
use servo_util::cache::{Cache, HashCache}; use servo_util::cache::{Cache, HashCache};
use servo_util::range::Range; use servo_util::range::Range;
use servo_util::time::ProfilerChan; use servo_util::time::ProfilerChan;
use style::computed_values::{text_decoration, font_weight}; use style::computed_values::{text_decoration, font_weight, font_style};
use color::Color; use color::Color;
use font_context::FontContext; use font_context::FontContext;
@ -100,9 +100,8 @@ pub struct FontMetrics {
pub struct FontStyle { pub struct FontStyle {
pt_size: f64, pt_size: f64,
weight: font_weight::T, weight: font_weight::T,
italic: bool, style: font_style::T,
oblique: bool, families: ~[~str],
families: ~str,
// TODO(Issue #198): font-stretch, text-decoration, font-variant, size-adjust // TODO(Issue #198): font-stretch, text-decoration, font-variant, size-adjust
} }
@ -150,7 +149,7 @@ pub enum FontSelector {
// The ordering of font instances is mainly decided by the CSS // The ordering of font instances is mainly decided by the CSS
// 'font-family' property. The last font is a system fallback font. // 'font-family' property. The last font is a system fallback font.
pub struct FontGroup { pub struct FontGroup {
families: ~str, families: ~[~str],
// style of the first western font in group, which is // style of the first western font in group, which is
// used for purposes of calculating text run metrics. // used for purposes of calculating text run metrics.
style: UsedFontStyle, style: UsedFontStyle,
@ -158,7 +157,7 @@ pub struct FontGroup {
} }
impl FontGroup { impl FontGroup {
pub fn new(families: ~str, style: &UsedFontStyle, fonts: ~[RcMut<Font>]) -> FontGroup { pub fn new(families: ~[~str], style: &UsedFontStyle, fonts: ~[RcMut<Font>]) -> FontGroup {
FontGroup { FontGroup {
families: families, families: families,
style: (*style).clone(), style: (*style).clone(),

View file

@ -99,12 +99,10 @@ impl<'self> FontContext {
} }
} }
fn transform_family(&self, family: &str) -> ~str { fn transform_family(&self, family: &~str) -> ~str {
// FIXME: Need a find_like() in HashMap. debug!("(transform family) searching for `{:s}`", family.as_slice());
let family = family.to_str(); match self.generic_fonts.find(family) {
debug!("(transform family) searching for `{:s}`", family); None => family.to_owned(),
match self.generic_fonts.find(&family) {
None => family,
Some(mapped_family) => (*mapped_family).clone() Some(mapped_family) => (*mapped_family).clone()
} }
} }
@ -115,9 +113,8 @@ impl<'self> FontContext {
debug!("(create font group) --- starting ---"); debug!("(create font group) --- starting ---");
// TODO(Issue #193): make iteration over 'font-family' more robust. // TODO(Issue #193): make iteration over 'font-family' more robust.
for family in style.families.split_iter(',') { for family in style.families.iter() {
let family_name = family.trim(); let transformed_family_name = self.transform_family(family);
let transformed_family_name = self.transform_family(family_name);
debug!("(create font group) transformed family is `{:s}`", transformed_family_name); debug!("(create font group) transformed family is `{:s}`", transformed_family_name);
let mut found = false; let mut found = false;
@ -197,7 +194,7 @@ impl<'self> FontContext {
debug!("(create font group) --- finished ---"); debug!("(create font group) --- finished ---");
unsafe { RcMut::new_unchecked(FontGroup::new(style.families.to_owned(), &used_style, fonts)) } unsafe { RcMut::new_unchecked(FontGroup::new(style.families.clone(), &used_style, fonts)) }
} }
fn create_font_instance(&self, desc: &FontDescriptor) -> Result<RcMut<Font>, ()> { fn create_font_instance(&self, desc: &FontDescriptor) -> Result<RcMut<Font>, ()> {

View file

@ -10,7 +10,7 @@ use platform::font_list::FontListHandle;
use servo_util::time; use servo_util::time;
use servo_util::time::profile; use servo_util::time::profile;
use servo_util::time::ProfilerChan; use servo_util::time::ProfilerChan;
use style::computed_values::font_weight; use style::computed_values::{font_weight, font_style};
use std::hashmap::HashMap; use std::hashmap::HashMap;
@ -115,8 +115,8 @@ impl<'self> FontFamily {
// TODO(Issue #190): if not in the fast path above, do // TODO(Issue #190): if not in the fast path above, do
// expensive matching of weights, etc. // expensive matching of weights, etc.
for entry in self.entries.iter() { for entry in self.entries.iter() {
if (style.weight.is_bold() == entry.is_bold()) && if (style.weight.is_bold() == entry.is_bold()) &&
(style.italic == entry.is_italic()) { ((style.style == font_style::italic) == entry.is_italic()) {
return Some(entry); return Some(entry);
} }

View file

@ -17,6 +17,8 @@ use fontconfig::fontconfig::{
FcObjectSetAdd, FcPatternGetInteger FcObjectSetAdd, FcPatternGetInteger
}; };
use style::computed_values::font_style;
use font::{FontHandleMethods, UsedFontStyle}; use font::{FontHandleMethods, UsedFontStyle};
use font_context::FontContextHandleMethods; use font_context::FontContextHandleMethods;
@ -164,23 +166,25 @@ pub fn path_from_identifier(name: ~str, style: &UsedFontStyle) -> Result<~str, (
return Err(()); return Err(());
} }
if style.italic { match style.style {
let res = do "slant".to_c_str().with_ref |FC_SLANT| { font_style::normal => (),
FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC) font_style::italic => {
}; let res = do "slant".to_c_str().with_ref |FC_SLANT| {
if res != 1 { FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC)
debug!("adding slant(italic) to pattern failed"); };
return Err(()); if res != 1 {
} debug!("adding slant to pattern failed");
} return Err(());
}
if style.oblique { },
let res = do "slant".to_c_str().with_ref |FC_SLANT| { font_style::oblique => {
FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_OBLIQUE) let res = do "slant".to_c_str().with_ref |FC_SLANT| {
}; FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_OBLIQUE)
if res != 1 { };
debug!("adding slant(oblique) to pattern failed"); if res != 1 {
return Err(()); debug!("adding slant(oblique) to pattern failed");
return Err(());
}
} }
} }

View file

@ -17,6 +17,8 @@ use fontconfig::fontconfig::{
FcObjectSetAdd, FcPatternGetInteger FcObjectSetAdd, FcPatternGetInteger
}; };
use style::computed_values::font_style;
use font::{FontHandleMethods, UsedFontStyle}; use font::{FontHandleMethods, UsedFontStyle};
use font_list::{FontEntry, FontFamily, FontFamilyMap}; use font_list::{FontEntry, FontFamily, FontFamilyMap};
@ -163,23 +165,25 @@ pub fn path_from_identifier(name: ~str, style: &UsedFontStyle) -> Result<~str, (
return Err(()); return Err(());
} }
if style.italic { match style.style {
let res = do "slant".to_c_str().with_ref |FC_SLANT| { font_style::normal => (),
FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC) font_style::italic => {
}; let res = do "slant".to_c_str().with_ref |FC_SLANT| {
if res != 1 { FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC)
debug!("adding slant(italic) to pattern failed"); };
return Err(()); if res != 1 {
} debug!("adding slant to pattern failed");
} return Err(());
}
if style.oblique { },
let res = do "slant".to_c_str().with_ref |FC_SLANT| { font_style::oblique => {
FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_OBLIQUE) let res = do "slant".to_c_str().with_ref |FC_SLANT| {
}; FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_OBLIQUE)
if res != 1 { };
debug!("adding slant(oblique) to pattern failed"); if res != 1 {
return Err(()); debug!("adding slant(oblique) to pattern failed");
return Err(());
}
} }
} }

View file

@ -29,7 +29,7 @@ use std::cmp::ApproxEq;
use std::num::Zero; use std::num::Zero;
use style::{ComputedValues, TElement, TNode}; use style::{ComputedValues, TElement, TNode};
use style::computed_values::{LengthOrPercentage, overflow}; use style::computed_values::{LengthOrPercentage, overflow};
use style::computed_values::{border_style, clear, font_family, font_style, line_height}; use style::computed_values::{border_style, clear, font_family, line_height};
use style::computed_values::{text_align, text_decoration, vertical_align, visibility}; use style::computed_values::{text_align, text_decoration, vertical_align, visibility};
use css::node_style::StyledNode; use css::node_style::StyledNode;
@ -404,25 +404,15 @@ impl Box {
font_family::FamilyName(ref name) => (*name).clone(), font_family::FamilyName(ref name) => (*name).clone(),
} }
}; };
let font_families = font_families.connect(", "); debug!("(font style) font families: `{:?}`", font_families);
debug!("(font style) font families: `{:s}`", font_families);
let font_size = my_style.Font.font_size.to_f64().unwrap() / 60.0; let font_size = my_style.Font.font_size.to_f64().unwrap() / 60.0;
debug!("(font style) font size: `{:f}px`", font_size); debug!("(font style) font size: `{:f}px`", font_size);
let (italic, oblique) = match my_style.Font.font_style {
font_style::normal => (false, false),
font_style::italic => (true, false),
font_style::oblique => (false, true),
};
let font_weight = my_style.Font.font_weight;
FontStyle { FontStyle {
pt_size: font_size, pt_size: font_size,
weight: font_weight, weight: my_style.Font.font_weight,
italic: italic, style: my_style.Font.font_style,
oblique: oblique,
families: font_families, families: font_families,
} }
} }