2021-08-10 23:49:58 +08:00
|
|
|
use std::borrow::Borrow;
|
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-11 14:37:26 +08:00
|
|
|
use inkwell::context::Context;
|
|
|
|
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-11 15:18:21 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send>>>,
|
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-11 15:18:21 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send>>>,
|
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)>>>,
|
|
|
|
pub conetexts: Arc<RwLock<Vec<Mutex<Context>>>>,
|
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 fn name_mangling(mut class_name: String, method_name: &str) -> String {
|
|
|
|
// need to further extend to more name mangling like instantiations of typevar
|
2021-08-10 23:49:58 +08:00
|
|
|
class_name.push_str(method_name);
|
|
|
|
class_name
|
|
|
|
}
|
|
|
|
|
2021-08-11 17:35:23 +08:00
|
|
|
// like adding some info on top of the TopLevelDef for later parsing the class bases, method,
|
|
|
|
// and function sigatures
|
2021-08-11 15:18:21 +08:00
|
|
|
pub struct TopLevelDefInfo {
|
2021-08-11 17:35:23 +08:00
|
|
|
// the definition entry
|
|
|
|
def: TopLevelDef,
|
|
|
|
// the entry in the top_level unifier
|
|
|
|
ty: Type,
|
|
|
|
// the ast submitted by applications, primitives and
|
|
|
|
// class methods will have None value here
|
|
|
|
ast: Option<ast::Stmt<()>>,
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
2021-08-10 21:57:31 +08:00
|
|
|
|
2021-08-11 15:11:51 +08:00
|
|
|
pub struct TopLevelComposer {
|
2021-08-11 17:35:23 +08:00
|
|
|
// list of top level definitions and their info
|
|
|
|
pub definition_list: RwLock<Vec<TopLevelDefInfo>>,
|
|
|
|
// primitive store
|
2021-08-10 10:33:18 +08:00
|
|
|
pub primitives: PrimitiveStore,
|
2021-08-11 17:35:23 +08:00
|
|
|
// start as a primitive unifier, will add more top_level defs inside
|
2021-08-10 10:33:18 +08:00
|
|
|
pub unifier: Unifier,
|
2021-08-11 17:35:23 +08:00
|
|
|
// class method to definition id
|
|
|
|
pub class_method_to_def_id: HashMap<String, DefinitionId>,
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
|
|
|
|
2021-08-11 15:11:51 +08:00
|
|
|
impl TopLevelComposer {
|
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(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
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(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
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(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
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(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
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(),
|
|
|
|
params: HashMap::new(),
|
|
|
|
});
|
|
|
|
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-12 10:50:01 +08:00
|
|
|
/// return a composer and things to make a "primitive" symbol resolver, so that the symbol
|
|
|
|
/// 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-11 17:35:23 +08:00
|
|
|
// the def list including the entries of primitive info
|
2021-08-11 15:11:51 +08:00
|
|
|
let definition_list: Vec<TopLevelDefInfo> = vec![
|
2021-08-10 10:33:18 +08:00
|
|
|
TopLevelDefInfo {
|
2021-08-11 15:11:51 +08:00
|
|
|
def: Self::make_top_level_class_def(0, None),
|
2021-08-10 10:33:18 +08:00
|
|
|
ast: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.int32,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
2021-08-11 15:11:51 +08:00
|
|
|
def: Self::make_top_level_class_def(1, None),
|
2021-08-10 10:33:18 +08:00
|
|
|
ast: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.int64,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
2021-08-11 15:11:51 +08:00
|
|
|
def: Self::make_top_level_class_def(2, None),
|
2021-08-10 10:33:18 +08:00
|
|
|
ast: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.float,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
2021-08-11 15:11:51 +08:00
|
|
|
def: Self::make_top_level_class_def(3, None),
|
2021-08-10 10:33:18 +08:00
|
|
|
ast: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.bool,
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
|
|
|
TopLevelDefInfo {
|
2021-08-11 15:11:51 +08:00
|
|
|
def: Self::make_top_level_class_def(4, None),
|
2021-08-10 10:33:18 +08:00
|
|
|
ast: None,
|
2021-08-10 21:57:31 +08:00
|
|
|
ty: primitives.0.none,
|
2021-08-09 01:43:41 +08:00
|
|
|
},
|
2021-08-11 17:35:23 +08:00
|
|
|
];
|
|
|
|
let composer = TopLevelComposer {
|
|
|
|
definition_list: definition_list.into(),
|
|
|
|
primitives: primitives.0,
|
|
|
|
unifier: primitives.1,
|
|
|
|
class_method_to_def_id: Default::default(),
|
|
|
|
};
|
|
|
|
(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,
|
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send>>>,
|
|
|
|
) -> 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,
|
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send>>>,
|
|
|
|
) -> 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-11 15:18:21 +08:00
|
|
|
resolver: Option<Arc<Mutex<dyn SymbolResolver + Send>>>,
|
2021-08-12 10:50:01 +08:00
|
|
|
) -> Result<(String, DefinitionId, Type), String> {
|
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-12 10:50:01 +08:00
|
|
|
let mut def_list = self.definition_list.write();
|
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
|
|
|
|
let ty = self.unifier.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 10:50:01 +08:00
|
|
|
|
2021-08-10 23:49:58 +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-10 23:49:58 +08:00
|
|
|
let fun_name = name_mangling(class_name.clone(), name);
|
2021-08-12 10:50:01 +08:00
|
|
|
let def_id = def_list.len();
|
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
// add to unifier
|
2021-08-11 15:18:21 +08:00
|
|
|
let ty = self.unifier.add_ty(TypeEnum::TFunc(
|
|
|
|
crate::typecheck::typedef::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-12 10:50:01 +08:00
|
|
|
def_list.push(TopLevelDefInfo {
|
|
|
|
def: Self::make_top_level_function_def(fun_name.clone(), ty, resolver.clone()),
|
2021-08-11 15:18:21 +08:00
|
|
|
ty,
|
2021-08-12 10:50:01 +08:00
|
|
|
// since it is inside the class def body statments, the ast is None
|
|
|
|
ast: None,
|
2021-08-11 15:18:21 +08:00
|
|
|
});
|
2021-08-12 10:50:01 +08:00
|
|
|
|
|
|
|
// class method, do not let the symbol manager manage it, use our own map
|
|
|
|
// FIXME: maybe not do name magling, use map to map instead
|
|
|
|
self.class_method_to_def_id.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-12 10:50:01 +08:00
|
|
|
def_list.push(TopLevelDefInfo {
|
2021-08-11 15:18:21 +08:00
|
|
|
def: TopLevelDef::Initializer {
|
|
|
|
class_id: DefinitionId(class_def_id),
|
|
|
|
},
|
2021-08-12 10:50:01 +08:00
|
|
|
// arbitary picked one for the constructor
|
|
|
|
ty: self.primitives.none,
|
|
|
|
// it is inside the class def body statments, so None
|
|
|
|
ast: None,
|
2021-08-11 15:18:21 +08:00
|
|
|
})
|
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
|
|
|
|
|
|
|
// add the class to the definition list
|
2021-08-12 10:50:01 +08:00
|
|
|
def_list.push(TopLevelDefInfo {
|
2021-08-11 15:18:21 +08:00
|
|
|
def: Self::make_top_level_class_def(class_def_id, resolver),
|
2021-08-10 21:57:31 +08:00
|
|
|
ast: Some(ast),
|
|
|
|
ty,
|
|
|
|
});
|
|
|
|
|
2021-08-12 10:50:01 +08:00
|
|
|
Ok((class_name, DefinitionId(class_def_id), ty))
|
|
|
|
},
|
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-12 10:50:01 +08:00
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
// add to the unifier
|
2021-08-12 10:50:01 +08:00
|
|
|
let ty = self.unifier.add_ty(TypeEnum::TFunc(crate::typecheck::typedef::FunSignature {
|
|
|
|
args: Default::default(),
|
|
|
|
ret: self.primitives.none,
|
|
|
|
vars: Default::default(),
|
|
|
|
}));
|
|
|
|
|
2021-08-10 10:33:18 +08:00
|
|
|
// add to the definition list
|
2021-08-12 10:50:01 +08:00
|
|
|
let mut def_list = self.definition_list.write();
|
|
|
|
def_list.push(TopLevelDefInfo {
|
2021-08-10 21:57:31 +08:00
|
|
|
def: Self::make_top_level_function_def(
|
|
|
|
name.into(),
|
2021-08-11 15:18:21 +08:00
|
|
|
self.primitives.none,
|
|
|
|
resolver,
|
2021-08-10 21:57:31 +08:00
|
|
|
),
|
|
|
|
ast: Some(ast),
|
|
|
|
ty,
|
|
|
|
});
|
2021-08-10 10:33:18 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// this should be called after all top level classes are registered, and will actually fill in those fields of the previous dummy one
|
|
|
|
pub fn analyze_top_level(&mut self) -> Result<(), String> {
|
2021-08-12 10:50:01 +08:00
|
|
|
for d in self.definition_list.write().iter_mut() {
|
|
|
|
// only analyze those with ast, and class_method(ast in class def)
|
2021-08-11 15:11:51 +08:00
|
|
|
if let Some(ast) = &d.ast {
|
2021-08-10 10:33:18 +08:00
|
|
|
match &ast.node {
|
|
|
|
ast::StmtKind::ClassDef {
|
|
|
|
bases,
|
|
|
|
body,
|
|
|
|
..
|
|
|
|
} => {
|
2021-08-10 23:49:58 +08:00
|
|
|
// get the mutable reference of the entry in the definition list, get the `TopLevelDef`
|
|
|
|
let (_,
|
|
|
|
ancestors,
|
|
|
|
fields,
|
|
|
|
methods,
|
2021-08-11 15:11:51 +08:00
|
|
|
type_vars,
|
2021-08-12 10:50:01 +08:00
|
|
|
resolver,
|
2021-08-10 23:49:58 +08:00
|
|
|
) = if let TopLevelDef::Class {
|
2021-08-11 15:42:32 +08:00
|
|
|
object_id,
|
2021-08-10 23:49:58 +08:00
|
|
|
ancestors,
|
|
|
|
fields,
|
|
|
|
methods,
|
2021-08-11 15:11:51 +08:00
|
|
|
type_vars,
|
2021-08-12 10:50:01 +08:00
|
|
|
resolver: Some(resolver)
|
2021-08-11 15:42:32 +08:00
|
|
|
} = &mut d.def {
|
2021-08-12 10:50:01 +08:00
|
|
|
(object_id, ancestors, fields, methods, type_vars, resolver.lock())
|
2021-08-10 23:49:58 +08:00
|
|
|
} else { unreachable!() };
|
2021-08-11 15:42:32 +08:00
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
// try to get mutable reference of the entry in the unification table, get the `TypeEnum`
|
|
|
|
let (params,
|
|
|
|
fields
|
|
|
|
) = if let TypeEnum::TObj {
|
2021-08-12 10:50:01 +08:00
|
|
|
// FIXME: this params is immutable, even if this is mutable, what
|
|
|
|
// should the key be, get the original typevar's var_id?
|
|
|
|
params,
|
2021-08-10 23:49:58 +08:00
|
|
|
fields,
|
|
|
|
..
|
|
|
|
} = self.unifier.get_ty(d.ty).borrow() {
|
|
|
|
(params, fields)
|
|
|
|
} else { unreachable!() };
|
|
|
|
|
2021-08-10 21:57:31 +08:00
|
|
|
// ancestors and typevars associate with the class are analyzed by looking
|
|
|
|
// into the `bases` ast node
|
2021-08-10 10:33:18 +08:00
|
|
|
for b in bases {
|
|
|
|
match &b.node {
|
2021-08-12 10:50:01 +08:00
|
|
|
// 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
|
2021-08-10 23:49:58 +08:00
|
|
|
// should update the TopLevelDef::Class.typevars and the TypeEnum::TObj.params
|
|
|
|
ast::ExprKind::Subscript {value, slice, ..} if {
|
|
|
|
if let ast::ExprKind::Name {id, ..} = &value.node {
|
|
|
|
id == "Generic"
|
|
|
|
} else { false }
|
|
|
|
} => {
|
|
|
|
match &slice.node {
|
2021-08-12 10:50:01 +08:00
|
|
|
// `class Foo(Generic[T, V, P]):`
|
2021-08-10 23:49:58 +08:00
|
|
|
ast::ExprKind::Tuple {elts, ..} => {
|
|
|
|
for e in elts {
|
2021-08-12 10:50:01 +08:00
|
|
|
// resolver.parse_type_annotation(self.definition_list.) // FIXME:
|
2021-08-10 23:49:58 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// `class Foo(Generic[T]):`
|
|
|
|
ast::ExprKind::Name {id, ..} => {
|
|
|
|
// the def_list
|
2021-08-11 15:11:51 +08:00
|
|
|
// type_vars.push(resolver.get_symbol_type(id).ok_or_else(|| "unknown type variable".to_string())?); FIXME:
|
2021-08-11 15:42:32 +08:00
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
// the TypeEnum of the class
|
|
|
|
// FIXME: the `params` destructed above is not mutable, even if this is mutable, what should the key be?
|
|
|
|
unimplemented!()
|
|
|
|
},
|
|
|
|
|
2021-08-12 10:50:01 +08:00
|
|
|
_ => return Err("not supported, only simple names are allowed in the subscript".into())
|
2021-08-10 23:49:58 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2021-08-12 10:50:01 +08:00
|
|
|
/* // base class, name directly available inside the
|
2021-08-10 23:49:58 +08:00
|
|
|
// module, can use this module's symbol resolver
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::ExprKind::Name {id, ..} => {
|
2021-08-11 15:42:32 +08:00
|
|
|
// let def_id = resolver.get_identifier_def(id); FIXME:
|
2021-08-10 23:49:58 +08:00
|
|
|
// the definition list
|
2021-08-11 15:42:32 +08:00
|
|
|
// ancestors.push(def_id);
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
2021-08-10 23:49:58 +08:00
|
|
|
|
|
|
|
// base class, things can be like `class A(BaseModule.Base)`, here we have to get the
|
|
|
|
// symbol resolver of the module `BaseModule`?
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::ExprKind::Attribute {value, attr, ..} => {
|
2021-08-10 23:49:58 +08:00
|
|
|
if let ast::ExprKind::Name {id, ..} = &value.node {
|
2021-08-11 15:11:51 +08:00
|
|
|
// if let Some(base_module_resolver) = resolver.get_module_resolver(id) {
|
|
|
|
// let def_id = base_module_resolver.get_identifier_def(attr);
|
|
|
|
// // the definition list
|
|
|
|
// ancestors.push(def_id);
|
|
|
|
// } else { return Err("unkown imported module".into()) } FIXME:
|
2021-08-10 23:49:58 +08:00
|
|
|
} else { return Err("unkown imported module".into()) }
|
2021-08-10 10:33:18 +08:00
|
|
|
},
|
2021-08-11 15:42:32 +08:00
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
// `class Foo(ImportedModule.A[int, bool])`, A is a class with associated type variables
|
2021-08-10 21:57:31 +08:00
|
|
|
ast::ExprKind::Subscript {value, slice, ..} => {
|
2021-08-10 23:49:58 +08:00
|
|
|
unimplemented!()
|
2021-08-12 10:50:01 +08:00
|
|
|
}, */
|
|
|
|
|
|
|
|
// base class is possible in other cases, we parse for thr base class
|
2021-08-10 10:33:18 +08:00
|
|
|
_ => return Err("not supported".into())
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-11 15:42:32 +08:00
|
|
|
// class method and field are analyzed by
|
2021-08-11 13:31:59 +08:00
|
|
|
// looking into the class body ast node
|
2021-08-10 10:33:18 +08:00
|
|
|
for stmt in body {
|
2021-08-10 23:49:58 +08:00
|
|
|
if let ast::StmtKind::FunctionDef {
|
|
|
|
name,
|
|
|
|
args,
|
|
|
|
body,
|
|
|
|
returns,
|
|
|
|
..
|
|
|
|
} = &stmt.node {
|
|
|
|
|
2021-08-11 15:42:32 +08:00
|
|
|
} 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-09 01:43:41 +08:00
|
|
|
|
2021-08-10 23:49:58 +08:00
|
|
|
// top level function definition
|
2021-08-10 10:33:18 +08:00
|
|
|
ast::StmtKind::FunctionDef {
|
|
|
|
name,
|
|
|
|
args,
|
|
|
|
body,
|
|
|
|
returns,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
unimplemented!()
|
2021-08-09 01:43:41 +08:00
|
|
|
}
|
|
|
|
|
2021-08-12 10:50:01 +08:00
|
|
|
node => {
|
|
|
|
return Err("only expect function and class definitions to be submitted here to be analyzed".into())
|
|
|
|
}
|
2021-08-10 10:33:18 +08:00
|
|
|
}
|
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
|
|
|
}
|