2022-11-16 03:10:16 +00:00
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn main() !void {
|
2022-11-16 07:39:36 +00:00
|
|
|
try execute(std.io.getStdOut().writer(), @embedFile("./test.tmp.html"), .{
|
|
|
|
.community = .{ .name = "abcd" },
|
|
|
|
.foo = [_][]const u8{ "5", "4", "3", "2", "1" },
|
|
|
|
});
|
2022-11-16 03:10:16 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 06:07:45 +00:00
|
|
|
const logging = false;
|
|
|
|
|
2022-11-16 03:10:16 +00:00
|
|
|
pub fn execute(writer: anytype, comptime template: []const u8, args: anytype) !void {
|
2022-11-16 07:16:46 +00:00
|
|
|
@setEvalBranchQuota(@intCast(u32, template.len * 6));
|
|
|
|
const tmpl = comptime parseTemplate(TokenIter{ .text = template }, .root);
|
2022-11-16 08:01:45 +00:00
|
|
|
try executeTemplate(writer, tmpl.item, args, .{ .bar = "abc" });
|
2022-11-16 06:35:27 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 08:01:45 +00:00
|
|
|
fn executeTemplate(writer: anytype, comptime items: []const TemplateItem, args: anytype, captures: anytype) !void {
|
2022-11-16 06:35:27 +00:00
|
|
|
inline for (items) |it| switch (it) {
|
|
|
|
.text => |text| try writer.writeAll(text),
|
2022-11-16 08:01:45 +00:00
|
|
|
.statement => |stmt| try executeStatement(writer, stmt, args, captures),
|
2022-11-16 06:35:27 +00:00
|
|
|
};
|
2022-11-16 03:10:16 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 08:01:45 +00:00
|
|
|
fn executeStatement(writer: anytype, comptime stmt: Statement, args: anytype, captures: anytype) !void {
|
2022-11-16 06:07:45 +00:00
|
|
|
switch (stmt) {
|
|
|
|
.expression => |expr| switch (expr) {
|
2022-11-16 07:39:36 +00:00
|
|
|
.arg_deref => |fields| {
|
2022-11-16 08:01:45 +00:00
|
|
|
const arg = deref(args, fields);
|
|
|
|
try print(writer, arg);
|
|
|
|
},
|
|
|
|
.capture_deref => |fields| {
|
|
|
|
const arg = deref(captures, fields);
|
2022-11-16 07:39:36 +00:00
|
|
|
try print(writer, arg);
|
|
|
|
},
|
2022-11-16 06:07:45 +00:00
|
|
|
},
|
2022-11-16 07:39:36 +00:00
|
|
|
.for_loop => |loop| {
|
|
|
|
const fields = loop.iterable.arg_deref;
|
2022-11-16 08:01:45 +00:00
|
|
|
const iterable = deref(args, fields);
|
2022-11-16 07:53:29 +00:00
|
|
|
const subtemplate = loop.subtemplate;
|
|
|
|
try writer.writeAll("capture on " ++ loop.capture ++ ": ");
|
|
|
|
for (iterable) |_| {
|
2022-11-16 08:01:45 +00:00
|
|
|
try executeTemplate(
|
|
|
|
writer,
|
|
|
|
subtemplate,
|
|
|
|
args,
|
|
|
|
captures,
|
|
|
|
);
|
2022-11-16 07:39:36 +00:00
|
|
|
}
|
2022-11-16 07:16:46 +00:00
|
|
|
},
|
2022-11-16 06:07:45 +00:00
|
|
|
else => @compileError("TODO"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 07:39:36 +00:00
|
|
|
fn print(writer: anytype, arg: anytype) !void {
|
|
|
|
if (comptime std.meta.trait.isZigString(@TypeOf(arg))) return writer.writeAll(arg);
|
|
|
|
|
|
|
|
@compileError("TODO");
|
|
|
|
}
|
|
|
|
|
2022-11-16 08:01:45 +00:00
|
|
|
fn Deref(comptime T: type, comptime names: []const []const u8) type {
|
2022-11-16 07:39:36 +00:00
|
|
|
if (names.len == 0) return T;
|
|
|
|
|
|
|
|
// Compiler segfaults when I use std.meta to get this info so we search it manually
|
|
|
|
const field = for (@typeInfo(T).Struct.fields) |f| {
|
|
|
|
if (std.mem.eql(u8, f.name, names[0])) break f;
|
|
|
|
} else @compileError("Unknown field " ++ names[0] ++ " in type " ++ @typeName(T));
|
|
|
|
|
2022-11-16 08:01:45 +00:00
|
|
|
return Deref(field.field_type, names[1..]);
|
2022-11-16 07:39:36 +00:00
|
|
|
}
|
2022-11-16 06:07:45 +00:00
|
|
|
|
2022-11-16 08:01:45 +00:00
|
|
|
fn deref(arg: anytype, comptime names: []const []const u8) Deref(@TypeOf(arg), names) {
|
2022-11-16 07:39:36 +00:00
|
|
|
if (names.len == 0) return arg;
|
2022-11-16 08:01:45 +00:00
|
|
|
return deref(@field(arg, names[0]), names[1..]);
|
2022-11-16 06:07:45 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
const TemplateType = enum {
|
|
|
|
root,
|
|
|
|
subtemplate,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn parseTemplate(comptime tokens: TokenIter, comptime template_type: TemplateType) ParseResult([]const TemplateItem) {
|
2022-11-16 06:35:27 +00:00
|
|
|
comptime {
|
2022-11-16 07:16:46 +00:00
|
|
|
var iter = tokens;
|
2022-11-16 06:35:27 +00:00
|
|
|
var items: []const TemplateItem = &.{};
|
|
|
|
var current_text: []const u8 = "";
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
parse_loop: while (iter.next()) |token| {
|
2022-11-16 06:35:27 +00:00
|
|
|
if (logging) @compileLog(token);
|
|
|
|
switch (token) {
|
|
|
|
.whitespace, .text => |text| current_text = current_text ++ text,
|
|
|
|
.open_bracket => {
|
|
|
|
const next = iter.peek() orelse @compileError("Unexpected end of template");
|
|
|
|
if (next == .open_bracket) {
|
|
|
|
current_text = current_text ++ "{";
|
|
|
|
_ = iter.next();
|
|
|
|
} else {
|
|
|
|
if (current_text.len != 0) {
|
|
|
|
items = items ++ [_]TemplateItem{.{ .text = current_text }};
|
|
|
|
current_text = "";
|
|
|
|
}
|
|
|
|
const result = parseStatement(iter);
|
|
|
|
iter = result.new_iter;
|
2022-11-16 07:16:46 +00:00
|
|
|
if (result.item == .end_for) {
|
|
|
|
if (template_type == .subtemplate) break :parse_loop else @compileError("Unexpected end statement");
|
|
|
|
}
|
2022-11-16 06:35:27 +00:00
|
|
|
items = items ++ [_]TemplateItem{.{ .statement = result.item }};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
.close_bracket => {
|
|
|
|
const next = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (next == .close_bracket) current_text = current_text ++ "}" else @compileError("Unpaired close bracket, did you mean \"}}\"?");
|
|
|
|
},
|
|
|
|
.period => current_text = current_text ++ ".",
|
|
|
|
.pound => current_text = current_text ++ "#",
|
2022-11-16 07:53:29 +00:00
|
|
|
.pipe => current_text = current_text ++ "|",
|
|
|
|
.dollar => current_text = current_text ++ "$",
|
2022-11-16 06:35:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_text.len != 0) {
|
|
|
|
items = items ++ [_]TemplateItem{.{ .text = current_text }};
|
|
|
|
}
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
return .{
|
|
|
|
.new_iter = iter,
|
|
|
|
.item = items,
|
|
|
|
};
|
2022-11-16 06:35:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 06:11:16 +00:00
|
|
|
fn parseStatement(comptime tokens: TokenIter) ParseResult(Statement) {
|
2022-11-16 06:07:45 +00:00
|
|
|
comptime {
|
|
|
|
var iter = tokens;
|
2022-11-16 07:16:46 +00:00
|
|
|
var stmt: Statement = while (iter.next()) |token| switch (token) {
|
2022-11-16 06:07:45 +00:00
|
|
|
.whitespace => {},
|
|
|
|
.pound => {
|
|
|
|
const next = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (next != .text) @compileError("Expected keyword following '#' character");
|
|
|
|
const text = next.text;
|
|
|
|
const keyword = std.meta.stringToEnum(Keyword, text) orelse @compileError("Unknown keyword: " ++ text);
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
switch (keyword) {
|
|
|
|
.end_for => break .{ .end_for = {} },
|
|
|
|
.@"for" => {
|
|
|
|
const result = parseForLoop(iter);
|
|
|
|
// statemnt already finished so just return
|
|
|
|
return .{
|
|
|
|
.new_iter = result.new_iter,
|
|
|
|
.item = .{ .for_loop = result.item },
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
//else => @compileError("TODO"),
|
|
|
|
}
|
2022-11-16 06:07:45 +00:00
|
|
|
},
|
|
|
|
.period => {
|
2022-11-16 08:01:45 +00:00
|
|
|
const names = parseDeref(iter);
|
|
|
|
iter = names.new_iter;
|
|
|
|
break .{ .expression = .{ .arg_deref = names.item } };
|
|
|
|
},
|
|
|
|
.dollar => {
|
|
|
|
const names = parseDeref(iter);
|
|
|
|
iter = names.new_iter;
|
|
|
|
break .{ .expression = .{ .capture_deref = names.item } };
|
2022-11-16 03:10:16 +00:00
|
|
|
},
|
2022-11-16 06:07:45 +00:00
|
|
|
else => @compileError(""),
|
|
|
|
};
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
// search for end of statement
|
|
|
|
while (iter.next()) |token| switch (token) {
|
|
|
|
.whitespace => {},
|
|
|
|
.close_bracket => return .{
|
|
|
|
.new_iter = iter,
|
|
|
|
.item = stmt,
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
@compileLog(iter.row);
|
|
|
|
@compileError("TODO" ++ @tagName(token));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
@compileError("Unexpected end of template");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 07:53:29 +00:00
|
|
|
fn skipWhitespace(comptime tokens: TokenIter) TokenIter {
|
|
|
|
comptime {
|
|
|
|
var iter = tokens;
|
|
|
|
while (iter.peek()) |token| switch (token) {
|
|
|
|
.whitespace => _ = iter.next(),
|
|
|
|
else => break,
|
|
|
|
};
|
|
|
|
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn endStatement(comptime tokens: TokenIter) TokenIter {
|
|
|
|
comptime {
|
|
|
|
var iter = skipWhitespace(tokens);
|
|
|
|
|
|
|
|
const token = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (token != .close_bracket) @compileError("Unexpected token");
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
fn parseForLoop(comptime tokens: TokenIter) ParseResult(ForLoop) {
|
|
|
|
comptime {
|
2022-11-16 07:39:36 +00:00
|
|
|
const iterable = parseExpression(tokens);
|
|
|
|
var iter = iterable.new_iter;
|
2022-11-16 07:53:29 +00:00
|
|
|
|
|
|
|
iter = skipWhitespace(iter);
|
|
|
|
{
|
|
|
|
const token = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (token != .pipe) @compileError("Unexpected token");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const token = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (token != .dollar) @compileError("Unexpected token");
|
|
|
|
}
|
|
|
|
const capture = blk: {
|
|
|
|
const token = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (token != .text) @compileError("Unexpected token");
|
|
|
|
break :blk token.text;
|
2022-11-16 07:16:46 +00:00
|
|
|
};
|
2022-11-16 07:53:29 +00:00
|
|
|
{
|
|
|
|
const token = iter.next() orelse @compileError("Unexpected end of template");
|
|
|
|
if (token != .pipe) @compileError("Unexpected token");
|
|
|
|
}
|
|
|
|
iter = endStatement(iter);
|
2022-11-16 07:16:46 +00:00
|
|
|
|
|
|
|
const subtemplate = parseTemplate(iter, .subtemplate);
|
|
|
|
|
2022-11-16 07:53:29 +00:00
|
|
|
return .{ .new_iter = subtemplate.new_iter, .item = .{ .iterable = iterable.item, .subtemplate = subtemplate.item, .capture = capture } };
|
2022-11-16 07:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parseExpression(comptime tokens: TokenIter) ParseResult(Expression) {
|
|
|
|
comptime {
|
|
|
|
var iter = tokens;
|
|
|
|
while (iter.next()) |token| switch (token) {
|
|
|
|
.whitespace => {},
|
|
|
|
.period => {
|
2022-11-16 08:01:45 +00:00
|
|
|
const names = parseDeref(iter);
|
|
|
|
return .{ .new_iter = names.new_iter, .item = .{ .arg_deref = names.item } };
|
2022-11-16 07:16:46 +00:00
|
|
|
},
|
|
|
|
else => @compileError("Expected Expression"),
|
|
|
|
};
|
|
|
|
|
2022-11-16 06:07:45 +00:00
|
|
|
@compileError("Unexpected end of template");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 08:01:45 +00:00
|
|
|
fn parseDeref(comptime tokens: TokenIter) ParseResult([]const []const u8) {
|
2022-11-16 06:07:45 +00:00
|
|
|
comptime {
|
|
|
|
var iter = tokens;
|
|
|
|
var fields: []const []const u8 = &.{};
|
|
|
|
var wants = .text;
|
|
|
|
while (iter.peek()) |token| {
|
|
|
|
switch (token) {
|
|
|
|
.whitespace => {},
|
|
|
|
.text => |text| {
|
|
|
|
if (wants != .text) @compileError("Unexpected token \"" ++ text ++ "\"");
|
|
|
|
fields = fields ++ [1][]const u8{text};
|
|
|
|
wants = .period;
|
|
|
|
},
|
|
|
|
.period => {
|
|
|
|
if (wants != .period) @compileError("Unexpected token \".\"");
|
|
|
|
wants = .text;
|
|
|
|
},
|
|
|
|
else => if (wants == .period) return .{
|
|
|
|
.new_iter = iter,
|
2022-11-16 06:11:16 +00:00
|
|
|
.item = fields,
|
2022-11-16 06:07:45 +00:00
|
|
|
} else @compileError("Unexpected token"),
|
|
|
|
}
|
|
|
|
_ = iter.next();
|
2022-11-16 03:10:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 06:11:16 +00:00
|
|
|
fn ParseResult(comptime T: type) type {
|
|
|
|
return struct {
|
|
|
|
new_iter: TokenIter,
|
|
|
|
item: T,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-11-16 06:35:27 +00:00
|
|
|
const TemplateItem = union(enum) {
|
|
|
|
text: []const u8,
|
|
|
|
statement: Statement,
|
|
|
|
};
|
|
|
|
|
2022-11-16 06:07:45 +00:00
|
|
|
const Expression = union(enum) {
|
|
|
|
arg_deref: []const []const u8,
|
2022-11-16 08:01:45 +00:00
|
|
|
capture_deref: []const []const u8,
|
2022-11-16 06:07:45 +00:00
|
|
|
};
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
const ForLoop = struct {
|
|
|
|
subtemplate: []const TemplateItem,
|
2022-11-16 07:39:36 +00:00
|
|
|
iterable: Expression,
|
2022-11-16 07:53:29 +00:00
|
|
|
capture: []const u8,
|
2022-11-16 07:16:46 +00:00
|
|
|
};
|
|
|
|
|
2022-11-16 06:07:45 +00:00
|
|
|
const Statement = union(enum) {
|
|
|
|
expression: Expression,
|
2022-11-16 07:16:46 +00:00
|
|
|
for_loop: ForLoop,
|
|
|
|
end_for: void,
|
2022-11-16 06:07:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const Keyword = enum {
|
|
|
|
@"for",
|
2022-11-16 07:16:46 +00:00
|
|
|
end_for,
|
2022-11-16 06:07:45 +00:00
|
|
|
};
|
|
|
|
|
2022-11-16 03:10:16 +00:00
|
|
|
const Token = union(enum) {
|
|
|
|
text: []const u8,
|
|
|
|
open_bracket: void,
|
|
|
|
close_bracket: void,
|
|
|
|
period: void,
|
|
|
|
whitespace: []const u8,
|
2022-11-16 06:07:45 +00:00
|
|
|
pound: void,
|
2022-11-16 07:53:29 +00:00
|
|
|
pipe: void,
|
|
|
|
dollar: void,
|
2022-11-16 03:10:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const TokenIter = struct {
|
|
|
|
start: usize = 0,
|
|
|
|
text: []const u8,
|
|
|
|
peeked_token: ?Token = null,
|
|
|
|
|
2022-11-16 07:16:46 +00:00
|
|
|
row: usize = 0,
|
|
|
|
|
2022-11-16 03:10:16 +00:00
|
|
|
fn next(self: *TokenIter) ?Token {
|
|
|
|
if (self.peeked_token) |token| {
|
|
|
|
self.peeked_token = null;
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
const remaining = self.text[self.start..];
|
|
|
|
if (remaining.len == 0) return null;
|
|
|
|
|
|
|
|
const ch = remaining[0];
|
|
|
|
self.start += 1;
|
|
|
|
switch (ch) {
|
|
|
|
'{' => return .{ .open_bracket = {} },
|
|
|
|
'}' => return .{ .close_bracket = {} },
|
|
|
|
'.' => return .{ .period = {} },
|
2022-11-16 06:07:45 +00:00
|
|
|
'#' => return .{ .pound = {} },
|
2022-11-16 07:53:29 +00:00
|
|
|
'|' => return .{ .pipe = {} },
|
|
|
|
'$' => return .{ .dollar = {} },
|
2022-11-16 03:10:16 +00:00
|
|
|
' ', '\t', '\n', '\r' => {
|
|
|
|
var idx: usize = 0;
|
|
|
|
while (idx < remaining.len and std.mem.indexOfScalar(u8, " \t\n\r", remaining[idx]) != null) : (idx += 1) {}
|
2022-11-16 07:16:46 +00:00
|
|
|
const newline_count = std.mem.count(u8, remaining[0..idx], "\n");
|
|
|
|
self.row += newline_count;
|
2022-11-16 03:10:16 +00:00
|
|
|
|
|
|
|
self.start += idx - 1;
|
|
|
|
return .{ .whitespace = remaining[0..idx] };
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
var idx: usize = 0;
|
2022-11-16 07:53:29 +00:00
|
|
|
while (idx < remaining.len and std.mem.indexOfScalar(u8, "{}.#|$ \t\n\r", remaining[idx]) == null) : (idx += 1) {}
|
2022-11-16 03:10:16 +00:00
|
|
|
|
|
|
|
self.start += idx - 1;
|
|
|
|
return .{ .text = remaining[0..idx] };
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn peek(self: *TokenIter) ?Token {
|
|
|
|
const token = self.next();
|
|
|
|
self.peeked_token = token;
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
};
|