160 lines
4.2 KiB
Swift
160 lines
4.2 KiB
Swift
class BlockContext {
|
|
class var contextKey: String { return "block_context" }
|
|
|
|
var blocks: [String: [BlockNode]]
|
|
|
|
init(blocks: [String: BlockNode]) {
|
|
self.blocks = [:]
|
|
blocks.forEach { (key, value) in
|
|
self.blocks[key] = [value]
|
|
}
|
|
}
|
|
|
|
func push(_ block: BlockNode, forKey blockName: String) {
|
|
if var blocks = blocks[blockName] {
|
|
blocks.append(block)
|
|
self.blocks[blockName] = blocks
|
|
} else {
|
|
self.blocks[blockName] = [block]
|
|
}
|
|
}
|
|
|
|
func pop(_ blockName: String) -> BlockNode? {
|
|
if var blocks = blocks[blockName] {
|
|
let block = blocks.removeFirst()
|
|
if blocks.isEmpty {
|
|
self.blocks.removeValue(forKey: blockName)
|
|
} else {
|
|
self.blocks[blockName] = blocks
|
|
}
|
|
return block
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
extension Collection {
|
|
func any(_ closure: (Iterator.Element) -> Bool) -> Iterator.Element? {
|
|
for element in self {
|
|
if closure(element) {
|
|
return element
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
class ExtendsNode : NodeType {
|
|
let templateName: Variable
|
|
let blocks: [String:BlockNode]
|
|
let token: Token?
|
|
|
|
class func parse(_ parser: TokenParser, token: Token) throws -> NodeType {
|
|
let bits = token.components()
|
|
|
|
guard bits.count == 2 else {
|
|
throw TemplateSyntaxError("'extends' takes one argument, the template file to be extended")
|
|
}
|
|
|
|
let parsedNodes = try parser.parse()
|
|
guard (parsedNodes.any { $0 is ExtendsNode }) == nil else {
|
|
throw TemplateSyntaxError("'extends' cannot appear more than once in the same template")
|
|
}
|
|
|
|
let blockNodes = parsedNodes.flatMap { $0 as? BlockNode }
|
|
|
|
let nodes = blockNodes.reduce([String: BlockNode]()) { (accumulator, node) -> [String: BlockNode] in
|
|
var dict = accumulator
|
|
dict[node.name] = node
|
|
return dict
|
|
}
|
|
|
|
return ExtendsNode(templateName: Variable(bits[1]), blocks: nodes, token: token)
|
|
}
|
|
|
|
init(templateName: Variable, blocks: [String: BlockNode], token: Token) {
|
|
self.templateName = templateName
|
|
self.blocks = blocks
|
|
self.token = token
|
|
}
|
|
|
|
func render(_ context: Context) throws -> String {
|
|
guard let templateName = try self.templateName.resolve(context) as? String else {
|
|
throw TemplateSyntaxError("'\(self.templateName)' could not be resolved as a string")
|
|
}
|
|
|
|
let template = try context.environment.loadTemplate(name: templateName)
|
|
|
|
let blockContext: BlockContext
|
|
if let context = context[BlockContext.contextKey] as? BlockContext {
|
|
blockContext = context
|
|
|
|
for (key, value) in blocks {
|
|
blockContext.push(value, forKey: key)
|
|
}
|
|
} else {
|
|
blockContext = BlockContext(blocks: blocks)
|
|
}
|
|
|
|
do {
|
|
return try context.environment.pushTemplate(template, token: token) {
|
|
try context.push(dictionary: [BlockContext.contextKey: blockContext]) {
|
|
return try template.render(context)
|
|
}
|
|
}
|
|
} catch {
|
|
if let parentError = error as? TemplateSyntaxError {
|
|
throw TemplateSyntaxError(reason: parentError.reason, parentError: parentError)
|
|
} else {
|
|
throw error
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
class BlockNode : NodeType {
|
|
let name: String
|
|
let nodes: [NodeType]
|
|
let token: Token?
|
|
|
|
class func parse(_ parser: TokenParser, token: Token) throws -> NodeType {
|
|
let bits = token.components()
|
|
|
|
guard bits.count == 2 else {
|
|
throw TemplateSyntaxError("'block' tag takes one argument, the block name")
|
|
}
|
|
|
|
let blockName = bits[1]
|
|
let nodes = try parser.parse(until(["endblock"]))
|
|
_ = parser.nextToken()
|
|
return BlockNode(name:blockName, nodes:nodes, token: token)
|
|
}
|
|
|
|
init(name: String, nodes: [NodeType], token: Token) {
|
|
self.name = name
|
|
self.nodes = nodes
|
|
self.token = token
|
|
}
|
|
|
|
func render(_ context: Context) throws -> String {
|
|
if let blockContext = context[BlockContext.contextKey] as? BlockContext, let node = blockContext.pop(name) {
|
|
let newContext: [String: Any]
|
|
newContext = [
|
|
BlockContext.contextKey: blockContext,
|
|
"block": ["super": try self.render(context)]
|
|
]
|
|
|
|
return try context.push(dictionary: newContext) {
|
|
return try node.render(context)
|
|
}
|
|
}
|
|
|
|
return try renderNodes(nodes, context)
|
|
}
|
|
}
|