-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
292 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
use crate::common::Ident; | ||
use crate::common::{Ident, Span}; | ||
|
||
#[derive(Clone, Debug, Eq, Hash, PartialEq)] | ||
pub struct ImportStmt { | ||
pub module: Vec<Ident>, | ||
pub symbols: Vec<Ident>, | ||
pub span: Span, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "concrete_check" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
ariadne = { version = "0.4.0", features = ["auto-color"] } | ||
concrete_ast = { version = "0.1.0", path = "../concrete_ast" } | ||
concrete_session = { version = "0.1.0", path = "../concrete_session" } | ||
itertools = "0.12.0" | ||
thiserror = "1.0.56" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
use std::collections::HashMap; | ||
|
||
use concrete_ast::{ | ||
common::Ident, | ||
constants::ConstantDef, | ||
functions::FunctionDef, | ||
modules::{Module, ModuleDefItem}, | ||
structs::StructDecl, | ||
types::TypeDecl, | ||
Program, | ||
}; | ||
|
||
#[derive(Clone, Debug, Eq, PartialEq)] | ||
pub struct ModuleInfo<'p> { | ||
pub name: String, | ||
pub functions: HashMap<String, &'p FunctionDef>, | ||
pub constants: HashMap<String, &'p ConstantDef>, | ||
pub structs: HashMap<String, &'p StructDecl>, | ||
pub types: HashMap<String, &'p TypeDecl>, | ||
pub modules: HashMap<String, ModuleInfo<'p>>, | ||
} | ||
|
||
impl<'p> ModuleInfo<'p> { | ||
pub fn get_module_from_import(&self, import: &[Ident]) -> Option<&ModuleInfo<'p>> { | ||
let next = import.first()?; | ||
let module = self.modules.get(&next.name)?; | ||
|
||
if import.len() > 1 { | ||
module.get_module_from_import(&import[1..]) | ||
} else { | ||
Some(module) | ||
} | ||
} | ||
|
||
/// Returns the symbol name from a local name. | ||
pub fn get_symbol_name(&self, local_name: &str) -> String { | ||
if local_name == "main" { | ||
return local_name.to_string(); | ||
} | ||
|
||
let mut result = self.name.clone(); | ||
|
||
result.push_str("::"); | ||
result.push_str(local_name); | ||
|
||
result | ||
} | ||
} | ||
|
||
#[derive(Clone, Debug, Eq, PartialEq)] | ||
pub struct AstHelper<'p> { | ||
pub root: &'p Program, | ||
pub modules: HashMap<String, ModuleInfo<'p>>, | ||
} | ||
|
||
impl<'p> AstHelper<'p> { | ||
pub fn new(root: &'p Program) -> Self { | ||
let mut modules = HashMap::default(); | ||
|
||
for module in &root.modules { | ||
modules.insert( | ||
module.name.name.clone(), | ||
Self::create_module_info(module, None), | ||
); | ||
} | ||
|
||
Self { root, modules } | ||
} | ||
|
||
pub fn get_module_from_import(&self, import: &[Ident]) -> Option<&ModuleInfo<'p>> { | ||
let next = import.first()?; | ||
let module = self.modules.get(&next.name)?; | ||
|
||
if import.len() > 1 { | ||
module.get_module_from_import(&import[1..]) | ||
} else { | ||
Some(module) | ||
} | ||
} | ||
|
||
fn create_module_info(module: &Module, parent_name: Option<String>) -> ModuleInfo<'_> { | ||
let mut functions = HashMap::default(); | ||
let mut constants = HashMap::default(); | ||
let mut structs = HashMap::default(); | ||
let mut types = HashMap::default(); | ||
let mut child_modules = HashMap::default(); | ||
let mut name = parent_name.clone().unwrap_or_default(); | ||
|
||
if name.is_empty() { | ||
name = module.name.name.clone(); | ||
} else { | ||
name.push_str(&format!("::{}", module.name.name)); | ||
} | ||
|
||
for stmt in &module.contents { | ||
match stmt { | ||
ModuleDefItem::Constant(info) => { | ||
constants.insert(info.decl.name.name.clone(), info); | ||
} | ||
ModuleDefItem::Function(info) => { | ||
functions.insert(info.decl.name.name.clone(), info); | ||
} | ||
ModuleDefItem::Struct(info) => { | ||
structs.insert(info.name.name.clone(), info); | ||
} | ||
ModuleDefItem::Type(info) => { | ||
types.insert(info.name.name.clone(), info); | ||
} | ||
ModuleDefItem::Module(info) => { | ||
child_modules.insert( | ||
info.name.name.clone(), | ||
Self::create_module_info(info, Some(name.clone())), | ||
); | ||
} | ||
} | ||
} | ||
|
||
ModuleInfo { | ||
name, | ||
functions, | ||
structs, | ||
constants, | ||
types, | ||
modules: child_modules, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
use std::{collections::HashMap, ops::Range}; | ||
|
||
use ariadne::{ColorGenerator, Label, Report, ReportKind}; | ||
use ast_helper::AstHelper; | ||
use concrete_ast::{imports::ImportStmt, modules::Module, Program}; | ||
use concrete_session::Session; | ||
use itertools::Itertools; | ||
use thiserror::Error; | ||
|
||
mod ast_helper; | ||
|
||
#[derive(Error, Debug, Clone)] | ||
pub enum CheckError<'p> { | ||
#[error("import not found {:?} in module {}", import, module.name.name)] | ||
ImportModuleMissing { | ||
module: &'p Module, | ||
import: &'p ImportStmt, | ||
}, | ||
} | ||
|
||
impl<'p> CheckError<'p> { | ||
pub fn to_report<'s>(&self, session: &'s Session) -> Report<'s, (String, Range<usize>)> { | ||
let path = session.file_path.display().to_string(); | ||
let mut colors = ColorGenerator::new(); | ||
colors.next(); | ||
|
||
match self { | ||
CheckError::ImportModuleMissing { module, import } => { | ||
let contex_module_span = module.span; | ||
let span = { | ||
let mut span = import | ||
.module | ||
.first() | ||
.expect("module path can't be empty") | ||
.span; | ||
span.to = import | ||
.module | ||
.last() | ||
.expect("module path can't be empty") | ||
.span | ||
.to; | ||
span | ||
}; | ||
let offset = import.module[0].span.from; | ||
Report::build(ReportKind::Error, path.clone(), offset) | ||
.with_code("E1") | ||
.with_label( | ||
Label::new((path.clone(), contex_module_span.into())) | ||
.with_message(format!("In module {:?}.", module.name.name)), | ||
) | ||
.with_label( | ||
Label::new((path, span.into())) | ||
.with_message(format!( | ||
"Module {:?} not found.", | ||
import.module.iter().map(|x| &x.name).join(".") | ||
)) | ||
.with_color(colors.next()), | ||
) | ||
.with_message("Failed to find import.") | ||
.finish() | ||
} | ||
} | ||
} | ||
} | ||
|
||
pub fn check_program<'p>( | ||
program: &'p Program, | ||
_session: &Session, | ||
) -> Result<(), Vec<CheckError<'p>>> { | ||
let helper = AstHelper::new(program); | ||
|
||
let mut errors = Vec::new(); | ||
|
||
for module in &program.modules { | ||
// let info = helper.modules.get(&module.name.name).unwrap(); | ||
|
||
let mut imports = HashMap::new(); | ||
|
||
for import in &module.imports { | ||
let target_module = helper.get_module_from_import(&import.module); | ||
|
||
if target_module.is_none() { | ||
errors.push(CheckError::ImportModuleMissing { module, import }); | ||
continue; | ||
} | ||
|
||
let target_module = target_module.unwrap(); | ||
|
||
for symbol in &import.symbols { | ||
// todo: check if symbol exists. | ||
imports.insert(symbol.name.clone(), target_module); | ||
} | ||
} | ||
} | ||
|
||
if errors.is_empty() { | ||
Ok(()) | ||
} else { | ||
Err(errors) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.