2021-07-18 01:36:05 -08:00
|
|
|
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2021-05-23 07:18:49 -08:00
|
|
|
pub const program_version = "2.0-dev";
|
2021-05-02 22:01:09 -08:00
|
|
|
|
2021-04-29 02:48:45 -08:00
|
|
|
const std = @import("std");
|
|
|
|
|
const model = @import("model.zig");
|
|
|
|
|
const scan = @import("scan.zig");
|
2021-05-02 22:01:09 -08:00
|
|
|
const ui = @import("ui.zig");
|
|
|
|
|
const browser = @import("browser.zig");
|
2021-07-16 06:13:25 -08:00
|
|
|
const delete = @import("delete.zig");
|
2021-05-02 22:01:09 -08:00
|
|
|
const c = @cImport(@cInclude("locale.h"));
|
2021-04-29 02:48:45 -08:00
|
|
|
|
2021-05-29 03:18:21 -08:00
|
|
|
// "Custom" allocator that wraps the libc allocator and calls ui.oom() on error.
|
|
|
|
|
// This allocator never returns an error, it either succeeds or causes ncdu to quit.
|
|
|
|
|
// (Which means you'll find a lot of "catch unreachable" sprinkled through the code,
|
|
|
|
|
// they look scarier than they are)
|
|
|
|
|
fn wrapAlloc(alloc: *std.mem.Allocator, len: usize, alignment: u29, len_align: u29, return_address: usize) error{OutOfMemory}![]u8 {
|
|
|
|
|
while (true) {
|
|
|
|
|
if (std.heap.c_allocator.allocFn(alloc, len, alignment, len_align, return_address)) |r|
|
|
|
|
|
return r
|
|
|
|
|
else |_| {}
|
|
|
|
|
ui.oom();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn wrapResize(alloc: *std.mem.Allocator, buf: []u8, buf_align: u29, new_len: usize, len_align: u29, return_address: usize) std.mem.Allocator.Error!usize {
|
|
|
|
|
// AFAIK, all uses of resizeFn to grow an allocation will fall back to allocFn on failure.
|
|
|
|
|
return std.heap.c_allocator.resizeFn(alloc, buf, buf_align, new_len, len_align, return_address);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var allocator_state = std.mem.Allocator{
|
|
|
|
|
.allocFn = wrapAlloc,
|
|
|
|
|
.resizeFn = wrapResize,
|
|
|
|
|
};
|
|
|
|
|
pub const allocator = &allocator_state;
|
2021-07-13 03:33:38 -08:00
|
|
|
//var general_purpose_allocator = std.heap.GeneralPurposeAllocator(.{}){};
|
|
|
|
|
//pub const allocator = &general_purpose_allocator.allocator;
|
2021-04-29 02:48:45 -08:00
|
|
|
|
2021-05-24 01:02:26 -08:00
|
|
|
pub const config = struct {
|
|
|
|
|
pub const SortCol = enum { name, blocks, size, items, mtime };
|
|
|
|
|
pub const SortOrder = enum { asc, desc };
|
|
|
|
|
|
|
|
|
|
pub var same_fs: bool = true;
|
|
|
|
|
pub var extended: bool = false;
|
|
|
|
|
pub var follow_symlinks: bool = false;
|
|
|
|
|
pub var exclude_caches: bool = false;
|
|
|
|
|
pub var exclude_kernfs: bool = false;
|
|
|
|
|
pub var exclude_patterns: std.ArrayList([:0]const u8) = std.ArrayList([:0]const u8).init(allocator);
|
|
|
|
|
|
|
|
|
|
pub var update_delay: u64 = 100*std.time.ns_per_ms;
|
|
|
|
|
pub var scan_ui: enum { none, line, full } = .full;
|
|
|
|
|
pub var si: bool = false;
|
|
|
|
|
pub var nc_tty: bool = false;
|
|
|
|
|
pub var ui_color: enum { off, dark } = .off;
|
|
|
|
|
pub var thousands_sep: []const u8 = ",";
|
|
|
|
|
|
|
|
|
|
pub var show_hidden: bool = true;
|
|
|
|
|
pub var show_blocks: bool = true;
|
2021-05-30 07:02:57 -08:00
|
|
|
pub var show_shared: enum { off, shared, unique } = .shared;
|
2021-05-24 01:02:26 -08:00
|
|
|
pub var show_items: bool = false;
|
|
|
|
|
pub var show_mtime: bool = false;
|
|
|
|
|
pub var show_graph: enum { off, graph, percent, both } = .graph;
|
|
|
|
|
pub var sort_col: SortCol = .blocks;
|
|
|
|
|
pub var sort_order: SortOrder = .desc;
|
|
|
|
|
pub var sort_dirsfirst: bool = false;
|
|
|
|
|
|
|
|
|
|
pub var read_only: bool = false;
|
2021-05-29 00:51:17 -08:00
|
|
|
pub var imported: bool = false;
|
2021-05-24 01:02:26 -08:00
|
|
|
pub var can_shell: bool = true;
|
|
|
|
|
pub var confirm_quit: bool = false;
|
2021-07-16 06:13:25 -08:00
|
|
|
pub var confirm_delete: bool = true;
|
|
|
|
|
pub var ignore_delete_errors: bool = false;
|
2021-04-29 02:48:45 -08:00
|
|
|
};
|
|
|
|
|
|
2021-07-16 06:13:25 -08:00
|
|
|
pub var state: enum { scan, browse, refresh, shell, delete } = .scan;
|
2021-05-07 02:01:00 -08:00
|
|
|
|
2021-04-29 08:59:25 -08:00
|
|
|
// Simple generic argument parser, supports getopt_long() style arguments.
|
2021-05-03 04:41:48 -08:00
|
|
|
// T can be any type that has a 'fn next(T) ?[:0]const u8' method, e.g.:
|
2021-04-29 08:59:25 -08:00
|
|
|
// var args = Args(std.process.ArgIteratorPosix).init(std.process.ArgIteratorPosix.init());
|
|
|
|
|
fn Args(T: anytype) type {
|
|
|
|
|
return struct {
|
|
|
|
|
it: T,
|
2021-05-03 04:41:48 -08:00
|
|
|
short: ?[:0]const u8 = null, // Remainder after a short option, e.g. -x<stuff> (which may be either more short options or an argument)
|
2021-04-29 08:59:25 -08:00
|
|
|
last: ?[]const u8 = null,
|
2021-05-03 04:41:48 -08:00
|
|
|
last_arg: ?[:0]const u8 = null, // In the case of --option=<arg>
|
2021-04-29 08:59:25 -08:00
|
|
|
shortbuf: [2]u8 = undefined,
|
|
|
|
|
argsep: bool = false,
|
|
|
|
|
|
|
|
|
|
const Self = @This();
|
|
|
|
|
const Option = struct {
|
|
|
|
|
opt: bool,
|
|
|
|
|
val: []const u8,
|
|
|
|
|
|
|
|
|
|
fn is(self: @This(), cmp: []const u8) bool {
|
|
|
|
|
return self.opt and std.mem.eql(u8, self.val, cmp);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fn init(it: T) Self {
|
|
|
|
|
return Self{ .it = it };
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-03 04:41:48 -08:00
|
|
|
fn shortopt(self: *Self, s: [:0]const u8) Option {
|
2021-04-29 08:59:25 -08:00
|
|
|
self.shortbuf[0] = '-';
|
|
|
|
|
self.shortbuf[1] = s[0];
|
2021-05-03 04:41:48 -08:00
|
|
|
self.short = if (s.len > 1) s[1.. :0] else null;
|
2021-04-29 08:59:25 -08:00
|
|
|
self.last = &self.shortbuf;
|
|
|
|
|
return .{ .opt = true, .val = &self.shortbuf };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Return the next option or positional argument.
|
|
|
|
|
/// 'opt' indicates whether it's an option or positional argument,
|
|
|
|
|
/// 'val' will be either -x, --something or the argument.
|
|
|
|
|
pub fn next(self: *Self) ?Option {
|
2021-05-02 22:01:09 -08:00
|
|
|
if (self.last_arg != null) ui.die("Option '{s}' does not expect an argument.\n", .{ self.last.? });
|
2021-04-29 08:59:25 -08:00
|
|
|
if (self.short) |s| return self.shortopt(s);
|
|
|
|
|
const val = self.it.next() orelse return null;
|
|
|
|
|
if (self.argsep or val.len == 0 or val[0] != '-') return Option{ .opt = false, .val = val };
|
2021-05-02 22:01:09 -08:00
|
|
|
if (val.len == 1) ui.die("Invalid option '-'.\n", .{});
|
2021-04-29 08:59:25 -08:00
|
|
|
if (val.len == 2 and val[1] == '-') {
|
|
|
|
|
self.argsep = true;
|
|
|
|
|
return self.next();
|
|
|
|
|
}
|
|
|
|
|
if (val[1] == '-') {
|
|
|
|
|
if (std.mem.indexOfScalar(u8, val, '=')) |sep| {
|
2021-05-02 22:01:09 -08:00
|
|
|
if (sep == 2) ui.die("Invalid option '{s}'.\n", .{val});
|
2021-04-29 08:59:25 -08:00
|
|
|
self.last_arg = val[sep+1.. :0];
|
|
|
|
|
self.last = val[0..sep];
|
|
|
|
|
return Option{ .opt = true, .val = self.last.? };
|
|
|
|
|
}
|
|
|
|
|
self.last = val;
|
|
|
|
|
return Option{ .opt = true, .val = val };
|
|
|
|
|
}
|
2021-05-03 04:41:48 -08:00
|
|
|
return self.shortopt(val[1..:0]);
|
2021-04-29 08:59:25 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns the argument given to the last returned option. Dies with an error if no argument is provided.
|
2021-05-03 04:41:48 -08:00
|
|
|
pub fn arg(self: *Self) [:0]const u8 {
|
2021-04-29 08:59:25 -08:00
|
|
|
if (self.short) |a| {
|
|
|
|
|
defer self.short = null;
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
if (self.last_arg) |a| {
|
|
|
|
|
defer self.last_arg = null;
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
if (self.it.next()) |o| return o;
|
2021-05-02 22:01:09 -08:00
|
|
|
ui.die("Option '{s}' requires an argument.\n", .{ self.last.? });
|
2021-04-29 08:59:25 -08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn version() noreturn {
|
2021-05-02 22:01:09 -08:00
|
|
|
std.io.getStdOut().writer().writeAll("ncdu " ++ program_version ++ "\n") catch {};
|
2021-04-29 08:59:25 -08:00
|
|
|
std.process.exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn help() noreturn {
|
2021-05-02 22:01:09 -08:00
|
|
|
std.io.getStdOut().writer().writeAll(
|
|
|
|
|
"ncdu <options> <directory>\n\n"
|
|
|
|
|
++ " -h,--help This help message\n"
|
|
|
|
|
++ " -q Quiet mode, refresh interval 2 seconds\n"
|
|
|
|
|
++ " -v,-V,--version Print version\n"
|
|
|
|
|
++ " -x Same filesystem\n"
|
|
|
|
|
++ " -e Enable extended information\n"
|
|
|
|
|
++ " -r Read only\n"
|
|
|
|
|
++ " -o FILE Export scanned directory to FILE\n"
|
|
|
|
|
++ " -f FILE Import scanned directory from FILE\n"
|
|
|
|
|
++ " -0,-1,-2 UI to use when scanning (0=none,2=full ncurses)\n"
|
|
|
|
|
++ " --si Use base 10 (SI) prefixes instead of base 2\n"
|
|
|
|
|
++ " --exclude PATTERN Exclude files that match PATTERN\n"
|
|
|
|
|
++ " -X, --exclude-from FILE Exclude files that match any pattern in FILE\n"
|
|
|
|
|
++ " -L, --follow-symlinks Follow symbolic links (excluding directories)\n"
|
|
|
|
|
++ " --exclude-caches Exclude directories containing CACHEDIR.TAG\n"
|
|
|
|
|
++ " --exclude-kernfs Exclude Linux pseudo filesystems (procfs,sysfs,cgroup,...)\n"
|
|
|
|
|
++ " --confirm-quit Confirm quitting ncdu\n"
|
|
|
|
|
++ " --color SCHEME Set color scheme (off/dark)\n"
|
|
|
|
|
) catch {};
|
2021-04-29 08:59:25 -08:00
|
|
|
std.process.exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-14 01:20:27 -08:00
|
|
|
|
|
|
|
|
fn spawnShell() void {
|
|
|
|
|
ui.deinit();
|
|
|
|
|
defer ui.init();
|
|
|
|
|
|
|
|
|
|
var path = std.ArrayList(u8).init(allocator);
|
|
|
|
|
defer path.deinit();
|
|
|
|
|
browser.dir_parents.fmtPath(true, &path);
|
|
|
|
|
|
|
|
|
|
var env = std.process.getEnvMap(allocator) catch unreachable;
|
|
|
|
|
defer env.deinit();
|
|
|
|
|
// NCDU_LEVEL can only count to 9, keeps the implementation simple.
|
|
|
|
|
if (env.get("NCDU_LEVEL")) |l|
|
|
|
|
|
env.put("NCDU_LEVEL", if (l.len == 0) "1" else switch (l[0]) {
|
|
|
|
|
'0'...'8' => @as([]const u8, &.{l[0]+1}),
|
|
|
|
|
'9' => "9",
|
|
|
|
|
else => "1"
|
|
|
|
|
}) catch unreachable
|
|
|
|
|
else
|
|
|
|
|
env.put("NCDU_LEVEL", "1") catch unreachable;
|
|
|
|
|
|
|
|
|
|
const shell = std.os.getenvZ("NCDU_SHELL") orelse std.os.getenvZ("SHELL") orelse "/bin/sh";
|
|
|
|
|
var child = std.ChildProcess.init(&.{shell}, allocator) catch unreachable;
|
|
|
|
|
defer child.deinit();
|
|
|
|
|
child.cwd = path.items;
|
|
|
|
|
child.env_map = &env;
|
|
|
|
|
|
|
|
|
|
const term = child.spawnAndWait() catch |e| blk: {
|
|
|
|
|
_ = std.io.getStdErr().writer().print(
|
|
|
|
|
"Error spawning shell: {s}\n\nPress enter to continue.\n",
|
|
|
|
|
.{ ui.errorString(e) }
|
|
|
|
|
) catch {};
|
|
|
|
|
_ = std.io.getStdIn().reader().skipUntilDelimiterOrEof('\n') catch unreachable;
|
|
|
|
|
break :blk std.ChildProcess.Term{ .Exited = 0 };
|
|
|
|
|
};
|
|
|
|
|
if (term != .Exited) {
|
|
|
|
|
const n = switch (term) {
|
|
|
|
|
.Exited => "status",
|
|
|
|
|
.Signal => "signal",
|
|
|
|
|
.Stopped => "stopped",
|
|
|
|
|
.Unknown => "unknown",
|
|
|
|
|
};
|
|
|
|
|
const v = switch (term) {
|
|
|
|
|
.Exited => |v| v,
|
|
|
|
|
.Signal => |v| v,
|
|
|
|
|
.Stopped => |v| v,
|
|
|
|
|
.Unknown => |v| v,
|
|
|
|
|
};
|
|
|
|
|
_ = std.io.getStdErr().writer().print(
|
|
|
|
|
"Shell returned with {s} code {}.\n\nPress enter to continue.\n", .{ n, v }
|
|
|
|
|
) catch {};
|
|
|
|
|
_ = std.io.getStdIn().reader().skipUntilDelimiterOrEof('\n') catch unreachable;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-05-03 04:41:48 -08:00
|
|
|
fn readExcludeFile(path: []const u8) !void {
|
|
|
|
|
const f = try std.fs.cwd().openFile(path, .{});
|
|
|
|
|
defer f.close();
|
|
|
|
|
var rd = std.io.bufferedReader(f.reader()).reader();
|
|
|
|
|
var buf = std.ArrayList(u8).init(allocator);
|
|
|
|
|
while (true) {
|
|
|
|
|
rd.readUntilDelimiterArrayList(&buf, '\n', 4096)
|
|
|
|
|
catch |e| if (e != error.EndOfStream) return e else if (buf.items.len == 0) break;
|
|
|
|
|
if (buf.items.len > 0)
|
2021-05-29 03:18:21 -08:00
|
|
|
config.exclude_patterns.append(buf.toOwnedSliceSentinel(0) catch unreachable) catch unreachable;
|
2021-05-03 04:41:48 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-29 09:22:00 -08:00
|
|
|
pub fn main() void {
|
2021-05-02 22:01:09 -08:00
|
|
|
// Grab thousands_sep from the current C locale.
|
|
|
|
|
_ = c.setlocale(c.LC_ALL, "");
|
|
|
|
|
if (c.localeconv()) |locale| {
|
|
|
|
|
if (locale.*.thousands_sep) |sep| {
|
|
|
|
|
const span = std.mem.spanZ(sep);
|
|
|
|
|
if (span.len > 0)
|
|
|
|
|
config.thousands_sep = span;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 08:59:25 -08:00
|
|
|
var args = Args(std.process.ArgIteratorPosix).init(std.process.ArgIteratorPosix.init());
|
|
|
|
|
var scan_dir: ?[]const u8 = null;
|
2021-05-29 00:51:17 -08:00
|
|
|
var import_file: ?[:0]const u8 = null;
|
|
|
|
|
var export_file: ?[:0]const u8 = null;
|
2021-05-09 10:58:17 -08:00
|
|
|
var has_scan_ui = false;
|
2021-04-29 08:59:25 -08:00
|
|
|
_ = args.next(); // program name
|
|
|
|
|
while (args.next()) |opt| {
|
|
|
|
|
if (!opt.opt) {
|
|
|
|
|
// XXX: ncdu 1.x doesn't error, it just silently ignores all but the last argument.
|
2021-05-02 22:01:09 -08:00
|
|
|
if (scan_dir != null) ui.die("Multiple directories given, see ncdu -h for help.\n", .{});
|
2021-04-29 08:59:25 -08:00
|
|
|
scan_dir = opt.val;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (opt.is("-h") or opt.is("-?") or opt.is("--help")) help()
|
|
|
|
|
else if(opt.is("-v") or opt.is("-V") or opt.is("--version")) version()
|
2021-05-07 02:01:00 -08:00
|
|
|
else if(opt.is("-q")) config.update_delay = 2*std.time.ns_per_s
|
2021-04-29 08:59:25 -08:00
|
|
|
else if(opt.is("-x")) config.same_fs = true
|
|
|
|
|
else if(opt.is("-e")) config.extended = true
|
|
|
|
|
else if(opt.is("-r") and config.read_only) config.can_shell = false
|
|
|
|
|
else if(opt.is("-r")) config.read_only = true
|
2021-05-09 10:58:17 -08:00
|
|
|
else if(opt.is("-0")) { has_scan_ui = true; config.scan_ui = .none; }
|
|
|
|
|
else if(opt.is("-1")) { has_scan_ui = true; config.scan_ui = .line; }
|
|
|
|
|
else if(opt.is("-2")) { has_scan_ui = true; config.scan_ui = .full; }
|
2021-05-29 00:51:17 -08:00
|
|
|
else if(opt.is("-o") and export_file != null) ui.die("The -o flag can only be given once.\n", .{})
|
2021-05-09 10:58:17 -08:00
|
|
|
else if(opt.is("-o")) export_file = args.arg()
|
2021-05-29 00:51:17 -08:00
|
|
|
else if(opt.is("-f") and import_file != null) ui.die("The -f flag can only be given once.\n", .{})
|
2021-05-09 10:58:17 -08:00
|
|
|
else if(opt.is("-f")) import_file = args.arg()
|
2021-04-29 08:59:25 -08:00
|
|
|
else if(opt.is("--si")) config.si = true
|
|
|
|
|
else if(opt.is("-L") or opt.is("--follow-symlinks")) config.follow_symlinks = true
|
2021-05-29 03:18:21 -08:00
|
|
|
else if(opt.is("--exclude")) config.exclude_patterns.append(args.arg()) catch unreachable
|
2021-05-03 04:41:48 -08:00
|
|
|
else if(opt.is("-X") or opt.is("--exclude-from")) {
|
|
|
|
|
const arg = args.arg();
|
2021-05-29 09:22:00 -08:00
|
|
|
readExcludeFile(arg) catch |e| ui.die("Error reading excludes from {s}: {s}.\n", .{ arg, ui.errorString(e) });
|
2021-05-03 04:41:48 -08:00
|
|
|
} else if(opt.is("--exclude-caches")) config.exclude_caches = true
|
2021-04-29 08:59:25 -08:00
|
|
|
else if(opt.is("--exclude-kernfs")) config.exclude_kernfs = true
|
|
|
|
|
else if(opt.is("--confirm-quit")) config.confirm_quit = true
|
2021-05-02 22:01:09 -08:00
|
|
|
else if(opt.is("--color")) {
|
|
|
|
|
const val = args.arg();
|
|
|
|
|
if (std.mem.eql(u8, val, "off")) config.ui_color = .off
|
|
|
|
|
else if (std.mem.eql(u8, val, "dark")) config.ui_color = .dark
|
|
|
|
|
else ui.die("Unknown --color option: {s}.\n", .{val});
|
|
|
|
|
} else ui.die("Unrecognized option '{s}'.\n", .{opt.val});
|
2021-04-29 08:59:25 -08:00
|
|
|
}
|
|
|
|
|
|
2021-05-03 04:41:48 -08:00
|
|
|
if (std.builtin.os.tag != .linux and config.exclude_kernfs)
|
|
|
|
|
ui.die("The --exclude-kernfs tag is currently only supported on Linux.\n", .{});
|
|
|
|
|
|
2021-05-12 01:04:06 -08:00
|
|
|
const out_tty = std.io.getStdOut().isTty();
|
2021-05-29 00:51:17 -08:00
|
|
|
const in_tty = std.io.getStdIn().isTty();
|
2021-05-09 10:58:17 -08:00
|
|
|
if (!has_scan_ui) {
|
|
|
|
|
if (export_file) |f| {
|
2021-05-12 01:04:06 -08:00
|
|
|
if (!out_tty or std.mem.eql(u8, f, "-")) config.scan_ui = .none
|
2021-05-09 10:58:17 -08:00
|
|
|
else config.scan_ui = .line;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-29 00:51:17 -08:00
|
|
|
if (!in_tty and import_file == null and export_file == null)
|
|
|
|
|
ui.die("Standard input is not a TTY. Did you mean to import a file using '-f -'?\n", .{});
|
|
|
|
|
config.nc_tty = !in_tty or (if (export_file) |f| std.mem.eql(u8, f, "-") else false);
|
2021-05-09 10:58:17 -08:00
|
|
|
|
2021-05-29 09:22:00 -08:00
|
|
|
event_delay_timer = std.time.Timer.start() catch unreachable;
|
2021-05-09 10:58:17 -08:00
|
|
|
defer ui.deinit();
|
2021-05-07 02:01:00 -08:00
|
|
|
|
2021-05-12 01:04:06 -08:00
|
|
|
var out_file = if (export_file) |f| (
|
|
|
|
|
if (std.mem.eql(u8, f, "-")) std.io.getStdOut()
|
2021-05-29 09:22:00 -08:00
|
|
|
else std.fs.cwd().createFileZ(f, .{})
|
|
|
|
|
catch |e| ui.die("Error opening export file: {s}.\n", .{ui.errorString(e)})
|
2021-05-12 01:04:06 -08:00
|
|
|
) else null;
|
|
|
|
|
|
2021-07-13 03:33:38 -08:00
|
|
|
if (import_file) |f| {
|
|
|
|
|
scan.importRoot(f, out_file);
|
|
|
|
|
config.imported = true;
|
|
|
|
|
} else scan.scanRoot(scan_dir orelse ".", out_file)
|
|
|
|
|
catch |e| ui.die("Error opening directory: {s}.\n", .{ui.errorString(e)});
|
2021-05-12 01:04:06 -08:00
|
|
|
if (out_file != null) return;
|
2021-05-01 00:39:57 -08:00
|
|
|
|
2021-05-09 10:58:17 -08:00
|
|
|
config.scan_ui = .full; // in case we're refreshing from the UI, always in full mode.
|
2021-05-02 22:01:09 -08:00
|
|
|
ui.init();
|
2021-05-09 10:58:17 -08:00
|
|
|
state = .browse;
|
2021-07-16 06:13:25 -08:00
|
|
|
browser.loadDir(null);
|
2021-05-06 09:15:47 -08:00
|
|
|
|
2021-07-13 03:33:38 -08:00
|
|
|
while (true) {
|
2021-07-14 01:20:27 -08:00
|
|
|
switch (state) {
|
|
|
|
|
.refresh => {
|
|
|
|
|
scan.scan();
|
|
|
|
|
state = .browse;
|
2021-07-16 06:13:25 -08:00
|
|
|
browser.loadDir(null);
|
2021-07-14 01:20:27 -08:00
|
|
|
},
|
|
|
|
|
.shell => {
|
|
|
|
|
spawnShell();
|
|
|
|
|
state = .browse;
|
|
|
|
|
},
|
2021-07-16 06:13:25 -08:00
|
|
|
.delete => {
|
|
|
|
|
const next = delete.delete();
|
|
|
|
|
state = .browse;
|
|
|
|
|
browser.loadDir(next);
|
|
|
|
|
},
|
2021-07-14 01:20:27 -08:00
|
|
|
else => handleEvent(true, false)
|
|
|
|
|
}
|
2021-07-13 03:33:38 -08:00
|
|
|
}
|
2021-05-07 02:01:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var event_delay_timer: std.time.Timer = undefined;
|
2021-05-02 22:01:09 -08:00
|
|
|
|
2021-05-07 02:01:00 -08:00
|
|
|
// Draw the screen and handle the next input event.
|
|
|
|
|
// In non-blocking mode, screen drawing is rate-limited to keep this function fast.
|
2021-05-29 03:18:21 -08:00
|
|
|
pub fn handleEvent(block: bool, force_draw: bool) void {
|
2021-05-07 02:01:00 -08:00
|
|
|
if (block or force_draw or event_delay_timer.read() > config.update_delay) {
|
2021-05-09 10:58:17 -08:00
|
|
|
if (ui.inited) _ = ui.c.erase();
|
|
|
|
|
switch (state) {
|
2021-07-13 03:33:38 -08:00
|
|
|
.scan, .refresh => scan.draw(),
|
2021-05-29 03:18:21 -08:00
|
|
|
.browse => browser.draw(),
|
2021-07-16 06:13:25 -08:00
|
|
|
.delete => delete.draw(),
|
2021-07-14 01:20:27 -08:00
|
|
|
.shell => unreachable,
|
2021-05-09 10:58:17 -08:00
|
|
|
}
|
|
|
|
|
if (ui.inited) _ = ui.c.refresh();
|
2021-05-07 02:01:00 -08:00
|
|
|
event_delay_timer.reset();
|
|
|
|
|
}
|
2021-05-09 10:58:17 -08:00
|
|
|
if (!ui.inited) {
|
|
|
|
|
std.debug.assert(!block);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-05-02 22:01:09 -08:00
|
|
|
|
2021-05-23 07:18:49 -08:00
|
|
|
var firstblock = block;
|
|
|
|
|
while (true) {
|
|
|
|
|
var ch = ui.getch(firstblock);
|
|
|
|
|
if (ch == 0) return;
|
|
|
|
|
if (ch == -1) return handleEvent(firstblock, true);
|
|
|
|
|
switch (state) {
|
2021-07-13 03:33:38 -08:00
|
|
|
.scan, .refresh => scan.keyInput(ch),
|
2021-05-29 03:18:21 -08:00
|
|
|
.browse => browser.keyInput(ch),
|
2021-07-16 06:13:25 -08:00
|
|
|
.delete => delete.keyInput(ch),
|
2021-07-14 01:20:27 -08:00
|
|
|
.shell => unreachable,
|
2021-05-23 07:18:49 -08:00
|
|
|
}
|
|
|
|
|
firstblock = false;
|
2021-05-09 10:58:17 -08:00
|
|
|
}
|
2021-04-29 02:48:45 -08:00
|
|
|
}
|
2021-04-29 08:59:25 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
test "argument parser" {
|
|
|
|
|
const L = struct {
|
|
|
|
|
lst: []const [:0]const u8,
|
|
|
|
|
idx: usize = 0,
|
|
|
|
|
fn next(s: *@This()) ?[:0]const u8 {
|
|
|
|
|
if (s.idx == s.lst.len) return null;
|
|
|
|
|
defer s.idx += 1;
|
|
|
|
|
return s.lst[s.idx];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
const lst = [_][:0]const u8{ "a", "-abcd=e", "--opt1=arg1", "--opt2", "arg2", "-x", "foo", "", "--", "--arg", "", "-", };
|
|
|
|
|
const l = L{ .lst = &lst };
|
|
|
|
|
const T = struct {
|
|
|
|
|
a: Args(L),
|
2021-05-24 01:02:26 -08:00
|
|
|
fn opt(self: *@This(), isopt: bool, val: []const u8) !void {
|
2021-04-29 08:59:25 -08:00
|
|
|
const o = self.a.next().?;
|
2021-05-24 01:02:26 -08:00
|
|
|
try std.testing.expectEqual(isopt, o.opt);
|
|
|
|
|
try std.testing.expectEqualStrings(val, o.val);
|
|
|
|
|
try std.testing.expectEqual(o.is(val), isopt);
|
2021-04-29 08:59:25 -08:00
|
|
|
}
|
2021-05-24 01:02:26 -08:00
|
|
|
fn arg(self: *@This(), val: []const u8) !void {
|
|
|
|
|
try std.testing.expectEqualStrings(val, self.a.arg());
|
2021-04-29 08:59:25 -08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
var t = T{ .a = Args(L).init(l) };
|
2021-05-24 01:02:26 -08:00
|
|
|
try t.opt(false, "a");
|
|
|
|
|
try t.opt(true, "-a");
|
|
|
|
|
try t.opt(true, "-b");
|
|
|
|
|
try t.arg("cd=e");
|
|
|
|
|
try t.opt(true, "--opt1");
|
|
|
|
|
try t.arg("arg1");
|
|
|
|
|
try t.opt(true, "--opt2");
|
|
|
|
|
try t.arg("arg2");
|
|
|
|
|
try t.opt(true, "-x");
|
|
|
|
|
try t.arg("foo");
|
|
|
|
|
try t.opt(false, "");
|
|
|
|
|
try t.opt(false, "--arg");
|
|
|
|
|
try t.opt(false, "");
|
|
|
|
|
try t.opt(false, "-");
|
|
|
|
|
try std.testing.expectEqual(t.a.next(), null);
|
2021-04-29 08:59:25 -08:00
|
|
|
}
|