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::{
|
|
|
|
atrule::{media::MediaRule, SupportsRule, UnknownAtRule},
|
|
|
|
error::SassResult,
|
|
|
|
parse::Stmt,
|
|
|
|
selector::Extender,
|
|
|
|
selector::Selector,
|
|
|
|
style::Style,
|
|
|
|
};
|
2020-01-05 12:45:51 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2020-01-20 13:15:47 -05:00
|
|
|
enum Toplevel {
|
2020-01-08 20:39:05 -05:00
|
|
|
RuleSet(Selector, Vec<BlockEntry>),
|
|
|
|
MultilineComment(String),
|
2020-06-16 19:38:30 -04:00
|
|
|
UnknownAtRule {
|
|
|
|
name: String,
|
|
|
|
params: String,
|
|
|
|
body: Vec<Stmt>,
|
|
|
|
},
|
|
|
|
Media {
|
2020-06-24 11:39:32 -04:00
|
|
|
query: String,
|
2020-06-16 19:38:30 -04:00
|
|
|
body: Vec<Stmt>,
|
|
|
|
},
|
2020-06-20 15:52:53 -04:00
|
|
|
Supports {
|
|
|
|
params: String,
|
|
|
|
body: Vec<Stmt>,
|
|
|
|
},
|
2020-01-29 21:25:07 -05:00
|
|
|
Newline,
|
2020-06-25 00:27:24 -04:00
|
|
|
Style(Style),
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-08 20:39:05 -05:00
|
|
|
#[derive(Debug, Clone)]
|
2020-01-20 13:15:47 -05:00
|
|
|
enum BlockEntry {
|
2020-02-14 18:28:09 -05:00
|
|
|
Style(Box<Style>),
|
2020-01-08 20:39:05 -05:00
|
|
|
MultilineComment(String),
|
|
|
|
}
|
|
|
|
|
2020-04-12 19:37:12 -04:00
|
|
|
impl BlockEntry {
|
|
|
|
pub fn to_string(&self) -> SassResult<String> {
|
2020-01-08 20:39:05 -05:00
|
|
|
match self {
|
2020-04-12 19:37:12 -04:00
|
|
|
BlockEntry::Style(s) => s.to_string(),
|
|
|
|
BlockEntry::MultilineComment(s) => Ok(format!("/*{}*/", s)),
|
2020-01-08 20:39:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Toplevel {
|
|
|
|
const fn new_rule(selector: Selector) -> Self {
|
|
|
|
Toplevel::RuleSet(selector, Vec::new())
|
|
|
|
}
|
|
|
|
|
2020-04-01 17:37:07 -04:00
|
|
|
fn push_style(&mut self, mut s: Style) -> SassResult<()> {
|
2020-04-12 19:37:12 -04:00
|
|
|
s = s.eval()?;
|
2020-04-19 00:39:18 -04:00
|
|
|
if s.value.is_null(s.value.span)? {
|
2020-04-01 17:37:07 -04:00
|
|
|
return Ok(());
|
2020-02-15 09:58:41 -05:00
|
|
|
}
|
2020-01-08 20:39:05 -05:00
|
|
|
if let Toplevel::RuleSet(_, entries) = self {
|
2020-02-14 18:28:09 -05:00
|
|
|
entries.push(BlockEntry::Style(Box::new(s)));
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
2020-04-01 17:37:07 -04:00
|
|
|
Ok(())
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-08 20:39:05 -05:00
|
|
|
fn push_comment(&mut self, s: String) {
|
|
|
|
if let Toplevel::RuleSet(_, entries) = self {
|
|
|
|
entries.push(BlockEntry::MultilineComment(s));
|
|
|
|
}
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2020-06-18 16:56:03 -04:00
|
|
|
pub(crate) struct Css {
|
2020-01-08 20:39:05 -05:00
|
|
|
blocks: Vec<Toplevel>,
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Css {
|
2020-01-05 12:52:50 -05:00
|
|
|
pub const fn new() -> Self {
|
2020-01-19 19:27:52 -05:00
|
|
|
Css { blocks: Vec::new() }
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
2020-06-18 16:56:03 -04:00
|
|
|
pub(crate) fn from_stmts(s: Vec<Stmt>, extender: &mut Extender) -> SassResult<Self> {
|
|
|
|
Css::new().parse_stylesheet(s, extender)
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
2020-06-18 16:56:03 -04:00
|
|
|
fn parse_stmt(&mut self, stmt: Stmt, extender: &mut Extender) -> SassResult<Vec<Toplevel>> {
|
2020-04-01 17:37:07 -04:00
|
|
|
Ok(match stmt {
|
2020-06-23 01:36:22 -04:00
|
|
|
Stmt::RuleSet { selector, body } => {
|
2020-06-18 16:56:03 -04:00
|
|
|
if body.is_empty() {
|
|
|
|
return Ok(Vec::new());
|
|
|
|
}
|
2020-06-23 02:36:30 -04:00
|
|
|
let selector = selector.into_selector().remove_placeholders();
|
2020-02-29 17:23:17 -05:00
|
|
|
if selector.is_empty() {
|
2020-04-01 17:37:07 -04:00
|
|
|
return Ok(Vec::new());
|
2020-02-29 17:23:17 -05:00
|
|
|
}
|
|
|
|
let mut vals = vec![Toplevel::new_rule(selector)];
|
2020-06-16 19:38:30 -04:00
|
|
|
for rule in body {
|
|
|
|
match rule {
|
2020-06-18 16:56:03 -04:00
|
|
|
Stmt::RuleSet { .. } => vals.extend(self.parse_stmt(rule, extender)?),
|
2020-06-25 00:27:24 -04:00
|
|
|
Stmt::Style(s) => vals.get_mut(0).unwrap().push_style(s)?,
|
2020-06-16 19:38:30 -04:00
|
|
|
Stmt::Comment(s) => vals.get_mut(0).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) => {
|
|
|
|
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 { params, body, name })
|
|
|
|
}
|
2020-06-16 19:38:30 -04:00
|
|
|
Stmt::Return(..) => unreachable!(),
|
|
|
|
Stmt::AtRoot { body } => body
|
2020-04-06 13:13:03 -04:00
|
|
|
.into_iter()
|
2020-06-18 16:56:03 -04:00
|
|
|
.map(|r| Ok(vals.extend(self.parse_stmt(r, extender)?)))
|
2020-04-06 13:13:03 -04:00
|
|
|
.collect::<SassResult<()>>()?,
|
2020-01-19 19:27:52 -05:00
|
|
|
};
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
2020-01-19 19:27:52 -05:00
|
|
|
vals
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
2020-06-16 19:38:30 -04:00
|
|
|
Stmt::Comment(s) => vec![Toplevel::MultilineComment(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 { params, name, body }]
|
|
|
|
}
|
2020-06-16 22:00:45 -04:00
|
|
|
Stmt::Return(..) => unreachable!("@return: {:?}", stmt),
|
|
|
|
Stmt::AtRoot { .. } => unreachable!("@at-root: {:?}", stmt),
|
2020-04-01 17:37:07 -04:00
|
|
|
})
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
2020-06-18 16:56:03 -04:00
|
|
|
fn parse_stylesheet(mut self, stmts: Vec<Stmt>, extender: &mut Extender) -> SassResult<Css> {
|
2020-01-29 21:25:07 -05:00
|
|
|
let mut is_first = true;
|
2020-06-16 19:38:30 -04:00
|
|
|
for stmt in stmts {
|
2020-06-18 16:56:03 -04:00
|
|
|
let v = self.parse_stmt(stmt, extender)?;
|
2020-01-29 21:25:07 -05:00
|
|
|
// this is how we print newlines between unrelated styles
|
|
|
|
// it could probably be refactored
|
|
|
|
if !v.is_empty() {
|
2020-04-30 19:59:13 -04:00
|
|
|
if let Some(Toplevel::MultilineComment(..)) = v.get(0) {
|
2020-02-01 19:25:44 -05:00
|
|
|
} else if is_first {
|
2020-01-29 21:25:07 -05:00
|
|
|
is_first = false;
|
|
|
|
} else {
|
|
|
|
self.blocks.push(Toplevel::Newline);
|
|
|
|
}
|
2020-03-01 14:53:52 -05:00
|
|
|
self.blocks.extend(v);
|
2020-01-29 21:25:07 -05:00
|
|
|
}
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
2020-04-01 17:37:07 -04:00
|
|
|
Ok(self)
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
|
2020-06-18 16:56:03 -04:00
|
|
|
pub fn pretty_print(self, map: &CodeMap, extender: &mut Extender) -> SassResult<String> {
|
2020-04-05 23:20:47 -04:00
|
|
|
let mut string = Vec::new();
|
2020-06-18 16:56:03 -04:00
|
|
|
self._inner_pretty_print(&mut string, map, extender, 0)?;
|
2020-04-05 23:20:47 -04:00
|
|
|
if string.iter().any(|s| !s.is_ascii()) {
|
2020-05-01 19:24:26 -04:00
|
|
|
return Ok(format!("@charset \"UTF-8\";\n{}", unsafe {
|
|
|
|
String::from_utf8_unchecked(string)
|
|
|
|
}));
|
2020-02-28 18:27:32 -05:00
|
|
|
}
|
2020-05-01 19:24:26 -04:00
|
|
|
Ok(unsafe { String::from_utf8_unchecked(string) })
|
2020-04-05 23:20:47 -04:00
|
|
|
}
|
|
|
|
|
2020-04-24 22:57:39 -04:00
|
|
|
fn _inner_pretty_print(
|
|
|
|
self,
|
|
|
|
buf: &mut Vec<u8>,
|
|
|
|
map: &CodeMap,
|
2020-06-18 16:56:03 -04:00
|
|
|
extender: &mut Extender,
|
2020-04-24 22:57:39 -04:00
|
|
|
nesting: usize,
|
|
|
|
) -> SassResult<()> {
|
2020-04-05 23:20:47 -04:00
|
|
|
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;
|
2020-01-05 12:45:51 -05:00
|
|
|
for block in self.blocks {
|
2020-01-08 20:39:05 -05:00
|
|
|
match block {
|
|
|
|
Toplevel::RuleSet(selector, styles) => {
|
|
|
|
if styles.is_empty() {
|
|
|
|
continue;
|
|
|
|
}
|
2020-01-29 21:25:07 -05:00
|
|
|
has_written = true;
|
2020-06-18 16:56:03 -04:00
|
|
|
if should_emit_newline {
|
|
|
|
should_emit_newline = false;
|
|
|
|
writeln!(buf)?;
|
|
|
|
}
|
2020-02-22 11:59:16 -05:00
|
|
|
writeln!(buf, "{}{} {{", padding, selector)?;
|
2020-01-08 20:39:05 -05:00
|
|
|
for style in styles {
|
2020-04-12 19:37:12 -04:00
|
|
|
writeln!(buf, "{} {}", padding, style.to_string()?)?;
|
2020-01-08 20:39:05 -05:00
|
|
|
}
|
2020-02-22 11:59:16 -05:00
|
|
|
writeln!(buf, "{}}}", padding)?;
|
2020-01-08 20:39:05 -05:00
|
|
|
}
|
|
|
|
Toplevel::MultilineComment(s) => {
|
2020-01-29 21:25:07 -05:00
|
|
|
has_written = true;
|
2020-02-22 11:59:16 -05:00
|
|
|
writeln!(buf, "{}/*{}*/", padding, s)?;
|
2020-01-26 15:27:38 -05:00
|
|
|
}
|
2020-06-16 19:38:30 -04:00
|
|
|
Toplevel::UnknownAtRule { params, name, body } => {
|
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, " {{")?;
|
|
|
|
}
|
|
|
|
|
2020-06-18 16:56:03 -04:00
|
|
|
Css::from_stmts(body, extender)?._inner_pretty_print(
|
|
|
|
buf,
|
|
|
|
map,
|
|
|
|
extender,
|
|
|
|
nesting + 1,
|
|
|
|
)?;
|
2020-06-16 19:38:30 -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, extender)?._inner_pretty_print(
|
|
|
|
buf,
|
|
|
|
map,
|
|
|
|
extender,
|
|
|
|
nesting + 1,
|
|
|
|
)?;
|
|
|
|
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-02-22 11:59:16 -05:00
|
|
|
}
|
2020-06-18 16:56:03 -04:00
|
|
|
if should_emit_newline {
|
|
|
|
should_emit_newline = false;
|
|
|
|
writeln!(buf)?;
|
|
|
|
}
|
2020-06-24 11:39:32 -04:00
|
|
|
writeln!(buf, "{}@media {} {{", padding, query)?;
|
2020-06-18 16:56:03 -04:00
|
|
|
Css::from_stmts(body, extender)?._inner_pretty_print(
|
|
|
|
buf,
|
|
|
|
map,
|
|
|
|
extender,
|
|
|
|
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;
|
2020-01-29 21:25:07 -05:00
|
|
|
}
|
2020-01-05 12:45:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-01-05 12:52:50 -05:00
|
|
|
}
|