nac3_sca/nac3standalone/src/basic_symbol_resolver.rs

53 lines
1.4 KiB
Rust
Raw Normal View History

2021-08-19 15:30:52 +08:00
use nac3core::{
location::Location,
symbol_resolver::{SymbolResolver, SymbolValue},
toplevel::DefinitionId,
2021-08-19 15:30:52 +08:00
typecheck::{
type_inferencer::PrimitiveStore,
typedef::{Type, Unifier},
},
};
use parking_lot::Mutex;
2021-09-22 17:19:27 +08:00
use rustpython_parser::ast::StrRef;
use std::{collections::HashMap, sync::Arc};
2021-08-19 15:30:52 +08:00
pub struct ResolverInternal {
2021-09-22 17:19:27 +08:00
pub id_to_type: Mutex<HashMap<StrRef, Type>>,
pub id_to_def: Mutex<HashMap<StrRef, DefinitionId>>,
pub class_names: Mutex<HashMap<StrRef, Type>>,
2021-08-19 15:30:52 +08:00
}
impl ResolverInternal {
2021-09-22 17:19:27 +08:00
pub fn add_id_def(&self, id: StrRef, def: DefinitionId) {
self.id_to_def.lock().insert(id, def);
}
2021-09-22 17:19:27 +08:00
pub fn add_id_type(&self, id: StrRef, ty: Type) {
self.id_to_type.lock().insert(id, ty);
}
}
pub struct Resolver(pub Arc<ResolverInternal>);
2021-08-19 15:30:52 +08:00
impl SymbolResolver for Resolver {
2021-09-22 17:19:27 +08:00
fn get_symbol_type(&self, _: &mut Unifier, _: &PrimitiveStore, str: StrRef) -> Option<Type> {
let ret = self.0.id_to_type.lock().get(&str).cloned();
if ret.is_none() {
// println!("unknown here resolver {}", str);
}
ret
2021-08-19 15:30:52 +08:00
}
2021-09-22 17:19:27 +08:00
fn get_symbol_value(&self, _: StrRef) -> Option<SymbolValue> {
2021-08-19 15:30:52 +08:00
unimplemented!()
}
2021-09-22 17:19:27 +08:00
fn get_symbol_location(&self, _: StrRef) -> Option<Location> {
2021-08-19 15:30:52 +08:00
unimplemented!()
}
2021-09-22 17:19:27 +08:00
fn get_identifier_def(&self, id: StrRef) -> Option<DefinitionId> {
self.0.id_to_def.lock().get(&id).cloned()
2021-08-19 15:30:52 +08:00
}
}