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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
use crate::core::*;
use config::*;
use hashbrown::HashMap;
use indexmap::IndexSet;
use log::info;
use resolve;
use tokio::time::Instant;
use ustr::Ustr;
use std::sync::Arc;
#[derive(Hash, PartialEq, Eq, Debug, Clone, Copy)]
pub struct InstanceID(pub usize);
impl InstanceID {
pub fn sym(&self, sym: Symbol) -> ModuleSymbol {
ModuleSymbol {
instance: *self,
sym,
}
}
}
/// A ast symbole within a module context
#[derive(Hash, PartialEq, Eq, Debug, Clone, Copy)]
pub struct ModuleSymbol {
pub instance: InstanceID,
pub sym: Symbol,
}
impl resolve::AstContainer for HashMap<FileID, Arc<LinkedAstDocument>> {
fn get(&self, file: FileID) -> &AstDocument {
&*self[&file].content
}
}
/// Depth first iteration
fn iterate_instances<'a>(
root: FileID,
files: &'a HashMap<FileID, Arc<LinkedAstDocument>>,
) -> impl Iterator<Item = (ModuleSymbol, InstanceID, FileID, u32)> + 'a {
let mut counter = 0;
let mut stack = vec![(
ModuleSymbol {
instance: InstanceID(0),
sym: Symbol::Root,
},
root,
0,
)];
std::iter::from_fn(move || {
stack.pop().map(|(origin, file, depth)| {
let file = &files[&file];
for (im, tgt) in file
.content
.all_imports()
.rev()
.map(|i| (i, file.resolved[&i].file))
{
stack.push((
ModuleSymbol {
instance: InstanceID(counter),
sym: im,
},
tgt,
depth + 1,
));
}
counter += 1;
return (origin, InstanceID(counter - 1), file.content.id, depth);
})
})
}
/// An actual instance of a root file with all subfiles
///
/// A module is basically a depth first iteration of all features and recusive sub file contents
/// Each import statement creates a new instance of some ast file. So features and attributes can
/// exist multiple times in diffrent instances. This struct allows for easy instance iteration and
/// resolution. Since references in diffrent instances have diffrent resolutions, we currently
/// reresolve references to non local symbols, TODO this can be avoided using a static instance
/// encoding scheme?.
#[derive(Debug, Clone)]
pub struct Module {
instance_files: Vec<FileID>,
instances: IndexSet<(InstanceID, Symbol)>,
pub timestamp: Instant,
pub files: HashMap<FileID, Arc<LinkedAstDocument>>,
pub ok: bool,
}
impl Module {
pub fn get_instance(&self, instance: InstanceID, sym: Symbol) -> InstanceID {
InstanceID(self.instances.get_index_of(&(instance, sym)).unwrap())
}
pub fn new(
root: FileID,
fs: &FileSystem,
files: &HashMap<FileID, Arc<LinkedAstDocument>>,
) -> Module {
let mut members = fs.recursive_imports(root);
members.push(root);
let ok = members.iter().all(|i| files[i].ok);
if ok {
let mut instances = IndexSet::new();
let mut instance_files = Vec::new();
for (origin, _, file, _) in iterate_instances(root, files) {
instances.insert((origin.instance, origin.sym));
instance_files.push(file);
}
Module {
files: files
.iter()
.filter(|(k, _)| members.contains(k))
.map(|(k, v)| (*k, v.clone()))
.collect(),
instance_files,
instances,
timestamp: Instant::now(),
ok,
}
} else {
Module {
files: files
.iter()
.filter(|(k, _)| members.contains(k))
.map(|(k, v)| (*k, v.clone()))
.collect(),
instance_files: [root].into(),
instances: IndexSet::new(),
timestamp: Instant::now(),
ok,
}
}
}
/// Resolves references inside this module
pub fn resolve_value(&self, src_sym: ModuleSymbol) -> ModuleSymbol {
assert!(self.ok);
match src_sym.sym {
Symbol::Feature(_) | Symbol::Attribute(_) => src_sym,
Symbol::Reference(_) => {
let src_file = &self.files[&self.instance_files[src_sym.instance.0]];
let tgt = src_file.resolved[&src_sym.sym];
//Fast path
if tgt.file == src_file.content.id {
return ModuleSymbol {
instance: src_sym.instance,
sym: tgt.sym,
};
}
let tgt_file = &self.files[&tgt.file];
let path = src_file.content.path(src_sym.sym);
let instance_path = &path[0..path.len() - tgt_file.content.depth(tgt.sym) as usize];
let mut stack = vec![(instance_path, src_sym.instance)];
while let Some((prefix, instance)) = stack.pop() {
let file = self.file(instance);
if prefix.len() == 0 && file.id == tgt.file {
return ModuleSymbol {
sym: tgt.sym,
instance,
};
}
for (sym, tail) in file.lookup_import(prefix) {
stack.push((tail, self.get_instance(instance, sym)));
}
}
info!("path {instance_path:?}");
info!("mod {self:?}");
panic!("unresolved module value");
}
_ => panic!("{src_sym:?} not a value"),
}
}
/// Bind a recursive configuration doc to a linear set of symbols
/// Add layer for cardinality
pub fn resolve_config<E: FnMut(Span, String)>(
&self,
doc: &Vec<ConfigEntry>,
mut err: E,
) -> (
HashMap<ModuleSymbol, ConfigValue>,
HashMap<ModuleSymbol, Span>,
) {
assert!(self.ok);
let mut out = HashMap::new();
let mut out_span = HashMap::new();
// offset is used for mapping to different entities of a cardinality and its children
let mut stack = vec![(InstanceID(0), doc.as_slice(), 0 as usize)];
while let Some((instance, config, offset)) = stack.pop() {
let file = self.file(instance);
for c in config.iter() {
match c {
ConfigEntry::Value(path, val) => match val {
ConfigValue::Cardinality(cardinality) => match cardinality {
CardinalityEntry::CardinalityLvl(cardinality_lvl) => {
let entries = file.get_all_entities(&path.names.clone());
let entries = entries.iter().nth(offset);
match entries {
Some(Symbol::Feature(id)) => {
let feature = file.get_feature(id.clone()).unwrap();
match feature.cardinality {
Some(Cardinality::Range(_, max)) => {
for i in 0..cardinality_lvl.len() {
stack.push((
instance,
cardinality_lvl.iter().nth(i).unwrap(),
offset * max + i,
));
}
}
_ => (),
}
}
_ => panic!("unexpected feature"),
}
}
CardinalityEntry::EntitiyLvl(_) => {
panic!("unexpected cardinality level")
}
},
_ => {
if let Some(sym_ref) =
file.get_all_entities(&path.names).iter().nth(offset)
{
let sym = sym_ref.clone();
if file.type_of(sym).unwrap() == val.ty() {
out.insert(ModuleSymbol { instance, sym }, val.clone());
out_span.insert(ModuleSymbol { instance, sym }, path.range());
} else {
match sym {
Symbol::Feature(i) => {
let feature = file.get_feature(i).unwrap().clone();
if let Cardinality::Range(_, _) =
feature.cardinality.unwrap()
{
out.insert(
ModuleSymbol { instance, sym },
val.clone(),
);
out_span.insert(
ModuleSymbol { instance, sym },
path.range(),
);
} else {
err(
path.range(),
format!(
"expected {} got {}",
file.type_of(sym).unwrap(),
val.ty()
),
);
}
}
Symbol::Attribute(_) => {
out.insert(ModuleSymbol { instance, sym }, val.clone());
out_span.insert(
ModuleSymbol { instance, sym },
path.range(),
);
}
_ => {
err(
path.range(),
format!(
"expected {} got {}",
file.type_of(sym).unwrap(),
val.ty()
),
);
}
}
}
} else {
err(path.range(), format!("unresolved value",));
}
}
},
ConfigEntry::Import(path, val) => {
if let Some(sym) = file
.lookup(Symbol::Root, &path.names, |sym| {
matches!(sym, Symbol::Import(..) | Symbol::Dir(..))
})
.find(|sym| matches!(sym, Symbol::Import(..)))
{
stack.push((self.get_instance(instance, sym), &val, offset));
} else {
err(path.range(), format!("unresolved import",));
}
}
}
}
}
(out, out_span)
}
pub fn file(&self, instance: InstanceID) -> &AstDocument {
&self.files[&self.instance_files[instance.0]].content
}
pub fn type_of(&self, sym: ModuleSymbol) -> Type {
assert!(self.ok);
let sym = self.resolve_value(sym);
self.files[&self.instance_files[sym.instance.0]]
.content
.type_of(sym.sym)
.unwrap()
}
/// Visit all instances in the module
pub fn instances<'a>(&'a self) -> impl Iterator<Item = (InstanceID, &'a AstDocument)> {
assert!(self.ok);
self.instance_files
.iter()
.enumerate()
.map(|(i, k)| (InstanceID(i), &*self.files[k].content))
}
pub fn instances_depth<'a>(
&'a self,
) -> impl Iterator<Item = (ModuleSymbol, InstanceID, &'a AstDocument, u32)> {
assert!(self.ok);
iterate_instances(self.instance_files[0], &self.files)
.map(|(origin, i, file, depth)| (origin, i, &*self.files[&file].content, depth))
}
}
/// Configuration with a module and resolved configuration symboles
#[derive(Debug, Clone)]
pub struct ConfigModule {
pub module: Arc<Module>,
pub values: HashMap<ModuleSymbol, ConfigValue>,
pub source_map: HashMap<ModuleSymbol, Span>,
}
impl ConfigModule {
fn serialize_rec(&self, path: &[Ustr], i: InstanceID) -> ConfigEntry {
let file = self.file(i);
let mut entries = Vec::new();
for im in file.all_imports() {
let entry = self.serialize_rec(file.import_prefix(im), self.get_instance(i, im));
if !entry.is_empty() {
entries.push(entry);
}
}
entries.append(&mut self.serialize_rec_file(Symbol::Root, file, i));
ConfigEntry::Import(
Path {
names: path.to_vec(),
spans: Vec::new(),
},
entries,
)
}
/// serialize file recursive while accommodate for cardinality
fn serialize_rec_file(
&self,
sym: Symbol,
file: &AstDocument,
i: InstanceID,
) -> Vec<ConfigEntry> {
let mut entries: Vec<ConfigEntry> = Vec::new();
// used for different entities of cardinality
let mut child_map: HashMap<Ustr, Vec<Vec<ConfigEntry>>> = hashbrown::HashMap::new();
for child in file.direct_children(sym) {
match child {
Symbol::Feature(id) => {
let feature = file.get_feature(id).unwrap();
match feature.cardinality {
Some(Cardinality::Fixed) => {
if let Some(config) = self.values.get(&i.sym(child)) {
entries.push(ConfigEntry::Value(
Path {
names: vec![file.name(child).unwrap()],
spans: Vec::new(),
},
config.clone(),
))
}
entries.append(&mut self.serialize_rec_file(child, file, i));
}
Some(Cardinality::Range(_, _)) => {
let mut cardinal_entry: Vec<ConfigEntry> = vec![];
// add self to cardinality definition
if let Some(config) = self.values.get(&i.sym(child)) {
cardinal_entry.push(ConfigEntry::Value(
Path {
names: vec![file.name(child).unwrap()],
spans: Vec::new(),
},
config.clone(),
));
}
cardinal_entry.append(&mut self.serialize_rec_file(child, file, i));
if cardinal_entry.len() > 0 {
child_map
.get_mut(&file.name(child).unwrap())
.and_then(|x| {
x.push(cardinal_entry.clone());
Some(())
})
.or_else(|| {
child_map.insert(
file.name(child).unwrap(),
vec![cardinal_entry],
);
Some(())
});
}
}
None => (),
}
}
Symbol::Attribute(_) => {
if let Some(config) = self.values.get(&i.sym(child)) {
entries.push(ConfigEntry::Value(
Path {
names: vec![file.name(sym).unwrap(), file.name(child).unwrap()],
spans: Vec::new(),
},
config.clone(),
))
}
entries.append(&mut self.serialize_rec_file(child, file, i));
}
_ => {
entries.append(&mut self.serialize_rec_file(child, file, i));
}
}
}
for (cardinality_name, cardinality_childs) in child_map.iter() {
entries.push(ConfigEntry::Value(
Path {
names: vec![cardinality_name.clone()],
spans: Vec::new(),
},
ConfigValue::Cardinality(CardinalityEntry::CardinalityLvl(
cardinality_childs.clone(),
)),
))
}
return entries;
}
/// Turns a the set of linear configuration values of this module into theire recusive from
/// used in json
pub fn serialize(&self) -> Vec<ConfigEntry> {
let ConfigEntry::Import(_, v) = self.serialize_rec(&[], InstanceID(0)) else {
unreachable!()
};
v
}
}
impl std::ops::Deref for ConfigModule {
type Target = Module;
fn deref(&self) -> &Self::Target {
&self.module
}
}