-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterm.hpp
43 lines (33 loc) · 1.02 KB
/
term.hpp
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
#pragma once
#include <cstdarg>
#include <cstdint>
#include <cstring>
#include "ms.h"
#include "system_ext.hpp"
namespace System {
class Term {
public:
template <typename ArgType>
class Command {
public:
Command(ArgType arg, int (*fun)(ArgType, int, char **), const char *name,
ms_item_t *dir = ms_get_bin_dir())
: type_(fun, arg) {
ms_file_init(&this->cmd_, name, this->Call, NULL, 0, false);
ms_item_add(&this->cmd_, dir);
}
static int Call(ms_item_t *cmd, int argc, char **argv) {
Command<ArgType> *self = om_container_of(cmd, Command<ArgType>, cmd_);
return self->type_.Port(&self->type_, argc, argv);
}
private:
ms_item_t cmd_;
TypeErasure<int, ArgType, int, char **> type_;
};
Term();
static ms_item_t *BinDir() { return ms_get_bin_dir(); }
static ms_item_t *EtcDir() { return ms_get_etc_dir(); }
static ms_item_t *DevDir() { return ms_get_dev_dir(); }
static ms_item_t *HomeDir() { return ms_get_userhome_dir(); }
};
} // namespace System