2005-11-18 18:54:58 +03:00
|
|
|
/*
|
|
|
|
* (C)opyright MMIV-MMV Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "ixp.h"
|
|
|
|
|
|
|
|
static IXPClient *c;
|
2005-12-05 01:45:59 +03:00
|
|
|
static int exit_code = 0;
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
static char *version[] = {
|
2005-12-12 17:16:23 +03:00
|
|
|
"wmiir - window manager improved remote - " VERSION "\n"
|
2005-12-05 01:45:59 +03:00
|
|
|
" (C)opyright MMIV-MMV Anselm R. Garbe\n", 0
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
static void usage()
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s",
|
2005-12-12 17:16:23 +03:00
|
|
|
"usage: wmiir [-s <socket file>] [-v] <action> <action_arg> [...]\n"
|
2005-12-18 18:55:06 +03:00
|
|
|
" -s socket file (default: $WMIIR_SOCKET)\n"
|
2005-12-05 01:45:59 +03:00
|
|
|
" -f read actions from stdin\n"
|
|
|
|
" -v version info\n"
|
|
|
|
"actions:\n"
|
|
|
|
" create <file> [<content>] -- creates and optionally writes content to a file\n"
|
|
|
|
" write <file> <content> -- writes content to a file\n"
|
|
|
|
" read <directory/file> -- reads file or directory contents\n"
|
|
|
|
" remove <directory/file> -- removes file or directory, use with care!\n");
|
2005-11-18 18:54:58 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
static void perform(char *action, char *file, char *content)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-05 01:45:59 +03:00
|
|
|
size_t out_len = 0;
|
|
|
|
char output[2050];
|
|
|
|
int crt, fd = -1;
|
2005-11-18 18:54:58 +03:00
|
|
|
|
|
|
|
if (!action)
|
|
|
|
return;
|
|
|
|
|
|
|
|
crt = !strncmp(action, "create", 7);
|
|
|
|
if (!strncmp(action, "write", 6) || crt) {
|
|
|
|
if (!file)
|
|
|
|
return;
|
|
|
|
/* create file first */
|
|
|
|
if (crt) {
|
|
|
|
c->create(c, file);
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: create %s: %s\n", file,
|
2005-12-05 01:45:59 +03:00
|
|
|
c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!content)
|
|
|
|
return;
|
|
|
|
fd = c->open(c, file);
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: open %s: %s\n", file, c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
c->write(c, fd, content, strlen(content));
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: write %s: %s\n", file,
|
2005-12-05 01:45:59 +03:00
|
|
|
c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
if (!strncmp(c->errstr, DEAD_SERVER, strlen(DEAD_SERVER) + 1))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (!strncmp(action, "read", 5)) {
|
|
|
|
if (!file)
|
|
|
|
return;
|
|
|
|
fd = c->open(c, file);
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: open %s: %s\n", file, c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
out_len = c->read(c, fd, output, 2048);
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: read %s: %s\n", file,
|
2005-12-05 01:45:59 +03:00
|
|
|
c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
if (!strncmp
|
2005-12-05 01:45:59 +03:00
|
|
|
(c->errstr, DEAD_SERVER, strlen(DEAD_SERVER) + 1))
|
2005-11-18 18:54:58 +03:00
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
2005-12-08 03:46:45 +03:00
|
|
|
output[out_len] = 0;
|
2005-11-18 18:54:58 +03:00
|
|
|
fprintf(stdout, "%s", output);
|
|
|
|
}
|
|
|
|
while (out_len == 2048);
|
|
|
|
fprintf(stdout, "%s", "\n");
|
|
|
|
} else if (!strncmp(action, "remove", 7)) {
|
|
|
|
if (!file)
|
|
|
|
return;
|
|
|
|
c->remove(c, file);
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: remove %s: %s\n", file,
|
2005-12-05 01:45:59 +03:00
|
|
|
c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fd != -1) {
|
|
|
|
c->close(c, fd);
|
|
|
|
if (c->errstr) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: close %s: %s\n", file,
|
2005-12-05 01:45:59 +03:00
|
|
|
c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
int main(int argc, char *argv[])
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-05 01:45:59 +03:00
|
|
|
int i = 0, read_stdin = 0;
|
|
|
|
char line[4096], *p;
|
2005-12-18 18:55:06 +03:00
|
|
|
char *sockfile = getenv("WMIIR_SOCKET");
|
2005-11-18 18:54:58 +03:00
|
|
|
|
|
|
|
/* command line args */
|
|
|
|
if (argc > 1) {
|
|
|
|
for (i = 1; (i < argc) && (argv[i][0] == '-'); i++) {
|
|
|
|
switch (argv[i][1]) {
|
|
|
|
case 'v':
|
|
|
|
fprintf(stderr, "%s", version[0]);
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
if (i + 1 < argc) {
|
|
|
|
sockfile = argv[++i];
|
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
read_stdin = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((argc <= 1) || (!read_stdin && (i + 1) >= argc)) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "%s", "wmiir: arguments: ");
|
2005-11-18 18:54:58 +03:00
|
|
|
for (i = 1; i < argc; i++)
|
|
|
|
fprintf(stderr, "%s, ", argv[i]);
|
|
|
|
fprintf(stderr, "%s", "\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
if (!sockfile) {
|
|
|
|
fprintf(stderr, "%s",
|
2005-12-18 18:55:06 +03:00
|
|
|
"wmiir: error: WMIIR_SOCKET environment not set\n");
|
2005-11-18 18:54:58 +03:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
/* open socket */
|
2005-12-05 22:38:03 +03:00
|
|
|
if (!(c = init_ixp_client(sockfile))) {
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: cannot connect to server '%s'\n", sockfile);
|
2005-11-18 18:54:58 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (read_stdin) {
|
|
|
|
/* simple shell */
|
2005-12-05 01:45:59 +03:00
|
|
|
char *action, *file, *content;
|
2005-11-18 18:54:58 +03:00
|
|
|
while (fgets(line, 4096, stdin)) {
|
|
|
|
p = line;
|
2005-12-08 03:46:45 +03:00
|
|
|
while (*p != 0 && (*p == ' ' || *p == '\t'))
|
2005-11-18 18:54:58 +03:00
|
|
|
p++;
|
2005-12-08 03:46:45 +03:00
|
|
|
if (*p == 0)
|
2005-12-05 01:45:59 +03:00
|
|
|
continue; /* empty line */
|
2005-11-18 18:54:58 +03:00
|
|
|
if (strncmp(p, "create ", 7) &&
|
2005-12-05 01:45:59 +03:00
|
|
|
strncmp(p, "write ", 6) &&
|
|
|
|
strncmp(p, "read ", 5) && strncmp(p, "remove ", 7))
|
2005-11-18 18:54:58 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
action = p;
|
2005-12-08 03:46:45 +03:00
|
|
|
while (*p != 0 && *p != ' ' && *p != '\t' && *p != '\n')
|
2005-11-18 18:54:58 +03:00
|
|
|
p++;
|
2005-12-08 03:46:45 +03:00
|
|
|
if (*p == 0 || *p == '\n')
|
2005-12-05 01:45:59 +03:00
|
|
|
continue; /* ignore bogus command */
|
2005-12-08 03:46:45 +03:00
|
|
|
*p = 0;
|
2005-11-18 18:54:58 +03:00
|
|
|
p++;
|
2005-12-08 03:46:45 +03:00
|
|
|
while (*p != 0 && (*p == ' ' || *p == '\t'))
|
2005-11-18 18:54:58 +03:00
|
|
|
p++;
|
2005-12-08 03:46:45 +03:00
|
|
|
if (*p == 0)
|
2005-12-05 01:45:59 +03:00
|
|
|
continue; /* ignore bogus command */
|
2005-11-18 18:54:58 +03:00
|
|
|
file = p;
|
2005-12-08 03:46:45 +03:00
|
|
|
while (*p != 0 && *p != ' ' && *p != '\t' && *p != '\n')
|
2005-11-18 18:54:58 +03:00
|
|
|
p++;
|
2005-12-08 03:46:45 +03:00
|
|
|
if (*p == 0 || *p == '\n') {
|
2005-11-18 18:54:58 +03:00
|
|
|
content = 0;
|
2005-12-08 03:46:45 +03:00
|
|
|
*p = 0;
|
2005-11-18 18:54:58 +03:00
|
|
|
} else {
|
2005-12-08 03:46:45 +03:00
|
|
|
*p = 0;
|
2005-11-18 18:54:58 +03:00
|
|
|
p++;
|
|
|
|
content = p;
|
|
|
|
}
|
2005-12-08 03:46:45 +03:00
|
|
|
if (file[0] == 0)
|
2005-11-18 18:54:58 +03:00
|
|
|
continue;
|
|
|
|
if (content) {
|
2005-12-05 01:45:59 +03:00
|
|
|
static size_t len;
|
2005-11-18 18:54:58 +03:00
|
|
|
if ((len = strlen(content)))
|
2005-12-08 03:46:45 +03:00
|
|
|
content[len - 1] = 0;
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
perform(action, file, content);
|
|
|
|
if (c->errstr)
|
2005-12-12 17:16:23 +03:00
|
|
|
fprintf(stderr, "wmiir: error: read %s: %s\n", file,
|
2005-12-05 01:45:59 +03:00
|
|
|
c->errstr);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
perform(argv[i], argv[i + 1], (i + 2) < argc ? argv[i + 2] : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->errstr) {
|
|
|
|
deinit_client(c);
|
|
|
|
exit_code = 1;
|
|
|
|
}
|
|
|
|
return exit_code;
|
|
|
|
}
|