2021-08-16 13:49:10 +08:00
|
|
|
use std::borrow::BorrowMut;
|
2021-08-17 14:01:18 +08:00
|
|
|
use std::ops::Deref;
|
2021-08-16 13:49:10 +08:00
|
|
|
use std::{collections::HashMap, collections::HashSet, sync::Arc};
|
2021-08-03 13:38:27 +08:00
|
|
|
|
2021-08-05 14:55:23 +08:00
|
|
|
use super::typecheck::type_inferencer::PrimitiveStore;
|
2021-08-10 21:57:31 +08:00
|
|
|
use super::typecheck::typedef::{SharedUnifier, Type, TypeEnum, Unifier};
|
2021-08-07 10:28:41 +08:00
|
|
|
use crate::symbol_resolver::SymbolResolver;
|
2021-08-13 02:38:29 +08:00
|
|
|
use crate::typecheck::typedef::{FunSignature, FuncArg};
|
2021-08-16 17:40:12 +08:00
|
|
|
use itertools::chain;
|
2021-08-11 14:37:26 +08:00
|
|
|
use parking_lot::{Mutex, RwLock};
|
2021-08-10 21:57:31 +08:00
|
|
|
use rustpython_parser::ast::{self, Stmt};
|
2021-08-03 13:38:27 +08:00
|
|
|
|
2021-08-06 10:30:57 +08:00
|
|
|
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
|
|
|
|
pub struct DefinitionId(pub usize);
|
2021-08-03 13:38:27 +08:00
|
|
|
|
|
|
|
pub enum TopLevelDef {
|
|
|
|
Class {
|
|
|
|
// object ID used for TypeEnum
|
2021-08-06 10:30:57 +08:00
|
|
|
object_id: DefinitionId,
|
2021-08-03 13:38:27 +08:00
|
|
|
// type variables bounded to the class.
|
|
|
|
type_vars: Vec<Type>,
|
2021-08-07 15:06:39 +08:00
|
|
|
// class fields
|
2021-08-03 13:38:27 +08:00
|
|
|
fields: Vec<(String, Type)>,
|
|
|
|
// class methods, pointing to the corresponding function definition.
|
2021-08-07 15:06:39 +08:00
|
|
|
methods: Vec<(String, Type, DefinitionId)>,
|
2021-08-03 13:38:27 +08:00
|
|
|
// ancestor classes, including itself.
|
|
|
|
ancestors: Vec<DefinitionId>,
|
2021-08-11 15:11:51 +08:00
|
|
|
// symbol resolver of the module defined the class, none if it is built-in type
|
2021-08-13 14:22:49 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send + Sync>>>,
|
2021-08-03 13:38:27 +08:00
|
|
|
},
|
|
|
|
Function {
|
2021-08-07 15:06:39 +08:00
|
|
|
// prefix for symbol, should be unique globally, and not ending with numbers
|
|
|
|
name: String,
|
|
|
|
// function signature.
|
2021-08-03 13:38:27 +08:00
|
|
|
signature: Type,
|
|
|
|
/// Function instance to symbol mapping
|
|
|
|
/// Key: string representation of type variable values, sorted by variable ID in ascending
|
|
|
|
/// order, including type variables associated with the class.
|
|
|
|
/// Value: function symbol name.
|
|
|
|
instance_to_symbol: HashMap<String, String>,
|
|
|
|
/// Function instances to annotated AST mapping
|
|
|
|
/// Key: string representation of type variable values, sorted by variable ID in ascending
|
|
|
|
/// order, including type variables associated with the class. Excluding rigid type
|
|
|
|
/// variables.
|
|
|
|
/// Value: AST annotated with types together with a unification table index. Could contain
|
|
|
|
/// rigid type variables that would be substituted when the function is instantiated.
|
2021-08-05 14:55:23 +08:00
|
|
|
instance_to_stmt: HashMap<String, (Stmt<Option<Type>>, usize)>,
|
2021-08-11 15:11:51 +08:00
|
|
|
// symbol resolver of the module defined the class
|
2021-08-13 14:22:49 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send + Sync>>>,
|
2021-08-03 13:38:27 +08:00
|
|
|
},
|
2021-08-10 10:33:18 +08:00
|
|
|
Initializer {
|
2021-08-10 21:57:31 +08:00
|
|
|
class_id: DefinitionId,
|
|
|
|
},
|
2021-08-03 13:38:27 +08:00
|
|
|
}
|
|
|
|
|
2021-08-16 13:49:10 +08:00
|
|
|
impl TopLevelDef {
|
|
|
|
fn get_function_type(&self) -> Result<Type, String> {
|
|
|
|
if let Self::Function { signature, .. } = self {
|
|
|
|
Ok(*signature)
|
|
|
|
} else {
|
|
|
|
Err("only expect function def here".into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-03 13:38:27 +08:00
|
|
|
pub struct TopLevelContext {
|
2021-08-05 14:55:23 +08:00
|
|
|
pub definitions: Arc<RwLock<Vec<RwLock<TopLevelDef>>>>,
|
2021-08-11 14:37:26 +08:00
|
|
|
pub unifiers: Arc<RwLock<Vec<(SharedUnifier, PrimitiveStore)>>>,
|
2021-08-03 14:11:41 +08:00
|
|
|
}
|
2021-08-09 01:43:41 +08:00
|
|
|
|
2021-08-17 14:01:18 +08:00
|
|
|
impl TopLevelContext {
|
|
|
|
pub fn get_def_list<'a>(&'a self) -> Vec<&'a TopLevelDef> {
|
|
|
|
let list = self.definitions.read();
|
|
|
|
let list = list.deref();
|
|
|
|
let list = list.iter().map(|x| {
|
|
|
|
x.read().deref()
|
|
|
|
}).collect::<Vec<_>>();
|
|
|
|
list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-11 15:11:51 +08:00
|
|
|
pub struct TopLevelComposer {
|
2021-08-13 02:38:29 +08:00
|
|
|
// list of top level definitions, same as top level context
|
2021-08-17 14:01:18 +08:00
|
|
|
pub definition_list: Arc<Vec<RwLock<TopLevelDef>>>,
|
2021-08-17 11:06:45 +08:00
|
|
|
// list of top level ast, the index is same as the field `definition_list`
|
2021-08-17 14:01:18 +08:00
|
|
|
pub ast_list: Vec<Option<ast::Stmt<()>>>,
|
2021-08-13 02:38:29 +08:00
|
|
|
// start as a primitive unifier, will add more top_level defs inside
|
2021-08-17 14:01:18 +08:00
|
|
|
pub unifier: Unifier,
|
2021-08-11 17:35:23 +08:00
|
|
|
// primitive store
|
2021-08-10 10:33:18 +08:00
|
|
|
pub primitives: PrimitiveStore,
|
2021-08-12 13:17:51 +08:00
|
|
|
// mangled class method name to def_id
|
2021-08-17 14:01:18 +08:00
|
|
|
pub class_method_to_def_id: HashMap<String, DefinitionId>,
|
2021-08-16 09:46:55 +08:00
|
|
|
// record the def id of the classes whoses fields and methods are to be analyzed
|
2021-08-17 14:01:18 +08:00
|
|
|
pub to_be_analyzed_class: Vec<DefinitionId>,
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
|
2021-08-11 15:11:51 +08:00
|
|
|
impl TopLevelComposer {
|
2021-08-13 02:38:29 +08:00
|
|
|
pub fn to_top_level_context(&self) -> TopLevelContext {
|
|
|
|
TopLevelContext {
|
2021-08-17 14:01:18 +08:00
|
|
|
definitions: RwLock::new(self.definition_list.).into(),
|
2021-08-13 02:38:29 +08:00
|
|
|
// FIXME: all the big unifier or?
|
|
|
|
unifiers: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-12 13:17:51 +08:00
|
|
|
fn name_mangling(mut class_name: String, method_name: &str) -> String {
|
|
|
|
class_name.push_str(method_name);
|
|
|
|
class_name
|
|
|
|
}
|
|
|
|
|
2021-08-09 01:43:41 +08:00
|
|
|
pub fn make_primitives() -> (PrimitiveStore, Unifier) {
|
|
|
|
let mut unifier = Unifier::new();
|
|
|
|
let int32 = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(0),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
2021-08-12 13:17:51 +08:00
|
|
|
params: HashMap::new().into(),
|
2021-08-09 01:43:41 +08:00
|
|
|
});
|
|
|
|
let int64 = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(1),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
2021-08-12 13:17:51 +08:00
|
|
|
params: HashMap::new().into(),
|
2021-08-09 01:43:41 +08:00
|
|
|
});
|
|
|
|
let float = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(2),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
2021-08-12 13:17:51 +08:00
|
|
|
params: HashMap::new().into(),
|
2021-08-09 01:43:41 +08:00
|
|
|
});
|
|
|
|
let bool = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(3),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
2021-08-12 13:17:51 +08:00
|
|
|
params: HashMap::new().into(),
|
2021-08-09 01:43:41 +08:00
|
|
|
});
|
|
|
|
let none = unifier.add_ty(TypeEnum::TObj {
|
2021-08-10 21:57:31 +08:00
|
|
|
obj_id: DefinitionId(4),
|
2021-08-09 01:43:41 +08:00
|
|
|
fields: HashMap::new().into(),
|
2021-08-12 13:17:51 +08:00
|
|
|
params: HashMap::new().into(),
|
2021-08-09 01:43:41 +08:00
|
|
|
});
|
|
|
|
let primitives = PrimitiveStore { int32, int64, float, bool, none };
|
|
|
|
crate::typecheck::magic_methods::set_primitives_magic_methods(&primitives, &mut unifier);
|
|
|
|
(primitives, unifier)
|
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
|
2021-08-13 14:48:46 +08:00
|
|
|
/// return a composer and things to make a "primitive" symbol resolver, so that the symbol
|
2021-08-12 10:50:01 +08:00
|
|
|
/// resolver can later figure out primitive type definitions when passed a primitive type name
|
2021-08-11 17:35:23 +08:00
|
|
|
pub fn new() -> (Vec<(String, DefinitionId, Type)>, Self) {
|
2021-08-10 10:33:18 +08:00
|
|
|
let primitives = Self::make_primitives();
|
2021-08-13 02:38:29 +08:00
|
|
|
|
|
|
|
let top_level_def_list = vec![
|
|
|
|
RwLock::new(Self::make_top_level_class_def(0, None)),
|
|
|
|
RwLock::new(Self::make_top_level_class_def(1, None)),
|
|
|
|
RwLock::new(Self::make_top_level_class_def(2, None)),
|
|
|
|
RwLock::new(Self::make_top_level_class_def(3, None)),
|
|
|
|
RwLock::new(Self::make_top_level_class_def(4, None)),
|
|
|
|
];
|
|
|
|
|
|
|
|
let ast_list: Vec<Option<ast::Stmt<()>>> = vec![None, None, None, None, None];
|
|
|
|
|
2021-08-13 14:48:46 +08:00
|
|
|
let composer = TopLevelComposer {
|
2021-08-17 14:01:18 +08:00
|
|
|
definition_list: top_level_def_list,
|
|
|
|
ast_list,
|
2021-08-11 17:35:23 +08:00
|
|
|
primitives: primitives.0,
|
2021-08-13 02:38:29 +08:00
|
|
|
unifier: primitives.1.into(),
|
2021-08-11 17:35:23 +08:00
|
|
|
class_method_to_def_id: Default::default(),
|
2021-08-16 09:46:55 +08:00
|
|
|
to_be_analyzed_class: Default::default(),
|
2021-08-11 17:35:23 +08:00
|
|
|
};
|
2021-08-13 02:38:29 +08:00
|
|
|
(
|
|
|
|
vec![
|
|
|
|
("int32".into(), DefinitionId(0), composer.primitives.int32),
|
|
|
|
("int64".into(), DefinitionId(1), composer.primitives.int64),
|
|
|
|
("float".into(), DefinitionId(2), composer.primitives.float),
|
|
|
|
("bool".into(), DefinitionId(3), composer.primitives.bool),
|
|
|
|
("none".into(), DefinitionId(4), composer.primitives.none),
|
|
|
|
],
|
|
|
|
composer,
|
|
|
|
)
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
/// already include the definition_id of itself inside the ancestors vector
|
2021-08-16 17:40:12 +08:00
|
|
|
/// when first regitering, the type_vars, fields, methods, ancestors are invalid
|
2021-08-11 15:18:21 +08:00
|
|
|
pub fn make_top_level_class_def(
|
|
|
|
index: usize,
|
2021-08-13 14:22:49 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send + Sync>>>,
|
2021-08-11 15:18:21 +08:00
|
|
|
) -> TopLevelDef {
|
2021-08-10 10:33:18 +08:00
|
|
|
TopLevelDef::Class {
|
|
|
|
object_id: DefinitionId(index),
|
|
|
|
type_vars: Default::default(),
|
|
|
|
fields: Default::default(),
|
|
|
|
methods: Default::default(),
|
2021-08-10 23:49:58 +08:00
|
|
|
ancestors: vec![DefinitionId(index)],
|
2021-08-11 15:18:21 +08:00
|
|
|
resolver,
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
}
|
2021-08-11 13:31:59 +08:00
|
|
|
|
2021-08-16 17:40:12 +08:00
|
|
|
/// when first registering, the type is a invalid value
|
2021-08-11 15:18:21 +08:00
|
|
|
pub fn make_top_level_function_def(
|
|
|
|
name: String,
|
|
|
|
ty: Type,
|
2021-08-13 14:22:49 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send + Sync>>>,
|
2021-08-11 15:18:21 +08:00
|
|
|
) -> TopLevelDef {
|
2021-08-10 10:33:18 +08:00
|
|
|
TopLevelDef::Function {
|
|
|
|
name,
|
|
|
|
signature: ty,
|
|
|
|
instance_to_symbol: Default::default(),
|
2021-08-10 21:57:31 +08:00
|
|
|
instance_to_stmt: Default::default(),
|
2021-08-11 15:18:21 +08:00
|
|
|
resolver,
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
/// step 0, register, just remeber the names of top level classes/function
|
2021-08-10 21:57:31 +08:00
|
|
|
pub fn register_top_level(
|
|
|
|
&mut self,
|
|
|
|
ast: ast::Stmt<()>,
|
2021-08-13 14:22:49 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send + Sync>>>,
|
2021-08-16 09:46:55 +08:00
|
|
|
) -> Result<(String, DefinitionId), String> {
|
2021-08-17 14:01:18 +08:00
|
|
|
let (mut def_list, mut ast_list) = (&mut self.definition_list, &mut self.ast_list);
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-13 13:55:44 +08:00
|
|
|
assert_eq!(def_list.len(), ast_list.len());
|
|
|
|
|
2021-08-09 01:43:41 +08:00
|
|
|
match &ast.node {
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::StmtKind::ClassDef { name, body, .. } => {
|
2021-08-10 10:33:18 +08:00
|
|
|
let class_name = name.to_string();
|
2021-08-11 17:35:23 +08:00
|
|
|
let class_def_id = def_list.len();
|
2021-08-11 15:18:21 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// add the class to the definition lists
|
|
|
|
def_list
|
|
|
|
.push(Self::make_top_level_class_def(class_def_id, resolver.clone()).into());
|
|
|
|
// since later when registering class method, ast will still be used,
|
2021-08-16 09:46:55 +08:00
|
|
|
// here push None temporarly, later will move the ast inside
|
2021-08-13 02:38:29 +08:00
|
|
|
ast_list.push(None);
|
2021-08-13 14:48:46 +08:00
|
|
|
|
2021-08-13 13:55:44 +08:00
|
|
|
// parse class def body and register class methods into the def list.
|
2021-08-12 10:50:01 +08:00
|
|
|
// module's symbol resolver would not know the name of the class methods,
|
|
|
|
// thus cannot return their definition_id? so we have to manage it ourselves
|
2021-08-16 09:46:55 +08:00
|
|
|
// by using `class_method_to_def_id`
|
2021-08-10 23:49:58 +08:00
|
|
|
for b in body {
|
2021-08-11 15:18:21 +08:00
|
|
|
if let ast::StmtKind::FunctionDef { name, .. } = &b.node {
|
2021-08-12 13:17:51 +08:00
|
|
|
let fun_name = Self::name_mangling(class_name.clone(), name);
|
2021-08-12 10:50:01 +08:00
|
|
|
let def_id = def_list.len();
|
2021-08-13 14:48:46 +08:00
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
// add to the definition list
|
2021-08-13 02:38:29 +08:00
|
|
|
def_list.push(
|
|
|
|
Self::make_top_level_function_def(
|
|
|
|
fun_name.clone(),
|
2021-08-17 14:01:18 +08:00
|
|
|
self.unifier.add_ty(TypeEnum::TFunc(
|
2021-08-16 20:17:08 +08:00
|
|
|
FunSignature {
|
|
|
|
args: Default::default(),
|
2021-08-17 11:06:45 +08:00
|
|
|
ret: self.primitives.none,
|
2021-08-16 20:17:08 +08:00
|
|
|
vars: Default::default(),
|
|
|
|
}
|
|
|
|
.into(),
|
|
|
|
)),
|
2021-08-13 02:38:29 +08:00
|
|
|
resolver.clone(),
|
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
// the ast of class method is in the class, push None in to the list here
|
|
|
|
ast_list.push(None);
|
2021-08-12 10:50:01 +08:00
|
|
|
|
|
|
|
// class method, do not let the symbol manager manage it, use our own map
|
2021-08-17 14:01:18 +08:00
|
|
|
self.class_method_to_def_id.insert(fun_name, DefinitionId(def_id));
|
2021-08-11 17:35:23 +08:00
|
|
|
}
|
2021-08-10 23:49:58 +08:00
|
|
|
}
|
2021-08-11 17:35:23 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// move the ast to the entry of the class in the ast_list
|
|
|
|
ast_list[class_def_id] = Some(ast);
|
2021-08-13 14:48:46 +08:00
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// put the constructor into the def_list
|
2021-08-16 20:17:08 +08:00
|
|
|
def_list
|
|
|
|
.push(TopLevelDef::Initializer { class_id: DefinitionId(class_def_id) }.into());
|
2021-08-16 09:46:55 +08:00
|
|
|
ast_list.push(None);
|
|
|
|
|
|
|
|
// class, put its def_id into the to be analyzed set
|
2021-08-17 14:01:18 +08:00
|
|
|
let mut to_be_analyzed = self.to_be_analyzed_class;
|
2021-08-16 09:46:55 +08:00
|
|
|
to_be_analyzed.push(DefinitionId(class_def_id));
|
|
|
|
|
|
|
|
Ok((class_name, DefinitionId(class_def_id)))
|
2021-08-13 02:38:29 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::StmtKind::FunctionDef { name, .. } => {
|
2021-08-10 10:33:18 +08:00
|
|
|
let fun_name = name.to_string();
|
2021-08-13 14:48:46 +08:00
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
// add to the definition list
|
2021-08-13 02:38:29 +08:00
|
|
|
def_list.push(
|
|
|
|
Self::make_top_level_function_def(name.into(), self.primitives.none, resolver)
|
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
ast_list.push(Some(ast));
|
2021-08-10 10:33:18 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// return
|
2021-08-16 09:46:55 +08:00
|
|
|
Ok((fun_name, DefinitionId(def_list.len() - 1)))
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
_ => Err("only registrations of top level classes/functions are supprted".into()),
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
/// step 1, analyze the type vars associated with top level class
|
|
|
|
fn analyze_top_level_class_type_var(&mut self) -> Result<(), String> {
|
2021-08-17 14:01:18 +08:00
|
|
|
let mut def_list = &mut self.definition_list;
|
|
|
|
let ast_list = &self.ast_list;
|
|
|
|
let mut unifier = &mut self.unifier;
|
2021-08-13 02:38:29 +08:00
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
for (class_def, class_ast) in def_list
|
2021-08-13 02:38:29 +08:00
|
|
|
.iter_mut()
|
|
|
|
.zip(ast_list.iter())
|
2021-08-16 20:17:08 +08:00
|
|
|
.collect::<Vec<(&mut RwLock<TopLevelDef>, &Option<ast::Stmt<()>>)>>()
|
|
|
|
{
|
2021-08-16 09:46:55 +08:00
|
|
|
// only deal with class def here
|
2021-08-16 20:17:08 +08:00
|
|
|
let (class_bases, class_def_type_vars, class_resolver) = {
|
|
|
|
if let TopLevelDef::Class { type_vars, resolver, .. } = class_def.get_mut() {
|
|
|
|
if let Some(ast::Located {
|
|
|
|
node: ast::StmtKind::ClassDef { bases, .. }, ..
|
|
|
|
}) = class_ast
|
|
|
|
{
|
2021-08-16 09:46:55 +08:00
|
|
|
(bases, type_vars, resolver)
|
2021-08-16 20:17:08 +08:00
|
|
|
} else {
|
|
|
|
unreachable!("must be both class")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-08-16 13:49:10 +08:00
|
|
|
let mut is_generic = false;
|
2021-08-16 09:46:55 +08:00
|
|
|
for b in class_bases {
|
|
|
|
match &b.node {
|
|
|
|
// analyze typevars bounded to the class,
|
|
|
|
// only support things like `class A(Generic[T, V])`,
|
|
|
|
// things like `class A(Generic[T, V, ImportedModule.T])` is not supported
|
|
|
|
// i.e. only simple names are allowed in the subscript
|
|
|
|
// should update the TopLevelDef::Class.typevars and the TypeEnum::TObj.params
|
2021-08-16 20:17:08 +08:00
|
|
|
ast::ExprKind::Subscript { value, slice, .. }
|
|
|
|
if {
|
2021-08-17 11:06:45 +08:00
|
|
|
matches!(&value.node, ast::ExprKind::Name { id, .. } if id == "Generic")
|
2021-08-16 20:17:08 +08:00
|
|
|
} =>
|
|
|
|
{
|
2021-08-17 11:06:45 +08:00
|
|
|
if !is_generic {
|
|
|
|
is_generic = true;
|
|
|
|
} else {
|
|
|
|
return Err("Only single Generic[...] can be in bases".into());
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// if `class A(Generic[T, V, G])`
|
|
|
|
if let ast::ExprKind::Tuple { elts, .. } = &slice.node {
|
|
|
|
// parse the type vars
|
|
|
|
let type_vars = elts
|
2021-08-13 02:38:29 +08:00
|
|
|
.iter()
|
2021-08-16 20:17:08 +08:00
|
|
|
.map(|e| {
|
|
|
|
class_resolver.as_ref().unwrap().lock().parse_type_annotation(
|
2021-08-13 02:38:29 +08:00
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
2021-08-16 20:17:08 +08:00
|
|
|
e,
|
|
|
|
)
|
|
|
|
})
|
2021-08-16 09:46:55 +08:00
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// check if all are unique type vars
|
|
|
|
let mut occured_type_var_id: HashSet<u32> = HashSet::new();
|
2021-08-16 20:17:08 +08:00
|
|
|
let all_unique_type_var = type_vars.iter().all(|x| {
|
|
|
|
let ty = unifier.get_ty(*x);
|
|
|
|
if let TypeEnum::TVar { id, .. } = ty.as_ref() {
|
|
|
|
occured_type_var_id.insert(*id)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if !all_unique_type_var {
|
|
|
|
return Err("expect unique type variables".into());
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// add to TopLevelDef
|
|
|
|
class_def_type_vars.extend(type_vars);
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// `class A(Generic[T])`
|
|
|
|
} else {
|
2021-08-16 20:17:08 +08:00
|
|
|
let ty =
|
|
|
|
class_resolver.as_ref().unwrap().lock().parse_type_annotation(
|
2021-08-13 02:38:29 +08:00
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
2021-08-16 20:17:08 +08:00
|
|
|
&slice,
|
2021-08-13 02:38:29 +08:00
|
|
|
)?;
|
2021-08-16 09:46:55 +08:00
|
|
|
// check if it is type var
|
2021-08-16 20:17:08 +08:00
|
|
|
let is_type_var =
|
|
|
|
matches!(unifier.get_ty(ty).as_ref(), &TypeEnum::TVar { .. });
|
|
|
|
if !is_type_var {
|
|
|
|
return Err("expect type variable here".into());
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// add to TopLevelDef
|
|
|
|
class_def_type_vars.push(ty);
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
2021-08-12 10:50:01 +08:00
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// if others, do nothing in this function
|
2021-08-16 20:17:08 +08:00
|
|
|
_ => continue,
|
2021-08-16 09:46:55 +08:00
|
|
|
}
|
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
}
|
2021-08-16 09:46:55 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// step 2, base classes. Need to separate step1 and step2 for this reason:
|
|
|
|
/// `class B(Generic[T, V]);
|
|
|
|
/// class A(B[int, bool])`
|
|
|
|
/// if the type var associated with class `B` has not been handled properly,
|
|
|
|
/// the parse of type annotation of `B[int, bool]` will fail
|
|
|
|
fn analyze_top_level_class_bases(&mut self) -> Result<(), String> {
|
2021-08-17 14:01:18 +08:00
|
|
|
let mut def_list = &mut self.definition_list;
|
|
|
|
let ast_list = &self.ast_list;
|
|
|
|
let mut unifier = &mut self.unifier;
|
2021-08-16 09:46:55 +08:00
|
|
|
|
|
|
|
for (class_def, class_ast) in def_list
|
|
|
|
.iter_mut()
|
|
|
|
.zip(ast_list.iter())
|
2021-08-16 20:17:08 +08:00
|
|
|
.collect::<Vec<(&mut RwLock<TopLevelDef>, &Option<ast::Stmt<()>>)>>()
|
|
|
|
{
|
|
|
|
let (class_bases, class_ancestors, class_resolver) = {
|
|
|
|
if let TopLevelDef::Class { ancestors, resolver, .. } = class_def.get_mut() {
|
|
|
|
if let Some(ast::Located {
|
|
|
|
node: ast::StmtKind::ClassDef { bases, .. }, ..
|
|
|
|
}) = class_ast
|
|
|
|
{
|
2021-08-16 09:46:55 +08:00
|
|
|
(bases, ancestors, resolver)
|
2021-08-16 20:17:08 +08:00
|
|
|
} else {
|
|
|
|
unreachable!("must be both class")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
2021-08-16 09:46:55 +08:00
|
|
|
for b in class_bases {
|
|
|
|
// type vars have already been handled, so skip on `Generic[...]`
|
2021-08-16 20:17:08 +08:00
|
|
|
if let ast::ExprKind::Subscript { value, .. } = &b.node {
|
|
|
|
if let ast::ExprKind::Name { id, .. } = &value.node {
|
|
|
|
if id == "Generic" {
|
|
|
|
continue;
|
|
|
|
}
|
2021-08-16 09:46:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// get the def id of the base class
|
|
|
|
let base_ty = class_resolver.as_ref().unwrap().lock().parse_type_annotation(
|
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
2021-08-16 20:17:08 +08:00
|
|
|
b,
|
2021-08-16 09:46:55 +08:00
|
|
|
)?;
|
2021-08-16 20:17:08 +08:00
|
|
|
let base_id =
|
|
|
|
if let TypeEnum::TObj { obj_id, .. } = unifier.get_ty(base_ty).as_ref() {
|
2021-08-16 09:46:55 +08:00
|
|
|
*obj_id
|
2021-08-16 20:17:08 +08:00
|
|
|
} else {
|
|
|
|
return Err("expect concrete class/type to be base class".into());
|
|
|
|
};
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
// write to the class ancestors
|
|
|
|
class_ancestors.push(base_id);
|
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
}
|
2021-08-16 09:46:55 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-08-16 17:40:12 +08:00
|
|
|
/// step 3, class fields and methods
|
2021-08-16 09:46:55 +08:00
|
|
|
fn analyze_top_level_class_fields_methods(&mut self) -> Result<(), String> {
|
2021-08-17 14:01:18 +08:00
|
|
|
let mut def_list = &mut self.definition_list;
|
|
|
|
let ast_list = &self.ast_list;
|
|
|
|
let mut unifier = &mut self.unifier;
|
|
|
|
let class_method_to_def_id = &self.class_method_to_def_id;
|
|
|
|
let mut to_be_analyzed_class = &mut self.to_be_analyzed_class;
|
2021-08-16 09:46:55 +08:00
|
|
|
|
|
|
|
while !to_be_analyzed_class.is_empty() {
|
2021-08-16 17:40:12 +08:00
|
|
|
let class_ind = to_be_analyzed_class.remove(0).0;
|
|
|
|
let (class_name, class_body) = {
|
|
|
|
let class_ast = &ast_list[class_ind];
|
2021-08-16 20:17:08 +08:00
|
|
|
if let Some(ast::Located {
|
|
|
|
node: ast::StmtKind::ClassDef { name, body, .. }, ..
|
|
|
|
}) = class_ast
|
|
|
|
{
|
2021-08-16 17:40:12 +08:00
|
|
|
(name, body)
|
2021-08-16 20:17:08 +08:00
|
|
|
} else {
|
|
|
|
unreachable!("should be class def ast")
|
|
|
|
}
|
2021-08-16 09:46:55 +08:00
|
|
|
};
|
2021-08-16 17:40:12 +08:00
|
|
|
|
2021-08-16 20:17:08 +08:00
|
|
|
let class_methods_parsing_result: Vec<(String, Type, DefinitionId)> =
|
|
|
|
Default::default();
|
2021-08-16 17:40:12 +08:00
|
|
|
let class_fields_parsing_result: Vec<(String, Type)> = Default::default();
|
2021-08-16 09:46:55 +08:00
|
|
|
for b in class_body {
|
|
|
|
if let ast::StmtKind::FunctionDef {
|
2021-08-16 17:40:12 +08:00
|
|
|
args: method_args_ast,
|
|
|
|
body: method_body_ast,
|
|
|
|
name: method_name,
|
|
|
|
returns: method_returns_ast,
|
2021-08-16 09:46:55 +08:00
|
|
|
..
|
2021-08-16 20:17:08 +08:00
|
|
|
} = &b.node
|
|
|
|
{
|
2021-08-16 17:40:12 +08:00
|
|
|
let (class_def, method_def) = {
|
|
|
|
// unwrap should not fail
|
|
|
|
let method_ind = class_method_to_def_id
|
2021-08-16 20:17:08 +08:00
|
|
|
.get(&Self::name_mangling(class_name.into(), method_name))
|
|
|
|
.unwrap()
|
|
|
|
.0;
|
|
|
|
|
2021-08-16 17:40:12 +08:00
|
|
|
// split the def_list to two parts to get the
|
|
|
|
// mutable reference to both the method and the class
|
|
|
|
assert_ne!(method_ind, class_ind);
|
2021-08-16 20:17:08 +08:00
|
|
|
let min_ind =
|
|
|
|
(if method_ind > class_ind { class_ind } else { method_ind }) + 1;
|
|
|
|
let (head_slice, tail_slice) = def_list.split_at_mut(min_ind);
|
2021-08-16 17:40:12 +08:00
|
|
|
let (new_method_ind, new_class_ind) = (
|
|
|
|
if method_ind >= min_ind { method_ind - min_ind } else { method_ind },
|
2021-08-16 20:17:08 +08:00
|
|
|
if class_ind >= min_ind { class_ind - min_ind } else { class_ind },
|
2021-08-16 17:40:12 +08:00
|
|
|
);
|
|
|
|
if new_class_ind == class_ind {
|
|
|
|
(&mut head_slice[new_class_ind], &mut tail_slice[new_method_ind])
|
|
|
|
} else {
|
|
|
|
(&mut tail_slice[new_class_ind], &mut head_slice[new_method_ind])
|
|
|
|
}
|
|
|
|
};
|
2021-08-16 20:17:08 +08:00
|
|
|
let (class_fields, class_methods, class_resolver) = {
|
|
|
|
if let TopLevelDef::Class { resolver, fields, methods, .. } =
|
|
|
|
class_def.get_mut()
|
|
|
|
{
|
2021-08-16 17:40:12 +08:00
|
|
|
(fields, methods, resolver)
|
2021-08-16 20:17:08 +08:00
|
|
|
} else {
|
|
|
|
unreachable!("must be class def here")
|
|
|
|
}
|
2021-08-16 17:40:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
let arg_tys = method_args_ast
|
|
|
|
.args
|
|
|
|
.iter()
|
|
|
|
.map(|x| -> Result<Type, String> {
|
2021-08-17 11:06:45 +08:00
|
|
|
if x.node.arg != "self" {
|
|
|
|
let annotation = x
|
|
|
|
.node
|
|
|
|
.annotation
|
|
|
|
.as_ref()
|
|
|
|
.ok_or_else(|| {
|
|
|
|
"type annotation for function parameter is needed".to_string()
|
|
|
|
})?
|
|
|
|
.as_ref();
|
|
|
|
|
|
|
|
let ty =
|
|
|
|
class_resolver.as_ref().unwrap().lock().parse_type_annotation(
|
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
|
|
|
annotation,
|
|
|
|
)?;
|
|
|
|
Ok(ty)
|
|
|
|
} else {
|
|
|
|
// TODO: handle self, how
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2021-08-16 17:40:12 +08:00
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2021-08-17 11:06:45 +08:00
|
|
|
|
|
|
|
let ret_ty = if method_name != "__init__" {
|
|
|
|
method_returns_ast
|
2021-08-16 17:40:12 +08:00
|
|
|
.as_ref()
|
2021-08-17 11:06:45 +08:00
|
|
|
.map(|x|
|
|
|
|
class_resolver.as_ref().unwrap().lock().parse_type_annotation(
|
2021-08-16 20:17:08 +08:00
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
|
|
|
x.as_ref(),
|
2021-08-17 11:06:45 +08:00
|
|
|
)
|
|
|
|
)
|
|
|
|
.ok_or_else(|| "return type annotation needed".to_string())??
|
|
|
|
} else {
|
|
|
|
// TODO: self type, how
|
|
|
|
unimplemented!()
|
|
|
|
};
|
|
|
|
|
|
|
|
// handle fields
|
|
|
|
if method_name == "__init__" {
|
|
|
|
for body in method_body_ast {
|
|
|
|
match &body.node {
|
|
|
|
ast::StmtKind::AnnAssign {
|
|
|
|
target,
|
|
|
|
annotation,
|
|
|
|
..
|
|
|
|
} if {
|
|
|
|
if let ast::ExprKind::Attribute {
|
|
|
|
value,
|
|
|
|
attr,
|
|
|
|
..
|
|
|
|
} = &target.node {
|
|
|
|
if let ast::ExprKind::Name {id, ..} = &value.node {
|
|
|
|
id == "self"
|
|
|
|
} else { false }
|
|
|
|
} else { false }
|
|
|
|
} => {
|
|
|
|
// TODO: record this field with its type
|
|
|
|
},
|
|
|
|
|
|
|
|
// TODO: exclude those without type annotation
|
|
|
|
ast::StmtKind::Assign {
|
|
|
|
targets,
|
|
|
|
..
|
|
|
|
} if {
|
|
|
|
if let ast::ExprKind::Attribute {
|
|
|
|
value,
|
|
|
|
attr,
|
|
|
|
..
|
|
|
|
} = &targets[0].node {
|
|
|
|
if let ast::ExprKind::Name {id, ..} = &value.node {
|
|
|
|
id == "self"
|
|
|
|
} else { false }
|
|
|
|
} else { false }
|
|
|
|
} => {
|
|
|
|
unimplemented!()
|
|
|
|
},
|
|
|
|
|
|
|
|
// do nothing
|
|
|
|
_ => { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-16 17:40:12 +08:00
|
|
|
let all_tys_ok = {
|
|
|
|
let ret_ty_iter = vec![ret_ty];
|
|
|
|
let ret_ty_iter = ret_ty_iter.iter();
|
|
|
|
let mut all_tys = chain!(arg_tys.iter(), ret_ty_iter);
|
|
|
|
all_tys.all(|x| {
|
2021-08-16 20:17:08 +08:00
|
|
|
let type_enum = unifier.get_ty(*x);
|
|
|
|
match type_enum.as_ref() {
|
|
|
|
TypeEnum::TObj { obj_id, .. } => {
|
|
|
|
!to_be_analyzed_class.contains(obj_id)
|
|
|
|
}
|
|
|
|
TypeEnum::TVirtual { ty } => {
|
|
|
|
if let TypeEnum::TObj { obj_id, .. } =
|
|
|
|
unifier.get_ty(*ty).as_ref()
|
|
|
|
{
|
2021-08-16 17:40:12 +08:00
|
|
|
!to_be_analyzed_class.contains(obj_id)
|
2021-08-16 20:17:08 +08:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
}
|
2021-08-16 17:40:12 +08:00
|
|
|
}
|
2021-08-17 11:06:45 +08:00
|
|
|
TypeEnum::TVar { .. } => true,
|
2021-08-16 20:17:08 +08:00
|
|
|
_ => unreachable!(),
|
2021-08-16 17:40:12 +08:00
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
})
|
2021-08-16 17:40:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
if all_tys_ok {
|
|
|
|
// TODO: put related value to the `class_methods_parsing_result`
|
|
|
|
unimplemented!()
|
|
|
|
} else {
|
|
|
|
to_be_analyzed_class.push(DefinitionId(class_ind));
|
|
|
|
// TODO: go to the next WHILE loop
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2021-08-16 09:46:55 +08:00
|
|
|
} else {
|
|
|
|
// what should we do with `class A: a = 3`?
|
2021-08-16 20:17:08 +08:00
|
|
|
continue;
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
2021-08-16 17:40:12 +08:00
|
|
|
|
2021-08-16 20:17:08 +08:00
|
|
|
// TODO: now it should be confirmed that every
|
2021-08-16 17:40:12 +08:00
|
|
|
// methods and fields of the class can be correctly typed, put the results
|
|
|
|
// into the actual def_list and the unifier
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
Ok(())
|
2021-08-16 09:46:55 +08:00
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
fn analyze_top_level_inheritance(&mut self) -> Result<(), String> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2021-08-16 20:17:08 +08:00
|
|
|
|
2021-08-17 11:06:45 +08:00
|
|
|
fn analyze_top_level_function(&mut self) -> Result<(), String> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:46:55 +08:00
|
|
|
fn analyze_top_level_field_instantiation(&mut self) -> Result<(), String> {
|
|
|
|
unimplemented!()
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|