2019-07-11 19:21:23 -07:00
|
|
|
use stopwatch::Stopwatch;
|
|
|
|
|
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
use schala_repl::{ProgrammingLanguageInterface,
|
|
|
|
ComputationRequest, ComputationResponse,
|
2021-10-14 00:03:51 -07:00
|
|
|
LangMetaRequest, LangMetaResponse, GlobalOutputStats};
|
2021-10-14 06:18:17 -07:00
|
|
|
use crate::{reduced_ast, tokenizing, parsing, eval, typechecking, symbol_table};
|
2021-10-14 04:11:53 -07:00
|
|
|
use crate::error::SchalaError;
|
2019-07-11 19:21:23 -07:00
|
|
|
|
2019-10-21 04:09:43 -07:00
|
|
|
pub type SymbolTableHandle = Rc<RefCell<symbol_table::SymbolTable>>;
|
|
|
|
|
2019-07-11 19:21:23 -07:00
|
|
|
/// All the state necessary to parse and execute a Schala program are stored in this struct.
|
2021-10-13 00:53:32 -07:00
|
|
|
#[allow(dead_code)]
|
2019-07-11 19:21:23 -07:00
|
|
|
pub struct Schala {
|
2021-10-16 18:05:13 -07:00
|
|
|
/// Holds a reference to the original source code, parsed into line and character
|
2019-07-11 19:21:23 -07:00
|
|
|
source_reference: SourceReference,
|
2021-10-16 18:05:13 -07:00
|
|
|
/// Execution state for AST-walking interpreter
|
2019-07-11 19:21:23 -07:00
|
|
|
state: eval::State<'static>,
|
2021-10-16 18:05:13 -07:00
|
|
|
/// Keeps track of symbols and scopes
|
2019-10-23 02:51:34 -07:00
|
|
|
symbol_table: SymbolTableHandle,
|
2021-10-16 18:05:13 -07:00
|
|
|
/// Contains information for type-checking
|
2019-07-11 19:21:23 -07:00
|
|
|
type_context: typechecking::TypeContext<'static>,
|
2021-10-16 18:05:13 -07:00
|
|
|
/// Schala Parser
|
2019-10-25 01:49:15 -07:00
|
|
|
active_parser: parsing::Parser,
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Schala {
|
2021-10-13 23:45:54 -07:00
|
|
|
//TODO implement documentation for language items
|
|
|
|
/*
|
2019-07-11 19:21:23 -07:00
|
|
|
fn handle_docs(&self, source: String) -> LangMetaResponse {
|
|
|
|
LangMetaResponse::Docs {
|
|
|
|
doc_string: format!("Schala item `{}` : <<Schala-lang documentation not yet implemented>>", source)
|
|
|
|
}
|
|
|
|
}
|
2021-10-13 23:45:54 -07:00
|
|
|
*/
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Schala {
|
|
|
|
/// Creates a new Schala environment *without* any prelude.
|
|
|
|
fn new_blank_env() -> Schala {
|
2021-10-14 06:18:17 -07:00
|
|
|
let symbols = Rc::new(RefCell::new(symbol_table::SymbolTable::new()));
|
2019-07-11 19:21:23 -07:00
|
|
|
Schala {
|
|
|
|
source_reference: SourceReference::new(),
|
|
|
|
symbol_table: symbols.clone(),
|
2019-11-09 19:52:05 -08:00
|
|
|
state: eval::State::new(),
|
2019-07-11 19:21:23 -07:00
|
|
|
type_context: typechecking::TypeContext::new(),
|
2021-10-14 06:18:17 -07:00
|
|
|
active_parser: parsing::Parser::new()
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new Schala environment with the standard prelude, which is defined as ordinary
|
|
|
|
/// Schala code in the file `prelude.schala`
|
|
|
|
pub fn new() -> Schala {
|
2021-10-14 18:34:26 -07:00
|
|
|
let prelude = include_str!("../source-files/prelude.schala");
|
2021-10-14 02:24:42 -07:00
|
|
|
let mut env = Schala::new_blank_env();
|
2019-07-11 19:21:23 -07:00
|
|
|
|
2021-10-14 02:24:42 -07:00
|
|
|
let response = env.run_pipeline(prelude);
|
2021-10-14 04:11:53 -07:00
|
|
|
if let Err(err) = response {
|
|
|
|
panic!("Error in prelude, panicking: {}", err.display());
|
2019-10-21 03:25:45 -07:00
|
|
|
}
|
2021-10-14 02:24:42 -07:00
|
|
|
env
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
|
2021-10-13 23:45:54 -07:00
|
|
|
/// This is where the actual action of interpreting/compilation happens.
|
|
|
|
/// Note: this should eventually use a query-based system for parallelization, cf.
|
|
|
|
/// https://rustc-dev-guide.rust-lang.org/overview.html
|
2021-10-14 04:11:53 -07:00
|
|
|
fn run_pipeline(&mut self, source: &str) -> Result<String, SchalaError> {
|
2021-10-13 23:45:54 -07:00
|
|
|
// 1st stage - tokenization
|
|
|
|
// TODO tokenize should return its own error type
|
|
|
|
let tokens = tokenizing::tokenize(source);
|
2021-10-14 04:11:53 -07:00
|
|
|
if let Some(err) = SchalaError::from_tokens(&tokens) {
|
|
|
|
return Err(err)
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
|
2021-10-13 23:45:54 -07:00
|
|
|
//2nd stage - parsing
|
|
|
|
self.active_parser.add_new_tokens(tokens);
|
2021-10-19 13:48:00 -07:00
|
|
|
let ast = self.active_parser.parse()
|
2021-10-14 04:11:53 -07:00
|
|
|
.map_err(|err| SchalaError::from_parse_error(err, &self.source_reference))?;
|
2019-07-11 19:21:23 -07:00
|
|
|
|
2021-10-19 14:19:26 -07:00
|
|
|
//Perform all symbol table work
|
2021-10-18 21:56:48 -07:00
|
|
|
self.symbol_table.borrow_mut().process_ast(&ast)
|
|
|
|
.map_err(|err| SchalaError::from_string(err, Stage::Symbols))?;
|
|
|
|
|
2021-10-13 23:45:54 -07:00
|
|
|
// Typechecking
|
2021-10-14 00:03:51 -07:00
|
|
|
// TODO typechecking not working
|
|
|
|
let _overall_type = self.type_context.typecheck(&ast)
|
2021-10-14 06:52:50 -07:00
|
|
|
.map_err(SchalaError::from_type_error);
|
2021-10-13 23:45:54 -07:00
|
|
|
|
2021-10-14 04:11:53 -07:00
|
|
|
// Reduce AST - TODO this doesn't produce an error yet, but probably should
|
2021-10-13 23:45:54 -07:00
|
|
|
let symbol_table = self.symbol_table.borrow();
|
|
|
|
let reduced_ast = reduced_ast::reduce(&ast, &symbol_table);
|
|
|
|
|
|
|
|
// Tree-walking evaluator. TODO fix this
|
|
|
|
let evaluation_outputs = self.state.evaluate(reduced_ast, true);
|
|
|
|
let text_output: Result<Vec<String>, String> = evaluation_outputs
|
|
|
|
.into_iter()
|
|
|
|
.collect();
|
|
|
|
|
2021-10-14 04:11:53 -07:00
|
|
|
let text_output: Result<Vec<String>, SchalaError> = text_output
|
|
|
|
.map_err(|err| SchalaError::from_string(err, Stage::Evaluation));
|
|
|
|
|
2021-10-13 23:45:54 -07:00
|
|
|
let eval_output: String = text_output
|
|
|
|
.map(|v| { Iterator::intersperse(v.into_iter(), "\n".to_owned()).collect() })?;
|
|
|
|
|
|
|
|
Ok(eval_output)
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Represents lines of source code
|
2021-10-14 04:11:53 -07:00
|
|
|
pub(crate) struct SourceReference {
|
2019-07-11 19:21:23 -07:00
|
|
|
lines: Option<Vec<String>>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SourceReference {
|
|
|
|
fn new() -> SourceReference {
|
|
|
|
SourceReference { lines: None }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load_new_source(&mut self, source: &str) {
|
|
|
|
//TODO this is a lot of heap allocations - maybe there's a way to make it more efficient?
|
|
|
|
self.lines = Some(source.lines().map(|s| s.to_string()).collect()); }
|
|
|
|
|
2021-10-14 04:11:53 -07:00
|
|
|
pub fn get_line(&self, line: usize) -> String {
|
2019-07-11 19:21:23 -07:00
|
|
|
self.lines.as_ref().and_then(|x| x.get(line).map(|s| s.to_string())).unwrap_or(format!("NO LINE FOUND"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 04:11:53 -07:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
pub(crate) enum Stage {
|
|
|
|
Tokenizing,
|
|
|
|
Parsing,
|
|
|
|
Symbols,
|
|
|
|
ScopeResolution,
|
|
|
|
Typechecking,
|
|
|
|
AstReduction,
|
|
|
|
Evaluation,
|
|
|
|
}
|
|
|
|
|
2019-07-11 19:21:23 -07:00
|
|
|
fn stage_names() -> Vec<&'static str> {
|
|
|
|
vec![
|
|
|
|
"tokenizing",
|
|
|
|
"parsing",
|
|
|
|
"symbol-table",
|
2019-09-03 01:42:28 -07:00
|
|
|
"scope-resolution",
|
2019-07-11 19:21:23 -07:00
|
|
|
"typechecking",
|
|
|
|
"ast-reduction",
|
|
|
|
"ast-walking-evaluation"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl ProgrammingLanguageInterface for Schala {
|
2021-10-14 02:24:42 -07:00
|
|
|
type Config = ();
|
2021-10-14 00:56:01 -07:00
|
|
|
fn language_name() -> String {
|
2021-10-13 01:09:24 -07:00
|
|
|
"Schala".to_owned()
|
|
|
|
}
|
|
|
|
|
2021-10-14 00:56:01 -07:00
|
|
|
fn source_file_suffix() -> String {
|
2021-10-13 01:09:24 -07:00
|
|
|
"schala".to_owned()
|
|
|
|
}
|
2019-07-11 19:21:23 -07:00
|
|
|
|
2021-10-14 02:24:42 -07:00
|
|
|
fn run_computation(&mut self, request: ComputationRequest<Self::Config>) -> ComputationResponse {
|
|
|
|
let ComputationRequest { source, debug_requests: _, config: _ } = request;
|
2021-10-13 23:45:54 -07:00
|
|
|
self.source_reference.load_new_source(source);
|
|
|
|
let sw = Stopwatch::start_new();
|
|
|
|
|
2021-10-14 04:11:53 -07:00
|
|
|
let main_output = self.run_pipeline(source)
|
|
|
|
.map_err(|schala_err| schala_err.display());
|
2021-10-13 23:45:54 -07:00
|
|
|
|
|
|
|
let global_output_stats = GlobalOutputStats {
|
|
|
|
total_duration: sw.elapsed(),
|
|
|
|
stage_durations: vec![]
|
|
|
|
};
|
|
|
|
|
|
|
|
ComputationResponse {
|
|
|
|
main_output,
|
|
|
|
global_output_stats,
|
|
|
|
debug_responses: vec![]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 19:21:23 -07:00
|
|
|
fn request_meta(&mut self, request: LangMetaRequest) -> LangMetaResponse {
|
|
|
|
match request {
|
|
|
|
LangMetaRequest::StageNames => LangMetaResponse::StageNames(stage_names().iter().map(|s| s.to_string()).collect()),
|
2021-10-13 23:45:54 -07:00
|
|
|
_ => LangMetaResponse::Custom { kind: format!("not-implemented"), value: format!("") }
|
2019-07-11 19:21:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|