2022-10-29 23:15:29 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022 Jim Ramsay
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "ctl-client.h"
|
2022-12-06 12:07:22 +00:00
|
|
|
#include "option-parser.h"
|
2022-10-29 23:15:29 +00:00
|
|
|
|
|
|
|
#define MAYBE_UNUSED __attribute__((unused))
|
|
|
|
|
|
|
|
struct wayvncctl {
|
|
|
|
bool do_exit;
|
|
|
|
|
|
|
|
struct ctl_client* ctl;
|
|
|
|
};
|
|
|
|
|
2022-12-06 12:07:22 +00:00
|
|
|
static int wayvncctl_usage(FILE* stream, struct option_parser* options, int rc)
|
2022-10-29 23:15:29 +00:00
|
|
|
{
|
|
|
|
static const char* usage =
|
|
|
|
"Usage: wayvncctl [options] [command [--param1=value1 ...]]\n"
|
|
|
|
"\n"
|
2022-11-06 02:42:24 +00:00
|
|
|
"Connects to and interacts with a running wayvnc instance."
|
2022-10-29 23:15:29 +00:00
|
|
|
"\n"
|
2022-12-06 12:07:22 +00:00
|
|
|
"Try 'wayvncctl help' for a list of available commands.";
|
|
|
|
fprintf(stream, "%s\n\n", usage);
|
|
|
|
option_parser_print_options(options, stream);
|
2022-10-29 23:15:29 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int show_version(void)
|
|
|
|
{
|
|
|
|
printf("wayvnc: %s\n", wayvnc_version);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
struct wayvncctl self = { 0 };
|
|
|
|
|
|
|
|
bool verbose = false;
|
|
|
|
const char* socket_path = NULL;
|
2022-11-15 09:57:26 +00:00
|
|
|
int wait_for_socket = 0;
|
2022-10-29 23:15:29 +00:00
|
|
|
|
2022-11-05 13:53:17 +00:00
|
|
|
unsigned flags = 0;
|
|
|
|
|
2022-12-06 12:07:22 +00:00
|
|
|
static const struct wv_option opts[] = {
|
|
|
|
{ 'S', "socket", "<path>",
|
|
|
|
"Control socket path." },
|
|
|
|
{ 'w', "wait", NULL,
|
|
|
|
"Wait for wayvnc to start up if it's not already running." },
|
|
|
|
{ 'r', "reconnect", NULL,
|
|
|
|
"If disconnected while waiting for events, wait for wayvnc to restart." },
|
|
|
|
{ 'j', "json", NULL,
|
|
|
|
"Output json on stdout." },
|
|
|
|
{ 'V', "version", NULL,
|
|
|
|
"Show version info." },
|
|
|
|
{ 'v', "verbose", NULL,
|
|
|
|
"Be more verbose." },
|
|
|
|
{ 'h', "help", NULL,
|
|
|
|
"Get help (this text)." },
|
|
|
|
{ '\0', NULL, NULL, NULL }
|
2022-10-29 23:15:29 +00:00
|
|
|
};
|
|
|
|
|
2022-12-06 12:07:22 +00:00
|
|
|
struct option_parser option_parser;
|
|
|
|
option_parser_init(&option_parser, opts,
|
|
|
|
OPTION_PARSER_STOP_ON_FIRST_NONOPTION);
|
|
|
|
|
2022-10-29 23:15:29 +00:00
|
|
|
while (1) {
|
2022-12-06 12:07:22 +00:00
|
|
|
int c = option_parser_getopt(&option_parser, argc, argv);
|
2022-10-29 23:15:29 +00:00
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case 'S':
|
|
|
|
socket_path = optarg;
|
|
|
|
break;
|
2022-11-15 09:57:26 +00:00
|
|
|
case 'w':
|
|
|
|
wait_for_socket = -1;
|
|
|
|
break;
|
2022-11-16 00:57:16 +00:00
|
|
|
case 'r':
|
|
|
|
flags |= RECONNECT;
|
|
|
|
break;
|
2022-11-05 13:53:17 +00:00
|
|
|
case 'j':
|
|
|
|
flags |= PRINT_JSON;
|
|
|
|
break;
|
2022-10-29 23:15:29 +00:00
|
|
|
case 'v':
|
|
|
|
verbose = true;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
return show_version();
|
|
|
|
case 'h':
|
2022-12-06 12:07:22 +00:00
|
|
|
return wayvncctl_usage(stdout, &option_parser, 0);
|
2022-10-29 23:15:29 +00:00
|
|
|
default:
|
2022-12-06 12:07:22 +00:00
|
|
|
return wayvncctl_usage(stderr, &option_parser, 1);
|
2022-10-29 23:15:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
2022-11-22 19:02:09 +00:00
|
|
|
if (argc <= 0)
|
2022-12-06 12:07:22 +00:00
|
|
|
return wayvncctl_usage(stderr, &option_parser, 1);
|
2022-10-29 23:15:29 +00:00
|
|
|
argv = &argv[optind];
|
|
|
|
|
|
|
|
ctl_client_debug_log(verbose);
|
2022-11-15 09:57:26 +00:00
|
|
|
|
2022-10-29 23:15:29 +00:00
|
|
|
self.ctl = ctl_client_new(socket_path, &self);
|
|
|
|
if (!self.ctl)
|
|
|
|
goto ctl_client_failure;
|
|
|
|
|
2022-11-15 09:57:26 +00:00
|
|
|
int result = ctl_client_connect(self.ctl, wait_for_socket);
|
|
|
|
if (result != 0)
|
|
|
|
goto socket_failure;
|
|
|
|
|
|
|
|
result = ctl_client_run_command(self.ctl, argc, argv, flags);
|
2022-10-29 23:15:29 +00:00
|
|
|
|
2022-11-15 09:57:26 +00:00
|
|
|
socket_failure:
|
2022-10-29 23:15:29 +00:00
|
|
|
ctl_client_destroy(self.ctl);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
ctl_client_failure:
|
|
|
|
return 1;
|
|
|
|
}
|