grass/src/output.rs

410 lines
14 KiB
Rust
Raw Normal View History

2020-01-05 12:52:50 -05:00
//! # Convert from SCSS AST to CSS
2020-03-01 14:53:52 -05:00
use std::io::Write;
2020-06-16 19:38:30 -04:00
use codemap::CodeMap;
2020-04-24 22:57:39 -04:00
2020-06-25 00:27:24 -04:00
use crate::{
2020-07-04 20:50:53 -04:00
atrule::{
keyframes::{Keyframes, KeyframesRuleSet, KeyframesSelector},
media::MediaRule,
SupportsRule, UnknownAtRule,
},
2020-06-25 00:27:24 -04:00
error::SassResult,
parse::Stmt,
selector::Selector,
style::Style,
};
#[derive(Debug, Clone)]
struct ToplevelUnknownAtRule {
name: String,
params: String,
body: Vec<Stmt>,
}
#[derive(Debug, Clone)]
enum Toplevel {
RuleSet(Selector, Vec<BlockEntry>),
MultilineComment(String),
UnknownAtRule(Box<ToplevelUnknownAtRule>),
2020-07-04 20:50:53 -04:00
Keyframes(Box<Keyframes>),
KeyframesRuleSet(Vec<KeyframesSelector>, Vec<BlockEntry>),
Media { query: String, body: Vec<Stmt> },
Supports { params: String, body: Vec<Stmt> },
Newline,
// todo: do we actually need a toplevel style variant?
2020-06-25 00:27:24 -04:00
Style(Style),
Import(String),
}
#[derive(Debug, Clone)]
enum BlockEntry {
Style(Style),
MultilineComment(String),
Import(String),
}
2020-04-12 19:37:12 -04:00
impl BlockEntry {
pub fn to_string(&self) -> SassResult<String> {
match self {
2020-04-12 19:37:12 -04:00
BlockEntry::Style(s) => s.to_string(),
BlockEntry::MultilineComment(s) => Ok(format!("/*{}*/", s)),
BlockEntry::Import(s) => Ok(format!("@import {};", s)),
}
}
}
impl Toplevel {
const fn new_rule(selector: Selector) -> Self {
Toplevel::RuleSet(selector, Vec::new())
}
2020-07-04 20:50:53 -04:00
fn new_keyframes_rule(selector: Vec<KeyframesSelector>) -> Self {
Toplevel::KeyframesRuleSet(selector, Vec::new())
}
2020-07-03 12:38:20 -04:00
fn push_style(&mut self, s: Style) {
if s.value.is_null() {
return;
}
2020-07-04 20:50:53 -04:00
if let Toplevel::RuleSet(_, entries) | Toplevel::KeyframesRuleSet(_, entries) = self {
entries.push(BlockEntry::Style(s));
2020-07-04 20:50:53 -04:00
} else {
panic!()
}
}
fn push_comment(&mut self, s: String) {
2020-07-04 20:50:53 -04:00
if let Toplevel::RuleSet(_, entries) | Toplevel::KeyframesRuleSet(_, entries) = self {
entries.push(BlockEntry::MultilineComment(s));
2020-07-04 20:50:53 -04:00
} else {
panic!()
}
}
fn push_import(&mut self, s: String) {
if let Toplevel::RuleSet(_, entries) | Toplevel::KeyframesRuleSet(_, entries) = self {
entries.push(BlockEntry::Import(s));
} else {
panic!()
}
}
}
#[derive(Debug, Clone)]
2020-06-18 16:56:03 -04:00
pub(crate) struct Css {
blocks: Vec<Toplevel>,
in_at_rule: bool,
allows_charset: bool,
}
impl Css {
pub const fn new(in_at_rule: bool, allows_charset: bool) -> Self {
Css {
blocks: Vec::new(),
in_at_rule,
allows_charset,
}
}
pub(crate) fn from_stmts(
s: Vec<Stmt>,
in_at_rule: bool,
allows_charset: bool,
) -> SassResult<Self> {
Css::new(in_at_rule, allows_charset).parse_stylesheet(s)
}
fn parse_stmt(&mut self, stmt: Stmt) -> SassResult<Vec<Toplevel>> {
2020-04-01 17:37:07 -04:00
Ok(match stmt {
Stmt::RuleSet { selector, body } => {
2020-06-18 16:56:03 -04:00
if body.is_empty() {
return Ok(Vec::new());
}
let selector = selector.into_selector().remove_placeholders();
if selector.is_empty() {
2020-04-01 17:37:07 -04:00
return Ok(Vec::new());
}
let mut vals = vec![Toplevel::new_rule(selector)];
2020-06-16 19:38:30 -04:00
for rule in body {
match rule {
Stmt::RuleSet { .. } => vals.extend(self.parse_stmt(rule)?),
2020-08-05 03:09:10 -04:00
Stmt::Style(s) => vals.first_mut().unwrap().push_style(s),
Stmt::Comment(s) => vals.first_mut().unwrap().push_comment(s),
2020-06-25 00:27:24 -04:00
Stmt::Media(m) => {
let MediaRule { query, body, .. } = *m;
2020-06-24 11:39:32 -04:00
vals.push(Toplevel::Media { query, body })
2020-06-16 19:38:30 -04:00
}
2020-06-25 00:27:24 -04:00
Stmt::Supports(s) => {
2020-06-26 06:12:50 -04:00
let SupportsRule { params, body } = *s;
2020-06-20 15:52:53 -04:00
vals.push(Toplevel::Supports { params, body })
}
2020-06-25 00:27:24 -04:00
Stmt::UnknownAtRule(u) => {
let UnknownAtRule {
params, body, name, ..
} = *u;
vals.push(Toplevel::UnknownAtRule(Box::new(ToplevelUnknownAtRule {
params,
body,
name,
})))
2020-06-25 00:27:24 -04:00
}
2020-06-16 19:38:30 -04:00
Stmt::Return(..) => unreachable!(),
2020-07-03 12:38:20 -04:00
Stmt::AtRoot { body } => {
body.into_iter().try_for_each(|r| -> SassResult<()> {
vals.append(&mut self.parse_stmt(r)?);
2020-07-03 12:38:20 -04:00
Ok(())
})?
}
2020-07-04 20:50:53 -04:00
Stmt::Keyframes(k) => {
let Keyframes { rule, name, body } = *k;
vals.push(Toplevel::Keyframes(Box::new(Keyframes {
rule,
name,
body,
})))
2020-07-04 20:50:53 -04:00
}
k @ Stmt::KeyframesRuleSet(..) => {
unreachable!("@keyframes ruleset {:?}", k)
}
2020-08-05 03:09:10 -04:00
Stmt::Import(s) => vals.first_mut().unwrap().push_import(s),
2020-01-19 19:27:52 -05:00
};
}
2020-01-19 19:27:52 -05:00
vals
}
2020-06-16 19:38:30 -04:00
Stmt::Comment(s) => vec![Toplevel::MultilineComment(s)],
Stmt::Import(s) => vec![Toplevel::Import(s)],
2020-04-12 21:47:32 -04:00
Stmt::Style(s) => vec![Toplevel::Style(s)],
2020-06-25 00:27:24 -04:00
Stmt::Media(m) => {
let MediaRule { query, body, .. } = *m;
vec![Toplevel::Media { query, body }]
}
Stmt::Supports(s) => {
2020-06-25 01:18:13 -04:00
let SupportsRule { params, body } = *s;
2020-06-25 00:27:24 -04:00
vec![Toplevel::Supports { params, body }]
}
Stmt::UnknownAtRule(u) => {
let UnknownAtRule {
params, body, name, ..
} = *u;
vec![Toplevel::UnknownAtRule(Box::new(ToplevelUnknownAtRule {
params,
name,
body,
}))]
2020-06-25 00:27:24 -04:00
}
2020-06-16 22:00:45 -04:00
Stmt::Return(..) => unreachable!("@return: {:?}", stmt),
Stmt::AtRoot { .. } => unreachable!("@at-root: {:?}", stmt),
2020-07-04 20:50:53 -04:00
Stmt::Keyframes(k) => vec![Toplevel::Keyframes(k)],
Stmt::KeyframesRuleSet(k) => {
let KeyframesRuleSet { body, selector } = *k;
if body.is_empty() {
return Ok(Vec::new());
}
let mut vals = vec![Toplevel::new_keyframes_rule(selector)];
for rule in body {
match rule {
2020-08-05 03:09:10 -04:00
Stmt::Style(s) => vals.first_mut().unwrap().push_style(s),
2020-07-04 20:50:53 -04:00
Stmt::KeyframesRuleSet(..) => vals.extend(self.parse_stmt(rule)?),
_ => todo!(),
}
}
vals
}
2020-04-01 17:37:07 -04:00
})
}
fn parse_stylesheet(mut self, stmts: Vec<Stmt>) -> SassResult<Css> {
let mut is_first = true;
2020-06-16 19:38:30 -04:00
for stmt in stmts {
let v = self.parse_stmt(stmt)?;
// this is how we print newlines between unrelated styles
// it could probably be refactored
if !v.is_empty() {
2020-08-05 03:09:10 -04:00
if let Some(Toplevel::MultilineComment(..)) = v.first() {
2020-02-01 19:25:44 -05:00
} else if is_first {
is_first = false;
} else {
self.blocks.push(Toplevel::Newline);
}
2020-03-01 14:53:52 -05:00
self.blocks.extend(v);
}
}
2020-04-01 17:37:07 -04:00
Ok(self)
}
pub fn pretty_print(self, map: &CodeMap) -> SassResult<String> {
let mut string = Vec::new();
let allows_charset = self.allows_charset;
self._inner_pretty_print(&mut string, map, 0)?;
if allows_charset && string.iter().any(|s| !s.is_ascii()) {
return Ok(format!("@charset \"UTF-8\";\n{}", unsafe {
String::from_utf8_unchecked(string)
}));
2020-02-28 18:27:32 -05:00
}
Ok(unsafe { String::from_utf8_unchecked(string) })
}
2020-04-24 22:57:39 -04:00
fn _inner_pretty_print(
self,
buf: &mut Vec<u8>,
map: &CodeMap,
nesting: usize,
) -> SassResult<()> {
let mut has_written = false;
let padding = vec![' '; nesting * 2].iter().collect::<String>();
2020-06-18 16:56:03 -04:00
let mut should_emit_newline = false;
for block in self.blocks {
match block {
Toplevel::RuleSet(selector, styles) => {
if styles.is_empty() {
continue;
}
has_written = true;
if should_emit_newline && !self.in_at_rule {
2020-06-18 16:56:03 -04:00
should_emit_newline = false;
writeln!(buf)?;
}
writeln!(buf, "{}{} {{", padding, selector)?;
for style in styles {
2020-04-12 19:37:12 -04:00
writeln!(buf, "{} {}", padding, style.to_string()?)?;
}
writeln!(buf, "{}}}", padding)?;
}
2020-07-04 20:50:53 -04:00
Toplevel::KeyframesRuleSet(selector, body) => {
if body.is_empty() {
continue;
}
has_written = true;
2020-07-04 20:50:53 -04:00
writeln!(
buf,
"{}{} {{",
padding,
selector
.into_iter()
.map(|s| s.to_string())
.collect::<Vec<String>>()
.join(", ")
)?;
for style in body {
writeln!(buf, "{} {}", padding, style.to_string()?)?;
}
writeln!(buf, "{}}}", padding)?;
}
Toplevel::MultilineComment(s) => {
has_written = true;
writeln!(buf, "{}/*{}*/", padding, s)?;
2020-01-26 15:27:38 -05:00
}
Toplevel::Import(s) => {
has_written = true;
writeln!(buf, "{}@import {};", padding, s)?;
}
Toplevel::UnknownAtRule(u) => {
let ToplevelUnknownAtRule { params, name, body } = *u;
2020-06-18 16:56:03 -04:00
if should_emit_newline {
should_emit_newline = false;
writeln!(buf)?;
}
2020-06-16 19:38:30 -04:00
if params.is_empty() {
write!(buf, "{}@{}", padding, name)?;
} else {
write!(buf, "{}@{} {}", padding, name, params)?;
}
if body.is_empty() {
writeln!(buf, ";")?;
continue;
} else {
writeln!(buf, " {{")?;
}
Css::from_stmts(body, true, self.allows_charset)?._inner_pretty_print(
buf,
map,
nesting + 1,
)?;
2020-06-16 19:38:30 -04:00
writeln!(buf, "{}}}", padding)?;
}
2020-07-04 20:50:53 -04:00
Toplevel::Keyframes(k) => {
let Keyframes { rule, name, body } = *k;
2020-07-04 20:50:53 -04:00
if should_emit_newline {
should_emit_newline = false;
writeln!(buf)?;
}
write!(buf, "{}@{}", padding, rule)?;
2020-07-04 20:50:53 -04:00
if !name.is_empty() {
write!(buf, " {}", name)?;
}
if body.is_empty() {
writeln!(buf, " {{}}")?;
continue;
} else {
writeln!(buf, " {{")?;
}
Css::from_stmts(body, true, self.allows_charset)?._inner_pretty_print(
buf,
map,
nesting + 1,
)?;
2020-07-04 20:50:53 -04:00
writeln!(buf, "{}}}", padding)?;
}
2020-06-20 15:52:53 -04:00
Toplevel::Supports { params, body } => {
if should_emit_newline {
should_emit_newline = false;
writeln!(buf)?;
}
if params.is_empty() {
write!(buf, "{}@supports", padding)?;
} else {
write!(buf, "{}@supports {}", padding, params)?;
}
if body.is_empty() {
writeln!(buf, ";")?;
continue;
} else {
writeln!(buf, " {{")?;
}
Css::from_stmts(body, true, self.allows_charset)?._inner_pretty_print(
buf,
map,
nesting + 1,
)?;
2020-06-20 15:52:53 -04:00
writeln!(buf, "{}}}", padding)?;
}
2020-06-24 11:39:32 -04:00
Toplevel::Media { query, body } => {
2020-06-16 19:38:30 -04:00
if body.is_empty() {
continue;
}
2020-06-24 11:39:32 -04:00
writeln!(buf, "{}@media {} {{", padding, query)?;
Css::from_stmts(body, true, self.allows_charset)?._inner_pretty_print(
buf,
map,
nesting + 1,
)?;
2020-06-16 19:38:30 -04:00
writeln!(buf, "{}}}", padding)?;
2020-04-24 22:57:39 -04:00
}
2020-04-12 21:47:32 -04:00
Toplevel::Style(s) => {
writeln!(buf, "{}{}", padding, s.to_string()?)?;
}
2020-02-01 19:25:44 -05:00
Toplevel::Newline => {
if has_written {
2020-06-18 16:56:03 -04:00
should_emit_newline = true;
2020-02-01 19:25:44 -05:00
}
2020-06-18 16:56:03 -04:00
continue;
}
}
}
Ok(())
}
2020-01-05 12:52:50 -05:00
}