1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#include "command.h"
#include "buffer.h"
#include "buffers.h"
#include "hash.h"
#include "hashmap.h"
#include "minibuffer.h"
#include <string.h>
struct commands command_registry_create(uint32_t capacity) {
struct commands cmds = {0};
HASHMAP_INIT(&cmds.commands, capacity, hash_name);
return cmds;
}
void command_registry_destroy(struct commands *commands) {
HASHMAP_DESTROY(&commands->commands);
}
uint32_t register_command(struct commands *commands, struct command command) {
uint32_t hash = 0;
HASHMAP_INSERT(&commands->commands, struct command_entry, command.name,
command, hash);
return hash;
}
void register_commands(struct commands *command_list, struct command *commands,
uint32_t ncommands) {
for (uint32_t ci = 0; ci < ncommands; ++ci) {
register_command(command_list, commands[ci]);
}
}
struct command *lookup_command(struct commands *command_list,
const char *name) {
HASHMAP_GET(&command_list->commands, struct command_entry, name,
struct command * command);
return command;
}
struct command *lookup_command_by_hash(struct commands *commands,
uint32_t hash) {
HASHMAP_GET_BY_HASH(&commands->commands, struct command_entry, hash,
struct command * command);
return command;
}
int32_t execute_command(struct command *command, struct commands *commands,
struct window *active_window, struct buffers *buffers,
int argc, const char *argv[]) {
return command->fn(
(struct command_ctx){
.buffers = buffers,
.active_window = active_window,
.userdata = command->userdata,
.commands = commands,
.self = command,
.saved_argv = {0},
.saved_argc = 0,
},
argc, argv);
}
void commands_for_each(struct commands *commands,
void (*callback)(struct command *, void *),
void *userdata) {
HASHMAP_FOR_EACH(&commands->commands, struct command_entry * entry) {
callback(&entry->value, userdata);
}
}
void command_ctx_push_arg(struct command_ctx *ctx, const char *argv) {
if (ctx->saved_argc < 64) {
ctx->saved_argv[ctx->saved_argc] = strdup(argv);
++ctx->saved_argc;
}
}
void command_ctx_free(struct command_ctx *ctx) {
for (uint32_t i = 0; i < ctx->saved_argc; ++i) {
free((char *)ctx->saved_argv[i]);
}
ctx->saved_argc = 0;
}
|