1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
use super::{scope::*, SemanticError};
use crate::ast::{self, SyntaxTree};
use std::collections::HashMap;
/// Named AST portion of corresponding [Path]
#[derive(Debug, Clone, Copy)] // Copy since this is actually immutable reference
pub enum Named<'st> {
Type(&'st ast::TypeDecl),
Entity(&'st ast::Entity),
}
/// Namespace of loaded EXPRESS schema
///
/// This struct will be constructed at the first time of IR creation,
/// and is responsible for
///
/// - Resolving name in each [Scope] into [Path]
/// - Get a reference to AST portion corresponding to [Path]
///
#[derive(Debug, Clone)]
pub struct Namespace<'st> {
pub names: HashMap<Scope, Vec<(ScopeType, String, usize)>>,
/// Indexed AST portion
pub ast: Vec<(Path, Named<'st>)>,
}
impl<'st> std::ops::Index<usize> for Namespace<'st> {
type Output = (Path, Named<'st>);
fn index(&self, id: usize) -> &Self::Output {
&self.ast[id]
}
}
impl<'st> std::ops::Index<&Scope> for Namespace<'st> {
type Output = [(ScopeType, String, usize)];
fn index(&self, id: &Scope) -> &Self::Output {
&self.names[id]
}
}
impl<'st> Namespace<'st> {
pub fn new(st: &'st SyntaxTree) -> Self {
let mut names = HashMap::new();
let mut ast = Vec::new();
let root = Scope::root();
for schema in &st.schemas {
let here = root.pushed(ScopeType::Schema, &schema.name);
let mut current_names = Vec::new();
for ty in &schema.types {
let name = &ty.type_id;
let path = Path::new(&here, ScopeType::Type, name);
let index = ast.len();
ast.push((path, Named::Type(ty)));
current_names.push((ScopeType::Type, name.to_string(), index));
}
for entity in &schema.entities {
let name = &entity.name;
let path = Path::new(&here, ScopeType::Entity, name);
let index = ast.len();
ast.push((path, Named::Entity(entity)));
current_names.push((ScopeType::Entity, name.to_string(), index));
}
names.insert(here, current_names);
}
Namespace { names, ast }
}
pub fn is_empty(&self) -> bool {
self.ast.is_empty()
}
/// Size of indexed AST
pub fn len(&self) -> usize {
self.ast.len()
}
/// Resolve a `name` referred in a `scope` into the full path.
///
/// Error
/// ------
/// - If no corresponding definition found.
///
pub fn resolve(&self, scope: &Scope, name: &str) -> Result<(Path, usize), SemanticError> {
let mut scope = scope.clone();
loop {
if let Some(names) = self.names.get(&scope) {
for (ty, n, index) in names {
if name == n {
return Ok((Path::new(&scope, *ty, n), *index));
}
}
}
scope = scope.popped().ok_or_else(|| SemanticError::TypeNotFound {
scope: scope.clone(),
name: name.to_string(),
})?;
}
}
/// Get an AST portion and its index corresponding the [Path]
///
/// Error
/// ------
/// - Input path is invalid, i.e. No item is specified by the path.
///
pub fn get(&self, path: &Path) -> Result<(Named, usize), SemanticError> {
for (index, (p, ast)) in self.ast.iter().enumerate() {
if p == path {
return Ok((*ast, index));
}
}
Err(SemanticError::InvalidPath(path.clone()))
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn ns_init() {
let st = SyntaxTree::parse(
r#"
SCHEMA one;
ENTITY first;
m_ref : second;
fattr : STRING;
END_ENTITY;
ENTITY second;
sattr : STRING;
END_ENTITY;
END_SCHEMA;
SCHEMA geometry0;
ENTITY point;
x, y, z: REAL;
END_ENTITY;
END_SCHEMA;
"#
.trim(),
)
.unwrap();
let ns = Namespace::new(&st);
assert_eq!(ns.names.len(), 2);
let root = Scope::root();
for (scope, names) in &ns.names {
if scope == &root.pushed(ScopeType::Schema, "one") {
assert_eq!(names.len(), 2);
}
if scope == &root.pushed(ScopeType::Schema, "geometry0") {
assert_eq!(names.len(), 1);
}
}
}
#[test]
fn namespace_debug() {
let st = ast::SyntaxTree::parse(
r#"
SCHEMA test_schema;
ENTITY base SUPERTYPE OF (ONEOF (sub1, sub2));
x: REAL;
END_ENTITY;
ENTITY sub1 SUBTYPE OF (base);
y1: REAL;
END_ENTITY;
ENTITY sub2 SUBTYPE OF (base);
y2: REAL;
END_ENTITY;
END_SCHEMA;
"#,
)
.unwrap();
let ns = Namespace::new(&st);
insta::assert_snapshot!(format!("{:#?}", ns), @r###"
Namespace {
names: {
Scope(test_schema[Schema]): [
(
Entity,
"base",
0,
),
(
Entity,
"sub1",
1,
),
(
Entity,
"sub2",
2,
),
],
},
ast: [
(
Scope(test_schema[Schema]).base[Entity],
Entity(
Entity {
name: "base",
attributes: [
EntityAttribute {
name: Reference(
"x",
),
ty: Simple(
Real,
),
optional: false,
},
],
constraint: Some(
SuperTypeRule(
OneOf {
exprs: [
Reference(
"sub1",
),
Reference(
"sub2",
),
],
},
),
),
subtype_of: None,
derive_clause: None,
inverse_clause: None,
unique_clause: None,
where_clause: None,
},
),
),
(
Scope(test_schema[Schema]).sub1[Entity],
Entity(
Entity {
name: "sub1",
attributes: [
EntityAttribute {
name: Reference(
"y1",
),
ty: Simple(
Real,
),
optional: false,
},
],
constraint: None,
subtype_of: Some(
SubTypeDecl {
entity_references: [
"base",
],
},
),
derive_clause: None,
inverse_clause: None,
unique_clause: None,
where_clause: None,
},
),
),
(
Scope(test_schema[Schema]).sub2[Entity],
Entity(
Entity {
name: "sub2",
attributes: [
EntityAttribute {
name: Reference(
"y2",
),
ty: Simple(
Real,
),
optional: false,
},
],
constraint: None,
subtype_of: Some(
SubTypeDecl {
entity_references: [
"base",
],
},
),
derive_clause: None,
inverse_clause: None,
unique_clause: None,
where_clause: None,
},
),
),
],
}
"###);
}
}