mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2026-04-20 02:03:31 +00:00
Compare commits
3 Commits
v0.9.0
...
68c2022ad7
| Author | SHA1 | Date | |
|---|---|---|---|
| 68c2022ad7 | |||
| ff2970f4c5 | |||
| f60fc231b0 |
12
README.md
12
README.md
@@ -48,6 +48,18 @@ Launch banana GUI, set log level to DEBUG, set Strip 0 label to podmic then prin
|
||||
.\vmrcli.exe -kbanana -D1 strip[0].label=podmic strip[2].label
|
||||
```
|
||||
|
||||
#### `Quick Commands`
|
||||
|
||||
A short list of quick commands are available:
|
||||
|
||||
- `lock`: command.lock=1
|
||||
- `unlock`: command.lock=0
|
||||
- `show`: command.show=1
|
||||
- `hide`: command.show=0
|
||||
- `restart`: command.restart=1
|
||||
|
||||
They may be used in direct or interactive mode.
|
||||
|
||||
## `Interactive Mode`
|
||||
|
||||
Running the following command in Powershell:
|
||||
|
||||
@@ -18,6 +18,6 @@ void remove_last_part_of_path(char *fullpath);
|
||||
char *kind_as_string(char *s, int kind, int n);
|
||||
char *version_as_string(char *s, long v, int n);
|
||||
bool is_comment(char *s);
|
||||
struct quickcommand *command_in_quickcommands(const char *command, struct quickcommand *quickcommands, int n);
|
||||
struct quickcommand *command_in_quickcommands(const char *command, const struct quickcommand *quickcommands, int n);
|
||||
|
||||
#endif /* __UTIL_H__ */
|
||||
@@ -93,13 +93,13 @@ bool is_comment(char *s)
|
||||
* @return struct quickcommand* Pointer to the found quickcommand
|
||||
* May return NULL if quickcommand not found.
|
||||
*/
|
||||
struct quickcommand *command_in_quickcommands(const char *command_key, struct quickcommand *quickcommands, int n)
|
||||
struct quickcommand *command_in_quickcommands(const char *command_key, const struct quickcommand *quickcommands, int n)
|
||||
{
|
||||
for (int i = 0; i < n; i++)
|
||||
{
|
||||
if (strncmp(command_key, quickcommands[i].name, strlen(command_key)) == 0)
|
||||
if (strcmp(command_key, quickcommands[i].name) == 0)
|
||||
{
|
||||
return &quickcommands[i];
|
||||
return (struct quickcommand *)(quickcommands + i);
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
|
||||
19
src/vmrcli.c
19
src/vmrcli.c
@@ -34,6 +34,7 @@
|
||||
#define OPTSTR ":hk:msc:iID:v"
|
||||
#define MAX_LINE 512
|
||||
#define COUNT_OF(x) (sizeof(x) / sizeof(x[0]))
|
||||
#define DELIMITERS " \t;,"
|
||||
|
||||
/**
|
||||
* @enum The kind of values a get call may return.
|
||||
@@ -57,13 +58,6 @@ struct result
|
||||
} val;
|
||||
};
|
||||
|
||||
struct quickcommand quickcommands[] = {
|
||||
{.name = "lock", .fullcommand = "command.lock=1"},
|
||||
{.name = "unlock", .fullcommand = "command.lock=0"},
|
||||
{.name = "show", .fullcommand = "command.show=1"},
|
||||
{.name = "hide", .fullcommand = "command.show=0"},
|
||||
{.name = "restart", .fullcommand = "command.restart=1"}};
|
||||
|
||||
static bool vflag = false;
|
||||
|
||||
static void usage(void);
|
||||
@@ -278,11 +272,11 @@ void parse_input(PT_VMR vmr, char *input)
|
||||
|
||||
char *token, *p;
|
||||
|
||||
token = strtok_r(input, " \t;,", &p);
|
||||
token = strtok_r(input, DELIMITERS, &p);
|
||||
while (token != NULL)
|
||||
{
|
||||
parse_command(vmr, token);
|
||||
token = strtok_r(NULL, " \t;,", &p);
|
||||
token = strtok_r(NULL, DELIMITERS, &p);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -298,6 +292,13 @@ void parse_command(PT_VMR vmr, char *command)
|
||||
{
|
||||
log_debug("Parsing %s", command);
|
||||
|
||||
static const struct quickcommand quickcommands[] = {
|
||||
{.name = "lock", .fullcommand = "command.lock=1"},
|
||||
{.name = "unlock", .fullcommand = "command.lock=0"},
|
||||
{.name = "show", .fullcommand = "command.show=1"},
|
||||
{.name = "hide", .fullcommand = "command.show=0"},
|
||||
{.name = "restart", .fullcommand = "command.restart=1"}};
|
||||
|
||||
struct quickcommand *qc_ptr = command_in_quickcommands(command, quickcommands, (int)COUNT_OF(quickcommands));
|
||||
if (qc_ptr != NULL)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user