2021-08-13 02:38:29 +08:00
|
|
|
use std::borrow::{Borrow, BorrowMut};
|
|
|
|
use std::collections::HashSet;
|
2021-08-03 14:11:41 +08:00
|
|
|
use std::{collections::HashMap, 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-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
|
|
|
}
|
|
|
|
|
|
|
|
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-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
|
|
|
|
pub definition_list: Arc<RwLock<Vec<RwLock<TopLevelDef>>>>,
|
|
|
|
// list of top level Type, the index is same as the field `definition_list`
|
|
|
|
pub ty_list: RwLock<Vec<Type>>,
|
|
|
|
// list of top level ast, the index is same as the field `definition_list` and `ty_list`
|
|
|
|
pub ast_list: RwLock<Vec<Option<ast::Stmt<()>>>>,
|
|
|
|
// start as a primitive unifier, will add more top_level defs inside
|
|
|
|
pub unifier: RwLock<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-13 02:38:29 +08:00
|
|
|
pub class_method_to_def_id: RwLock<HashMap<String, 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 {
|
|
|
|
definitions: self.definition_list.clone(),
|
|
|
|
// 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];
|
|
|
|
|
|
|
|
let ty_list: Vec<Type> = vec![
|
|
|
|
primitives.0.int32,
|
|
|
|
primitives.0.int64,
|
|
|
|
primitives.0.float,
|
|
|
|
primitives.0.bool,
|
|
|
|
primitives.0.none,
|
2021-08-11 17:35:23 +08:00
|
|
|
];
|
2021-08-13 02:38:29 +08:00
|
|
|
|
2021-08-13 14:48:46 +08:00
|
|
|
let composer = TopLevelComposer {
|
2021-08-13 02:38:29 +08:00
|
|
|
definition_list: RwLock::new(top_level_def_list).into(),
|
|
|
|
ty_list: RwLock::new(ty_list),
|
|
|
|
ast_list: RwLock::new(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-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-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-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-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-12 10:50:01 +08:00
|
|
|
) -> Result<(String, DefinitionId, Type), String> {
|
2021-08-13 13:55:44 +08:00
|
|
|
// get write access to the lists
|
2021-08-13 16:28:04 +08:00
|
|
|
let (mut def_list, mut ty_list, mut ast_list) =
|
|
|
|
(self.definition_list.write(), self.ty_list.write(), self.ast_list.write());
|
|
|
|
|
2021-08-13 13:55:44 +08:00
|
|
|
// will be deleted after tested
|
|
|
|
assert_eq!(ty_list.len(), def_list.len());
|
|
|
|
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-10 10:33:18 +08:00
|
|
|
// add the class to the unifier
|
2021-08-13 02:38:29 +08:00
|
|
|
let ty = self.unifier.write().add_ty(TypeEnum::TObj {
|
2021-08-10 23:49:58 +08:00
|
|
|
obj_id: DefinitionId(class_def_id),
|
2021-08-10 10:33:18 +08:00
|
|
|
fields: Default::default(),
|
2021-08-10 21:57:31 +08:00
|
|
|
params: Default::default(),
|
2021-08-10 10:33:18 +08:00
|
|
|
});
|
2021-08-12 13:17:51 +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());
|
|
|
|
ty_list.push(ty);
|
|
|
|
// since later when registering class method, ast will still be used,
|
|
|
|
// here push None temporarly, later will push the ast
|
|
|
|
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
|
|
|
|
// by using the field `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 unifier
|
2021-08-13 13:55:44 +08:00
|
|
|
let ty = self.unifier.write().add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: Default::default(),
|
|
|
|
ret: self.primitives.none,
|
|
|
|
vars: Default::default(),
|
|
|
|
}));
|
2021-08-12 10:50:01 +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(),
|
|
|
|
ty,
|
|
|
|
resolver.clone(),
|
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
ty_list.push(ty);
|
|
|
|
// 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-13 02:38:29 +08:00
|
|
|
self.class_method_to_def_id.write().insert(fun_name, DefinitionId(def_id));
|
2021-08-11 15:18:21 +08:00
|
|
|
|
2021-08-11 13:31:59 +08:00
|
|
|
// if it is the contructor, special handling is needed. In the above
|
|
|
|
// handling, we still add __init__ function to the class method
|
|
|
|
if name == "__init__" {
|
2021-08-13 02:38:29 +08:00
|
|
|
// NOTE: how can this later be fetched?
|
|
|
|
def_list.push(
|
|
|
|
TopLevelDef::Initializer { class_id: DefinitionId(class_def_id) }
|
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
// arbitarily push one to make sure the index is correct
|
|
|
|
ty_list.push(self.primitives.none);
|
|
|
|
ast_list.push(None);
|
2021-08-10 23:49:58 +08:00
|
|
|
}
|
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-12 13:17:51 +08:00
|
|
|
// return
|
2021-08-12 10:50:01 +08:00
|
|
|
Ok((class_name, DefinitionId(class_def_id), ty))
|
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 unifier
|
2021-08-13 13:55:44 +08:00
|
|
|
let ty = self.unifier.write().add_ty(TypeEnum::TFunc(FunSignature {
|
2021-08-12 10:50:01 +08:00
|
|
|
args: Default::default(),
|
|
|
|
ret: self.primitives.none,
|
|
|
|
vars: Default::default(),
|
|
|
|
}));
|
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(),
|
|
|
|
);
|
|
|
|
ty_list.push(ty);
|
|
|
|
ast_list.push(Some(ast));
|
2021-08-10 10:33:18 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// return
|
2021-08-12 10:50:01 +08:00
|
|
|
Ok((fun_name, DefinitionId(def_list.len() - 1), ty))
|
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-13 13:55:44 +08:00
|
|
|
pub fn analyze_top_level_class_type_var(&mut self) -> Result<(), String> {
|
|
|
|
let mut def_list = self.definition_list.write();
|
|
|
|
let ty_list = self.ty_list.read();
|
|
|
|
let ast_list = self.ast_list.read();
|
|
|
|
let mut unifier = self.unifier.write();
|
|
|
|
|
|
|
|
for (def, ty, ast) in def_list
|
|
|
|
.iter_mut()
|
|
|
|
.zip(ty_list.iter())
|
|
|
|
.zip(ast_list.iter())
|
|
|
|
.map(|((x, y), z)| (x, y, z))
|
2021-08-13 16:28:04 +08:00
|
|
|
.collect::<Vec<(&mut RwLock<TopLevelDef>, &Type, &Option<ast::Stmt<()>>)>>()
|
|
|
|
{
|
2021-08-13 13:55:44 +08:00
|
|
|
unimplemented!()
|
2021-08-13 16:28:04 +08:00
|
|
|
}
|
2021-08-13 13:55:44 +08:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
/// this should be called after all top level classes are registered, and
|
|
|
|
/// will actually fill in those fields of the previous dummy one
|
2021-08-10 10:33:18 +08:00
|
|
|
pub fn analyze_top_level(&mut self) -> Result<(), String> {
|
2021-08-13 02:38:29 +08:00
|
|
|
let mut def_list = self.definition_list.write();
|
|
|
|
let ty_list = self.ty_list.read();
|
|
|
|
let ast_list = self.ast_list.read();
|
|
|
|
let mut unifier = self.unifier.write();
|
|
|
|
|
|
|
|
for (def, ty, ast) in def_list
|
|
|
|
.iter_mut()
|
|
|
|
.zip(ty_list.iter())
|
|
|
|
.zip(ast_list.iter())
|
|
|
|
.map(|((x, y), z)| (x, y, z))
|
|
|
|
.collect::<Vec<(&mut RwLock<TopLevelDef>, &Type, &Option<ast::Stmt<()>>)>>()
|
|
|
|
{
|
|
|
|
// only analyze those entries with ast, and class_method(whose ast in class def)
|
|
|
|
match ast {
|
|
|
|
Some(ast::Located{node: ast::StmtKind::ClassDef {
|
|
|
|
bases,
|
|
|
|
body,
|
|
|
|
name: class_name,
|
|
|
|
..
|
|
|
|
}, .. }) => {
|
2021-08-13 16:28:04 +08:00
|
|
|
// get the mutable reference of the entry in the
|
2021-08-13 02:38:29 +08:00
|
|
|
// definition list, get the `TopLevelDef`
|
|
|
|
let (
|
|
|
|
def_ancestors,
|
|
|
|
def_fields,
|
|
|
|
def_methods,
|
|
|
|
def_type_vars,
|
|
|
|
resolver,
|
|
|
|
) = if let TopLevelDef::Class {
|
|
|
|
object_id: _,
|
|
|
|
ancestors,
|
|
|
|
fields,
|
|
|
|
methods,
|
|
|
|
type_vars,
|
|
|
|
resolver: Some(resolver)
|
|
|
|
} = def.get_mut() {
|
|
|
|
(ancestors, fields, methods, type_vars, resolver.lock())
|
|
|
|
} else { unreachable!() };
|
|
|
|
|
2021-08-13 16:28:04 +08:00
|
|
|
// try to get mutable reference of the entry in the
|
2021-08-13 02:38:29 +08:00
|
|
|
// unification table, get the `TypeEnum`
|
|
|
|
let type_enum = unifier.get_ty(*ty);
|
|
|
|
let (
|
|
|
|
enum_params,
|
|
|
|
enum_fields
|
|
|
|
) = if let TypeEnum::TObj {
|
|
|
|
params,
|
|
|
|
fields,
|
2021-08-10 10:33:18 +08:00
|
|
|
..
|
2021-08-13 02:38:29 +08:00
|
|
|
} = type_enum.borrow() {
|
|
|
|
(params, fields)
|
|
|
|
} else { unreachable!() };
|
|
|
|
|
|
|
|
// ancestors and typevars associate with the class are analyzed by looking
|
|
|
|
// into the `bases` ast node
|
|
|
|
// `Generic` should only occur once, use this flag
|
|
|
|
let mut generic_occured = false;
|
|
|
|
// TODO: haven't check this yet
|
|
|
|
let mut occured_type_var: HashSet<Type> = Default::default();
|
|
|
|
// TODO: haven't check this yet
|
|
|
|
let mut occured_base: HashSet<DefinitionId> = Default::default();
|
|
|
|
for b in 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
|
|
|
|
ast::ExprKind::Subscript {value, slice, ..} if {
|
|
|
|
// can only be `Generic[...]` and this can only appear once
|
|
|
|
if let ast::ExprKind::Name { id, .. } = &value.node {
|
|
|
|
if id == "Generic" {
|
|
|
|
if !generic_occured {
|
|
|
|
generic_occured = true;
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
return Err("Only single Generic[...] or Protocol[...] can be in bases".into())
|
|
|
|
}
|
2021-08-10 23:49:58 +08:00
|
|
|
} else { false }
|
2021-08-13 02:38:29 +08:00
|
|
|
} else { false }
|
|
|
|
} => {
|
|
|
|
match &slice.node {
|
|
|
|
// `class Foo(Generic[T, V, P]):` multiple element inside the subscript
|
|
|
|
ast::ExprKind::Tuple {elts, ..} => {
|
|
|
|
let tys = elts
|
|
|
|
.iter()
|
2021-08-13 16:28:04 +08:00
|
|
|
// here parse_type_annotation should be fine,
|
2021-08-13 13:55:44 +08:00
|
|
|
// since we only expect type vars, which is not relevant
|
|
|
|
// to the top-level parsing
|
|
|
|
.map(|x| resolver.parse_type_annotation(
|
2021-08-13 02:38:29 +08:00
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
2021-08-13 13:55:44 +08:00
|
|
|
x))
|
2021-08-13 02:38:29 +08:00
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2021-08-13 16:28:04 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
let ty_var_ids = tys
|
|
|
|
.iter()
|
2021-08-13 13:55:44 +08:00
|
|
|
.map(|t| {
|
|
|
|
let tmp = unifier.get_ty(*t);
|
|
|
|
// make sure it is type var
|
|
|
|
if let TypeEnum::TVar {id, ..} = tmp.as_ref() {
|
2021-08-13 02:38:29 +08:00
|
|
|
Ok(*id)
|
|
|
|
} else {
|
|
|
|
Err("Expect type variabls here".to_string())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
|
|
|
|
|
|
|
// write to TypeEnum
|
|
|
|
for (id, ty) in ty_var_ids.iter().zip(tys.iter()) {
|
|
|
|
enum_params.borrow_mut().insert(*id, *ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
// write to TopLevelDef
|
|
|
|
for ty in tys{
|
|
|
|
def_type_vars.push(ty)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// `class Foo(Generic[T]):`, only single element
|
|
|
|
_ => {
|
|
|
|
let ty = resolver.parse_type_annotation(
|
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
|
|
|
&slice
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let ty_var_id = if let TypeEnum::TVar { id, .. } = unifier
|
|
|
|
.get_ty(ty)
|
|
|
|
.as_ref() { *id } else {
|
|
|
|
return Err("Expect type variabls here".to_string())
|
|
|
|
};
|
2021-08-13 16:28:04 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// write to TypeEnum
|
|
|
|
enum_params.borrow_mut().insert(ty_var_id, ty);
|
|
|
|
|
|
|
|
// write to TopLevelDef
|
|
|
|
def_type_vars.push(ty);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-08-13 16:28:04 +08:00
|
|
|
// analyze base classes, which is possible in
|
2021-08-13 02:38:29 +08:00
|
|
|
// other cases, we parse for the base class
|
2021-08-13 13:55:44 +08:00
|
|
|
// FIXME: calling parse_type_annotation here might cause some problem
|
2021-08-13 16:28:04 +08:00
|
|
|
// when the base class is parametrized `BaseClass[int, bool]`, since the
|
2021-08-13 13:55:44 +08:00
|
|
|
// analysis of type var of some class is not done yet.
|
|
|
|
// we can first only look at the name, and later check the
|
|
|
|
// parameter when others are done
|
2021-08-13 16:28:04 +08:00
|
|
|
// Or
|
2021-08-13 13:55:44 +08:00
|
|
|
// first get all the class' type var analyzed, and then
|
|
|
|
// analyze the base class
|
2021-08-13 02:38:29 +08:00
|
|
|
_ => {
|
|
|
|
let ty = resolver.parse_type_annotation(
|
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
|
|
|
b
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let obj_def_id = if let TypeEnum::TObj { obj_id, .. } = unifier
|
|
|
|
.get_ty(ty)
|
|
|
|
.as_ref() {
|
|
|
|
*obj_id
|
|
|
|
} else {
|
|
|
|
return Err("Expect concrete classes/types here".into())
|
2021-08-10 23:49:58 +08:00
|
|
|
};
|
2021-08-13 16:28:04 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// write to TopLevelDef
|
|
|
|
def_ancestors.push(obj_def_id);
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
}
|
2021-08-13 02:38:29 +08:00
|
|
|
}
|
2021-08-09 01:43:41 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
// class method and field are analyzed by
|
|
|
|
// looking into the class body ast node
|
|
|
|
// NOTE: should consider parents' method and fields(check re-def and add),
|
2021-08-13 16:28:04 +08:00
|
|
|
// but we do it later we go over these again after we finish analyze the
|
2021-08-13 02:38:29 +08:00
|
|
|
// fields/methods as declared in the ast
|
2021-08-13 16:28:04 +08:00
|
|
|
// method with same name should not occur twice, so use this
|
2021-08-13 02:38:29 +08:00
|
|
|
let defined_method: HashSet<String> = Default::default();
|
|
|
|
for stmt in body {
|
|
|
|
if let ast::StmtKind::FunctionDef {
|
2021-08-13 13:55:44 +08:00
|
|
|
name: func_name,
|
2021-08-13 02:38:29 +08:00
|
|
|
args,
|
|
|
|
body,
|
|
|
|
returns,
|
|
|
|
..
|
|
|
|
} = &stmt.node {
|
|
|
|
// build type enum, need FunSignature {args, vars, ret}
|
|
|
|
// args. Now only args with no default TODO: other kinds of args
|
|
|
|
let func_args = args.args
|
|
|
|
.iter()
|
|
|
|
.map(|x| -> Result<FuncArg, String> {
|
|
|
|
Ok(FuncArg {
|
|
|
|
name: x.node.arg.clone(),
|
|
|
|
ty: resolver.parse_type_annotation(
|
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
|
|
|
x
|
|
|
|
.node
|
|
|
|
.annotation
|
|
|
|
.as_ref()
|
|
|
|
.ok_or_else(|| "type annotations required for function parameters".to_string())?
|
|
|
|
)?,
|
|
|
|
default_value: None
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<FuncArg>, _>>()?;
|
|
|
|
// vars. find TypeVars used in the argument type annotation
|
|
|
|
let func_vars = func_args
|
|
|
|
.iter()
|
|
|
|
.filter_map(|FuncArg { ty, .. } | {
|
|
|
|
if let TypeEnum::TVar { id, .. } = unifier.get_ty(*ty).as_ref() {
|
|
|
|
Some((*id, *ty))
|
|
|
|
} else { None }
|
|
|
|
})
|
|
|
|
.collect::<HashMap<u32, Type>>();
|
|
|
|
// return type
|
|
|
|
let func_ret = resolver
|
|
|
|
.parse_type_annotation(
|
|
|
|
&self.to_top_level_context(),
|
|
|
|
unifier.borrow_mut(),
|
|
|
|
&self.primitives,
|
|
|
|
returns
|
|
|
|
.as_ref()
|
|
|
|
.ok_or_else(|| "return type annotations required here".to_string())?
|
|
|
|
.as_ref(),
|
|
|
|
)?;
|
|
|
|
// build the TypeEnum
|
2021-08-13 13:55:44 +08:00
|
|
|
let func_type_sig = FunSignature {
|
2021-08-13 02:38:29 +08:00
|
|
|
args: func_args,
|
|
|
|
vars: func_vars,
|
|
|
|
ret: func_ret
|
2021-08-13 13:55:44 +08:00
|
|
|
};
|
2021-08-13 16:28:04 +08:00
|
|
|
|
2021-08-13 13:55:44 +08:00
|
|
|
// write to the TypeEnum and Def_list (by replacing the ty with the new Type created above)
|
|
|
|
let func_name_mangled = Self::name_mangling(class_name.clone(), func_name);
|
|
|
|
let def_id = self.class_method_to_def_id.read()[&func_name_mangled];
|
|
|
|
unimplemented!();
|
2021-08-13 16:28:04 +08:00
|
|
|
|
2021-08-13 02:38:29 +08:00
|
|
|
|
2021-08-13 13:55:44 +08:00
|
|
|
if func_name == "__init__" {
|
2021-08-13 02:38:29 +08:00
|
|
|
// special for constructor, need to look into the fields
|
|
|
|
// TODO: look into the function body and see
|
|
|
|
}
|
|
|
|
} else {
|
2021-08-10 23:49:58 +08:00
|
|
|
// do nothing. we do not care about things like this?
|
|
|
|
// class A:
|
|
|
|
// a = 3
|
|
|
|
// b = [2, 3]
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
2021-08-12 10:50:01 +08:00
|
|
|
}
|
2021-08-13 02:38:29 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// top level function definition
|
|
|
|
Some(ast::Located{node: ast::StmtKind::FunctionDef {
|
|
|
|
name,
|
|
|
|
args,
|
|
|
|
body,
|
|
|
|
returns,
|
|
|
|
..
|
|
|
|
}, .. }) => {
|
|
|
|
// TODO:
|
|
|
|
unimplemented!()
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
2021-08-13 02:38:29 +08:00
|
|
|
|
|
|
|
// only expect class def and function def ast
|
|
|
|
_ => return Err("only expect function and class definitions to be submitted here to be analyzed".into())
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
Ok(())
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
}
|