Compare commits
No commits in common. "7cf16f9ffa202ea68b669f27b7d8214cbff06bb5" and "cb689c3adefafb67404c7064d8b476dc9506a8c8" have entirely different histories.
7cf16f9ffa
...
cb689c3ade
2 changed files with 18 additions and 48 deletions
|
@ -140,7 +140,6 @@ pub const ArgList = std.ArrayList([]const u8);
|
||||||
|
|
||||||
pub const KeywordMap = std.StringHashMap(CommandType);
|
pub const KeywordMap = std.StringHashMap(CommandType);
|
||||||
|
|
||||||
/// A parser.
|
|
||||||
pub const Lang = struct {
|
pub const Lang = struct {
|
||||||
allocator: *std.mem.Allocator,
|
allocator: *std.mem.Allocator,
|
||||||
keywords: KeywordMap,
|
keywords: KeywordMap,
|
||||||
|
|
65
src/main.zig
65
src/main.zig
|
@ -25,59 +25,29 @@ fn wrapInCmdList(allocator: *std.mem.Allocator, cmd: langs.Command) !langs.Comma
|
||||||
pub fn doRepl(allocator: *std.mem.Allocator, args_it: var) !void {
|
pub fn doRepl(allocator: *std.mem.Allocator, args_it: var) !void {
|
||||||
var stdout_file = try std.io.getStdOut();
|
var stdout_file = try std.io.getStdOut();
|
||||||
const stdout = &stdout_file.outStream().stream;
|
const stdout = &stdout_file.outStream().stream;
|
||||||
|
|
||||||
const scri_path = try (args_it.next(allocator) orelse @panic("expected scri path"));
|
const scri_path = try (args_it.next(allocator) orelse @panic("expected scri path"));
|
||||||
|
|
||||||
var file_read = try std.fs.File.openRead(scri_path);
|
|
||||||
const total_bytes = try file_read.getEndPos();
|
|
||||||
|
|
||||||
var cmds = langs.CommandList.init(allocator);
|
|
||||||
defer cmds.deinit();
|
|
||||||
|
|
||||||
var lang = langs.Lang.init(allocator);
|
|
||||||
defer lang.deinit();
|
|
||||||
|
|
||||||
if (total_bytes > 0) {
|
|
||||||
// this MUST BE long lived (a reference to it is kept inside
|
|
||||||
// existing_cmds, and then passed along to cmds),
|
|
||||||
// we can't defer them here
|
|
||||||
var scri_existing = try allocator.alloc(u8, total_bytes);
|
|
||||||
_ = try file_read.read(scri_existing);
|
|
||||||
|
|
||||||
// we can defer this because we copy the Command structs back to cmds
|
|
||||||
var existing_cmds = try lang.parse(scri_existing);
|
|
||||||
defer existing_cmds.deinit();
|
|
||||||
|
|
||||||
// copy the existing command list into the repl's command list
|
|
||||||
var it = existing_cmds.iterator();
|
|
||||||
while (it.next()) |existing_cmd| {
|
|
||||||
try cmds.append(existing_cmd);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// if there isn't any commands on the file, we load our default
|
|
||||||
// 'load :1' command
|
|
||||||
|
|
||||||
// TODO load should +1 the index if its on repl
|
|
||||||
var loadargs = langs.ArgList.init(allocator);
|
|
||||||
try loadargs.append(":1");
|
|
||||||
|
|
||||||
try cmds.append(langs.Command{
|
|
||||||
.command = .Load,
|
|
||||||
.args = loadargs,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
file_read.close();
|
|
||||||
|
|
||||||
var file = try std.fs.File.openWrite(scri_path);
|
var file = try std.fs.File.openWrite(scri_path);
|
||||||
defer file.close();
|
defer file.close();
|
||||||
|
|
||||||
var out = file.outStream();
|
var out = file.outStream();
|
||||||
var stream = &out.stream;
|
var stream = &out.stream;
|
||||||
|
|
||||||
// since we opened the file for writing, it becomes empty, so, to ensure
|
// the thing here is that 'load :0' would load the scri_path, since we
|
||||||
// we don't fuck up later on, we print cmds before starting the repl
|
// now have a 'repl' argument right before it. to counteract that, the
|
||||||
try printer.printList(cmds, stdout);
|
// initial repl buffer contains 'load :1' instead.
|
||||||
try printer.printList(cmds, stream);
|
|
||||||
|
var loadargs = langs.ArgList.init(allocator);
|
||||||
|
defer loadargs.deinit();
|
||||||
|
try loadargs.append(":1");
|
||||||
|
|
||||||
|
var cmds = try wrapInCmdList(allocator, langs.Command{
|
||||||
|
.command = .Load,
|
||||||
|
.args = loadargs,
|
||||||
|
});
|
||||||
|
|
||||||
|
defer cmds.deinit();
|
||||||
|
|
||||||
// we keep
|
// we keep
|
||||||
// - a CommandList with the full commands we have right now
|
// - a CommandList with the full commands we have right now
|
||||||
|
@ -88,6 +58,9 @@ pub fn doRepl(allocator: *std.mem.Allocator, args_it: var) !void {
|
||||||
// - one runner that gets copied from the original on every new
|
// - one runner that gets copied from the original on every new
|
||||||
// command the user issues
|
// command the user issues
|
||||||
|
|
||||||
|
var lang = langs.Lang.init(allocator);
|
||||||
|
defer lang.deinit();
|
||||||
|
|
||||||
var current: langs.Command = undefined;
|
var current: langs.Command = undefined;
|
||||||
|
|
||||||
var runner = runners.Runner.init(allocator);
|
var runner = runners.Runner.init(allocator);
|
||||||
|
@ -126,8 +99,6 @@ pub fn doRepl(allocator: *std.mem.Allocator, args_it: var) !void {
|
||||||
try printer.printList(cmds, stdout);
|
try printer.printList(cmds, stdout);
|
||||||
continue;
|
continue;
|
||||||
} else if (std.mem.eql(u8, line, "save")) {
|
} else if (std.mem.eql(u8, line, "save")) {
|
||||||
// seek to 0 instead of appending the new command
|
|
||||||
// NOTE appending single command might be faster
|
|
||||||
try file.seekTo(0);
|
try file.seekTo(0);
|
||||||
try printer.printList(cmds, stream);
|
try printer.printList(cmds, stream);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue