2004-06-18 00:22:37 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
#include "ioline.h"
|
|
|
|
|
#include "cli.h"
|
|
|
|
|
#include "module.h"
|
|
|
|
|
#include "sink.h"
|
|
|
|
|
#include "source.h"
|
|
|
|
|
#include "client.h"
|
2004-06-18 17:12:50 +00:00
|
|
|
#include "sinkinput.h"
|
|
|
|
|
#include "sourceoutput.h"
|
2004-06-18 00:22:37 +00:00
|
|
|
|
|
|
|
|
struct cli {
|
|
|
|
|
struct core *core;
|
|
|
|
|
struct ioline *line;
|
|
|
|
|
|
|
|
|
|
void (*eof_callback)(struct cli *c, void *userdata);
|
|
|
|
|
void *userdata;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void line_callback(struct ioline *line, const char *s, void *userdata);
|
|
|
|
|
|
|
|
|
|
struct cli* cli_new(struct core *core, struct iochannel *io) {
|
|
|
|
|
struct cli *c;
|
|
|
|
|
assert(io);
|
|
|
|
|
|
|
|
|
|
c = malloc(sizeof(struct cli));
|
|
|
|
|
assert(c);
|
|
|
|
|
c->core = core;
|
|
|
|
|
c->line = ioline_new(io);
|
|
|
|
|
assert(c->line);
|
|
|
|
|
|
|
|
|
|
c->userdata = NULL;
|
|
|
|
|
c->eof_callback = NULL;
|
|
|
|
|
|
|
|
|
|
ioline_set_callback(c->line, line_callback, c);
|
2004-06-18 17:12:50 +00:00
|
|
|
ioline_puts(c->line, "Welcome to polypaudio! Use \"help\" for usage information.\n> ");
|
2004-06-18 00:22:37 +00:00
|
|
|
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cli_free(struct cli *c) {
|
|
|
|
|
assert(c);
|
|
|
|
|
ioline_free(c->line);
|
|
|
|
|
free(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void line_callback(struct ioline *line, const char *s, void *userdata) {
|
|
|
|
|
struct cli *c = userdata;
|
|
|
|
|
char *t = NULL;
|
|
|
|
|
assert(line && c);
|
|
|
|
|
|
|
|
|
|
if (!s) {
|
|
|
|
|
fprintf(stderr, "CLI client exited\n");
|
|
|
|
|
if (c->eof_callback)
|
|
|
|
|
c->eof_callback(c, c->userdata);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!strcmp(s, "modules"))
|
|
|
|
|
ioline_puts(line, (t = module_list_to_string(c->core)));
|
|
|
|
|
else if (!strcmp(s, "sources"))
|
|
|
|
|
ioline_puts(line, (t = source_list_to_string(c->core)));
|
|
|
|
|
else if (!strcmp(s, "sinks"))
|
|
|
|
|
ioline_puts(line, (t = sink_list_to_string(c->core)));
|
|
|
|
|
else if (!strcmp(s, "clients"))
|
|
|
|
|
ioline_puts(line, (t = client_list_to_string(c->core)));
|
2004-06-18 17:12:50 +00:00
|
|
|
else if (!strcmp(s, "source_outputs"))
|
|
|
|
|
ioline_puts(line, (t = source_output_list_to_string(c->core)));
|
|
|
|
|
else if (!strcmp(s, "sink_inputs"))
|
|
|
|
|
ioline_puts(line, (t = sink_input_list_to_string(c->core)));
|
|
|
|
|
else if (!strcmp(s, "stat")) {
|
|
|
|
|
char txt[256];
|
|
|
|
|
snprintf(txt, sizeof(txt), "Memory blocks allocated: %u, total size: %u bytes.\n", memblock_count, memblock_total);
|
|
|
|
|
ioline_puts(line, txt);
|
|
|
|
|
} else if (!strcmp(s, "exit")) {
|
2004-06-18 00:22:37 +00:00
|
|
|
assert(c->core && c->core->mainloop);
|
|
|
|
|
mainloop_quit(c->core->mainloop, -1);
|
2004-06-18 17:12:50 +00:00
|
|
|
} else if (!strcmp(s, "help"))
|
|
|
|
|
ioline_puts(line,
|
|
|
|
|
"Available commands:\n"
|
|
|
|
|
" modules\t\tlist modules\n"
|
|
|
|
|
" sinks\t\tlist sinks\n"
|
|
|
|
|
" sources\t\tlist sources\n"
|
|
|
|
|
" clients\t\tlist clients\n"
|
|
|
|
|
" source_outputs\tlist source outputs\n"
|
|
|
|
|
" sink_inputs\t\tlist sink inputs\n"
|
|
|
|
|
" stat\t\tshow memblock statistics\n"
|
|
|
|
|
" exit\t\tterminate the daemon\n"
|
|
|
|
|
" help\t\tshow this help\n");
|
|
|
|
|
else if (*s)
|
2004-06-18 00:22:37 +00:00
|
|
|
ioline_puts(line, "Unknown command\n");
|
|
|
|
|
|
|
|
|
|
free(t);
|
|
|
|
|
ioline_puts(line, "> ");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cli_set_eof_callback(struct cli *c, void (*cb)(struct cli*c, void *userdata), void *userdata) {
|
|
|
|
|
assert(c && cb);
|
|
|
|
|
c->eof_callback = cb;
|
|
|
|
|
c->userdata = userdata;
|
|
|
|
|
}
|