// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use crate::msg::MediaType; use crate::swc_common; use crate::swc_common::comments::Comments; use crate::swc_common::errors::Diagnostic; use crate::swc_common::errors::DiagnosticBuilder; use crate::swc_common::errors::Emitter; use crate::swc_common::errors::Handler; use crate::swc_common::errors::HandlerFlags; use crate::swc_common::FileName; use crate::swc_common::Globals; use crate::swc_common::SourceMap; use crate::swc_common::Span; use crate::swc_ecma_ast; use crate::swc_ecma_parser::lexer::Lexer; use crate::swc_ecma_parser::EsConfig; use crate::swc_ecma_parser::JscTarget; use crate::swc_ecma_parser::Parser; use crate::swc_ecma_parser::Session; use crate::swc_ecma_parser::SourceFileInput; use crate::swc_ecma_parser::Syntax; use crate::swc_ecma_parser::TsConfig; use std::error::Error; use std::fmt; use std::sync::Arc; use std::sync::RwLock; fn get_default_es_config() -> EsConfig { let mut config = EsConfig::default(); config.num_sep = true; config.class_private_props = true; config.class_private_methods = true; config.class_props = true; config.export_default_from = true; config.export_namespace_from = true; config.dynamic_import = true; config.nullish_coalescing = true; config.optional_chaining = true; config.import_meta = true; config.top_level_await = true; config } fn get_default_ts_config() -> TsConfig { let mut ts_config = TsConfig::default(); ts_config.dynamic_import = true; ts_config.decorators = true; ts_config } pub fn get_syntax_for_media_type(media_type: MediaType) -> Syntax { match media_type { MediaType::JavaScript => Syntax::Es(get_default_es_config()), MediaType::JSX => { let mut config = get_default_es_config(); config.jsx = true; Syntax::Es(config) } MediaType::TypeScript => Syntax::Typescript(get_default_ts_config()), MediaType::TSX => { let mut config = get_default_ts_config(); config.tsx = true; Syntax::Typescript(config) } _ => Syntax::Es(get_default_es_config()), } } #[derive(Clone, Debug)] pub struct SwcDiagnosticBuffer { pub diagnostics: Vec, } impl Error for SwcDiagnosticBuffer {} impl fmt::Display for SwcDiagnosticBuffer { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let msg = self.diagnostics.join(","); f.pad(&msg) } } impl SwcDiagnosticBuffer { pub fn from_swc_error( error_buffer: SwcErrorBuffer, parser: &AstParser, ) -> Self { let s = error_buffer.0.read().unwrap().clone(); let diagnostics = s .iter() .map(|d| { let mut msg = d.message(); if let Some(span) = d.span.primary_span() { let location = parser.get_span_location(span); let filename = match &location.file.name { FileName::Custom(n) => n, _ => unreachable!(), }; msg = format!( "{} at {}:{}:{}", msg, filename, location.line, location.col_display ); } msg }) .collect::>(); Self { diagnostics } } } #[derive(Clone)] pub struct SwcErrorBuffer(Arc>>); impl SwcErrorBuffer { pub fn default() -> Self { Self(Arc::new(RwLock::new(vec![]))) } } impl Emitter for SwcErrorBuffer { fn emit(&mut self, db: &DiagnosticBuilder) { self.0.write().unwrap().push((**db).clone()); } } /// Low-level utility structure with common AST parsing functions. /// /// Allows to build more complicated parser by providing a callback /// to `parse_module`. pub struct AstParser { pub buffered_error: SwcErrorBuffer, pub source_map: Arc, pub handler: Handler, pub comments: Comments, pub globals: Globals, } impl AstParser { pub fn new() -> Self { let buffered_error = SwcErrorBuffer::default(); let handler = Handler::with_emitter_and_flags( Box::new(buffered_error.clone()), HandlerFlags { dont_buffer_diagnostics: true, can_emit_warnings: true, ..Default::default() }, ); AstParser { buffered_error, source_map: Arc::new(SourceMap::default()), handler, comments: Comments::default(), globals: Globals::new(), } } pub fn parse_module( &self, file_name: &str, media_type: MediaType, source_code: &str, callback: F, ) -> R where F: FnOnce(Result) -> R, { swc_common::GLOBALS.set(&self.globals, || { let swc_source_file = self.source_map.new_source_file( FileName::Custom(file_name.to_string()), source_code.to_string(), ); let buffered_err = self.buffered_error.clone(); let session = Session { handler: &self.handler, }; let syntax = get_syntax_for_media_type(media_type); let lexer = Lexer::new( session, syntax, JscTarget::Es2019, SourceFileInput::from(&*swc_source_file), Some(&self.comments), ); let mut parser = Parser::new_from(session, lexer); let parse_result = parser .parse_module() .map_err(move |mut err: DiagnosticBuilder| { err.emit(); SwcDiagnosticBuffer::from_swc_error(buffered_err, self) }); callback(parse_result) }) } pub fn get_span_location(&self, span: Span) -> swc_common::Loc { self.source_map.lookup_char_pos(span.lo()) } pub fn get_span_comments( &self, span: Span, ) -> Vec { let maybe_comments = self.comments.take_leading_comments(span.lo()); if let Some(comments) = maybe_comments { // clone the comments and put them back in map let to_return = comments.clone(); self.comments.add_leading(span.lo(), comments); to_return } else { vec![] } } }