aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-06-02 23:25:25 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-06-03 20:56:47 +0200
commit66dc91b1683a0da3215388239d2f2809e332624a (patch)
treee0304b4923587904ce0d2c40ed3c89b11210458f /askama_shared
parentce224cdb3de91bce821501d0555ed3abe027b3d9 (diff)
downloadaskama-66dc91b1683a0da3215388239d2f2809e332624a.tar.gz
askama-66dc91b1683a0da3215388239d2f2809e332624a.tar.bz2
askama-66dc91b1683a0da3215388239d2f2809e332624a.zip
Refactor code for finding nested blocks
Diffstat (limited to 'askama_shared')
-rw-r--r--askama_shared/src/heritage.rs59
1 files changed, 27 insertions, 32 deletions
diff --git a/askama_shared/src/heritage.rs b/askama_shared/src/heritage.rs
index 554fbfd..86c7932 100644
--- a/askama_shared/src/heritage.rs
+++ b/askama_shared/src/heritage.rs
@@ -47,43 +47,38 @@ impl<'a> Context<'a> {
let mut blocks = Vec::new();
let mut macros = HashMap::new();
let mut imports = HashMap::new();
+ let mut nested = vec![nodes];
+ let mut top = true;
- for n in nodes {
- match n {
- Node::Extends(Expr::StrLit(extends_path)) => match extends {
- Some(_) => panic!("multiple extend blocks found"),
- None => {
- extends = Some(config.find_template(extends_path, Some(path)));
+ while let Some(nodes) = nested.pop() {
+ for n in nodes {
+ match n {
+ Node::Extends(Expr::StrLit(extends_path)) if top => match extends {
+ Some(_) => panic!("multiple extend blocks found"),
+ None => {
+ extends = Some(config.find_template(extends_path, Some(path)));
+ }
+ },
+ Node::Macro(name, m) if top => {
+ macros.insert(*name, m);
}
- },
- def @ Node::BlockDef(_, _, _, _) => {
- blocks.push(def);
- }
- Node::Macro(name, m) => {
- macros.insert(*name, m);
- }
- Node::Import(_, import_path, scope) => {
- let path = config.find_template(import_path, Some(path));
- imports.insert(*scope, path);
- }
- _ => {}
- }
- }
-
- let mut check_nested = 0;
- let mut nested_blocks = Vec::new();
- while check_nested < blocks.len() {
- if let Node::BlockDef(_, _, ref nodes, _) = blocks[check_nested] {
- for n in nodes {
- if let def @ Node::BlockDef(_, _, _, _) = n {
- nested_blocks.push(def);
+ Node::Import(_, import_path, scope) if top => {
+ let path = config.find_template(import_path, Some(path));
+ imports.insert(*scope, path);
+ }
+ Node::Extends(_) | Node::Macro(_, _) | Node::Import(_, _, _) if !top => {
+ panic!("extends, macro or import blocks not allowed below top level");
+ }
+ def @ Node::BlockDef(_, _, _, _) => {
+ blocks.push(def);
+ if let Node::BlockDef(_, _, nodes, _) = def {
+ nested.push(nodes);
+ }
}
+ _ => {}
}
- } else {
- panic!("non block found in list of blocks");
}
- blocks.append(&mut nested_blocks);
- check_nested += 1;
+ top = false;
}
let blocks: HashMap<_, _> = blocks