const std = @import("std"); const kmd = @import("kmd.zig"); const Allocator = std.mem.Allocator; // Globals const stdout_file = std.io.getStdOut().writer(); var bw = std.io.bufferedWriter(stdout_file); const stdout = bw.writer(); var output: []const u8 = undefined; var input: []const u8 = undefined; var template: []const u8 = undefined; var debug = false; fn print(comptime fmt: []const u8, args: anytype) !void { try stdout.print(fmt, args); try bw.flush(); } fn usage() noreturn { print("TODO: add usage\n", .{}) catch { std.process.exit(1); }; std.process.exit(0); } const Jezup = struct { const Mode = enum { none, p, ul, ol, }; title: []const u8, date: []const u8, contents: []const u8, pub fn init(self: *Jezup, text: []const u8) void { var it = std.mem.splitAny(u8, text, "\n"); self.title = it.first(); self.date = it.next().?; self.contents = it.rest(); } pub fn calculateSizeOfContentsAsHtml(self: *Jezup) usize { var mode: Mode = .none; var it = std.mem.splitAny(u8, self.contents, "\n"); var line: []const u8 = it.first(); var additional: usize = 0; var handled = false; // if !handled and not empty, default is to handle as
while (true) { // handle
\n } // handle // @@[][] becomes -> 6 bytes becomes 15 -> 9 add bytes additional += std.mem.count(u8, line, "@@[") * 9; // handle > and < - they become > and < so +3 bytes each additional += std.mem.count(u8, line, "<") * 3; additional += std.mem.count(u8, line, ">") * 3; // peek next and if empty, that means \n\n chain - cancel out cond. if (it.peek() == null or std.mem.eql(u8, it.peek().?, "")) { switch (mode) { .p => { additional += 6; // \n
\n }, // add \n .ul => { additional += 11; }, // add \n (11 bytes) .ol => { additional += 11; }, // add .none => {}, // do nothing } mode = .none; break; } else { line = it.next().?; } } // handle// allocate the new buffer - text + additional_bytes_req // this will hold the full output var buf: []u8 = try allocator.alloc(u8, required_capacity - 1); var pos: usize = 0; // offset to memcpy to // hold the buffer for the entire line var linebuf: [256]u8 = undefined; var linepos: usize = 0; std.debug.print("allocated_capacity: {}\n", .{required_capacity - 1}); std.debug.print("The length of buf is: {}\n", .{buf.len}); std.debug.print("buf = {s};\nbuf[pos..] = {s};\n", .{ buf, buf[pos..] }); // Part two - actually run the changes { // TODO: handle em, b, br, ul, ol, p, <, > // NOTE: handling hN a while (true) { // reset @memset(&linebuf, 0); linepos = 0; std.debug.print("While iteration with line: {s}\n", .{line}); // handle
// included are: hN, ul, ol. if (std.mem.startsWith(u8, line, "# ")) { handled = true; append(&linebuf, &linepos, "
\n"); } // handle (@@[][]) var i: usize = 0; // index into the line (not linebuf) var found_href = false; while (std.mem.indexOfPos(u8, line, i, "@@[")) |index_start| { found_href = true; std.debug.print("@@[ while clause: i = {}; linebuf = {s}\n", .{ i, linebuf }); // copy until the link append(&linebuf, &linepos, line[i..index_start]); const desc_start = index_start + 3; const desc_end = std.mem.indexOfPos(u8, line, desc_start, "]").?; // safe as @@[ must contain desc and href components in form @@[desc][href] const href_begin = desc_end + 2; const href_end = std.mem.indexOfPos(u8, line, href_begin, "]").?; const desc = line[desc_start..desc_end]; const href = line[href_begin..href_end]; i = href_end + 1; // copy the link append(&linebuf, &linepos, ""); append(&linebuf, &linepos, desc); append(&linebuf, &linepos, ""); std.debug.print("@@[ while post: i = {}; linebuf = {s}\n----\n", .{ i, linebuf }); } if (found_href) { std.debug.print("@@[ else clause: i = {}; line.len = {}\n", .{ i, line.len }); append(&linebuf, &linepos, line[i..]); // FIXME panic here! } std.debug.print("After @@[: {s}\n", .{linebuf}); // handle > and < - they become > and < so +3 bytes each // TODO // additional += std.mem.count(u8, line, "<") * 3; // additional += std.mem.count(u8, line, ">") * 3; // TODO: write it all out, get rid of the break above if (it.peek() == null or std.mem.eql(u8, it.peek().?, "")) { switch (mode) { .p => append(&linebuf, &linepos, "\n
\n"), .ul => append(&linebuf, &linepos, "