Skip to content

Commit

Permalink
Add an Either<A, B> type for sharing specified and computed CSS types
Browse files Browse the repository at this point in the history
  • Loading branch information
wafflespeanut committed Nov 9, 2016
1 parent 32a953f commit f36a573
Showing 1 changed file with 69 additions and 1 deletion.
70 changes: 69 additions & 1 deletion components/style/values/mod.rs
Expand Up @@ -6,7 +6,11 @@
//!
//! [values]: https://drafts.csswg.org/css-values/

pub use cssparser::RGBA;
pub use cssparser::{RGBA, Parser};

use parser::Parse;
use std::fmt::{self, Debug};
use style_traits::ToCss;

macro_rules! define_numbered_css_keyword_enum {
($name: ident: $( $css: expr => $variant: ident = $value: expr ),+,) => {
Expand Down Expand Up @@ -59,3 +63,67 @@ impl<T> HasViewportPercentage for T where T: NoViewportPercentage {
}
}

#[derive(Clone, PartialEq, Copy)]
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
pub enum Either<A, B> {
First(A),
Second(B),
}

impl<A: Debug, B: Debug> Debug for Either<A, B> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Either::First(ref v) => v.fmt(f),
Either::Second(ref v) => v.fmt(f),
}
}
}

impl<A: ToCss, B: ToCss> ToCss for Either<A, B> {
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
match *self {
Either::First(ref v) => v.to_css(dest),
Either::Second(ref v) => v.to_css(dest),
}
}
}

impl<A: HasViewportPercentage, B: HasViewportPercentage> HasViewportPercentage for Either<A, B> {
fn has_viewport_percentage(&self) -> bool {
match *self {
Either::First(ref v) => v.has_viewport_percentage(),
Either::Second(ref v) => v.has_viewport_percentage(),
}
}
}

impl<A: Parse, B: Parse> Parse for Either<A, B> {
fn parse(input: &mut Parser) -> Result<Either<A, B>, ()> {
if let Ok(v) = input.try(|i| A::parse(i)) {
Ok(Either::First(v))
} else {
B::parse(input).map(Either::Second)
}
}
}

use self::computed::{Context, ToComputedValue};

impl<A: ToComputedValue, B: ToComputedValue> ToComputedValue for Either<A, B> {
type ComputedValue = Either<A::ComputedValue, B::ComputedValue>;

fn to_computed_value(&self, context: &Context) -> Self::ComputedValue {
match *self {
Either::First(ref a) => Either::First(a.to_computed_value(context)),
Either::Second(ref a) => Either::Second(a.to_computed_value(context)),
}
}

#[inline]
fn from_computed_value(computed: &Self::ComputedValue) -> Self {
match *computed {
Either::First(ref a) => Either::First(ToComputedValue::from_computed_value(a)),
Either::Second(ref a) => Either::Second(ToComputedValue::from_computed_value(a)),
}
}
}

0 comments on commit f36a573

Please sign in to comment.