fetch_ml/cli/src/commands/status.zig
Jeremie Fraeys a3b957dcc0
refactor(cli): Update build system and core infrastructure
- Makefile: Update build targets for native library integration
- build.zig: Add SQLite linking and native hash library support
- scripts/build_rsync.sh: Update rsync embedded binary build process
- scripts/build_sqlite.sh: Add SQLite constants generation script
- src/assets/README.md: Document embedded asset structure
- src/utils/rsync_embedded_binary.zig: Update for new build layout
2026-02-20 21:39:51 -05:00

151 lines
5.4 KiB
Zig

const std = @import("std");
const Config = @import("../config.zig").Config;
const ws = @import("../net/ws/client.zig");
const crypto = @import("../utils/crypto.zig");
const colors = @import("../utils/colors.zig");
const auth = @import("../utils/auth.zig");
const core = @import("../core.zig");
pub const StatusOptions = struct {
json: bool = false,
watch: bool = false,
tui: bool = false,
limit: ?usize = null,
watch_interval: u32 = 5,
};
pub fn run(allocator: std.mem.Allocator, args: []const []const u8) !void {
var options = StatusOptions{};
var i: usize = 0;
while (i < args.len) : (i += 1) {
const arg = args[i];
if (std.mem.eql(u8, arg, "--json")) {
options.json = true;
} else if (std.mem.eql(u8, arg, "--watch")) {
options.watch = true;
} else if (std.mem.eql(u8, arg, "--tui")) {
options.tui = true;
} else if (std.mem.eql(u8, arg, "--limit") and i + 1 < args.len) {
options.limit = try std.fmt.parseInt(usize, args[i + 1], 10);
i += 1;
} else if (std.mem.startsWith(u8, arg, "--watch-interval=")) {
options.watch_interval = try std.fmt.parseInt(u32, arg[17..], 10);
} else if (std.mem.eql(u8, arg, "--help")) {
return printUsage();
}
}
core.output.init(if (options.json) .json else .text);
const config = try Config.load(allocator);
defer {
var mut_config = config;
mut_config.deinit(allocator);
}
if (config.api_key.len == 0) {
return error.APIKeyMissing;
}
var user_context = auth.UserContext{
.name = try allocator.dupe(u8, "default"),
.admin = true,
.allocator = allocator,
};
defer user_context.deinit();
if (options.watch) {
try runWatchMode(allocator, config, user_context, options);
} else if (options.tui) {
try runTuiMode(allocator, config, args);
} else {
try runSingleStatus(allocator, config, user_context, options);
}
}
fn runSingleStatus(allocator: std.mem.Allocator, config: Config, user_context: auth.UserContext, options: StatusOptions) !void {
const api_key_hash = try crypto.hashApiKey(allocator, config.api_key);
defer allocator.free(api_key_hash);
const ws_url = try config.getWebSocketUrl(allocator);
defer allocator.free(ws_url);
var client = try ws.Client.connect(allocator, ws_url, config.api_key);
defer client.close();
try client.sendStatusRequest(api_key_hash);
try client.receiveAndHandleStatusResponse(allocator, user_context, options);
}
fn runWatchMode(allocator: std.mem.Allocator, config: Config, user_context: auth.UserContext, options: StatusOptions) !void {
core.output.info("Starting watch mode (interval: {d}s). Press Ctrl+C to stop.\n", .{options.watch_interval});
while (true) {
if (!options.json) {
core.output.info("\n=== FetchML Status - {s} ===", .{user_context.name});
}
try runSingleStatus(allocator, config, user_context, options);
if (!options.json) {
colors.printInfo("Next update in {d} seconds...\n", .{options.watch_interval});
}
std.Thread.sleep(options.watch_interval * std.time.ns_per_s);
}
}
fn runTuiMode(allocator: std.mem.Allocator, config: Config, args: []const []const u8) !void {
if (config.isLocalMode()) {
core.output.errorMsg("status", "TUI mode requires server mode. Use 'ml status' without --tui for local mode.");
return error.ServerOnlyFeature;
}
std.debug.print("Launching TUI via SSH...\n", .{});
// Build remote command that exports config via env vars and runs the TUI
var remote_cmd_buffer = std.ArrayList(u8){};
defer remote_cmd_buffer.deinit(allocator);
{
const writer = remote_cmd_buffer.writer(allocator);
try writer.print("cd {s} && ", .{config.worker_base});
try writer.print(
"FETCH_ML_CLI_HOST=\"{s}\" FETCH_ML_CLI_USER=\"{s}\" FETCH_ML_CLI_BASE=\"{s}\" ",
.{ config.worker_host, config.worker_user, config.worker_base },
);
try writer.print(
"FETCH_ML_CLI_PORT=\"{d}\" FETCH_ML_CLI_API_KEY=\"{s}\" ",
.{ config.worker_port, config.api_key },
);
try writer.writeAll("./bin/tui");
for (args) |arg| {
try writer.print(" {s}", .{arg});
}
}
const remote_cmd = try remote_cmd_buffer.toOwnedSlice(allocator);
defer allocator.free(remote_cmd);
// Execute SSH command to launch TUI
const ssh_args = &[_][]const u8{
"ssh",
config.worker_user,
config.worker_host,
remote_cmd,
};
var child = std.process.Child.init(ssh_args, allocator);
_ = try child.spawn();
_ = try child.wait();
}
fn printUsage() !void {
colors.printInfo("Usage: ml status [options]\n", .{});
colors.printInfo("\nOptions:\n", .{});
colors.printInfo(" --json Output structured JSON\n", .{});
colors.printInfo(" --watch Watch mode - continuously update status\n", .{});
colors.printInfo(" --tui Launch TUI monitor via SSH\n", .{});
colors.printInfo(" --limit <count> Limit number of results shown\n", .{});
colors.printInfo(" --watch-interval=<s> Set watch interval in seconds (default: 5)\n", .{});
colors.printInfo(" --help Show this help message\n", .{});
}