forked from biot/tokenline
-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
213 lines (166 loc) · 6.86 KB
/
README
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
Tokenline is a simple command-line shell interface, intended for systems
with few resources. It is available under the terms of the GNU GPL, version
2 or later.
FEATURES:
- Fully tokenizes input according to defined command hierarchy
- Supports integer, floating-point and string variables
- Uses no dynamic memory allocation
- Automatic context-sensitive help
- Automatic command completion, and partial command parsing
- Bash-like key bindings
- History
To integrate tokenline into your application, only the following source
files are needed:
tokenline.c
tokenline.h
The demo/ directory has a sample application that shows how to use
tokenline.
DEFINING A COMMAND HIERARCHY
All commands are defined as tokens (integers). To define a token, your
application should do something like this:
#define T_SHOW 1
The token integers must be between 1 and 9999. Defining the command keyword
associated with that token is done in a token dictionary:
t_token_dict dict[] = {
{ /* Dummy entry */ }
{ T_SHOW, "show" }
{ }
};
This table must be kept in the same order as the token integers, hence
the dummy entry: that skips entry 0.
Also note the { } entry in the table. Every table must be terminated with an
all-zero entry.
The following struct defines a single token:
typedef struct token {
int token;
uint16_t arg_type;
uint16_t flags;
struct token *subtokens;
char *help;
char *help_full;
} t_token;
Only the token field is required; all others are optional:
- arg_type
If the token takes an argument, The type of that argument should
be filled in here. The following are available:
T_ARG_UINT unsigned integer
T_ARG_FLOAT floating-point value
T_ARG_FREQ frequency, as float followed by khz, mhz or ghz
T_ARG_STRING freeform string, should be quoted if it contains spaces
T_ARG_TOKEN one of a set of tokens in the subtokens field
T_ARG_HELP special type for the "help" command, see below
- flags
Flags to change behavior on this token or its arguments. The currently
defined flags are:
T_FLAG_SUFFIX_TOKEN_DELIM_INT
This allows the token to be suffixed with TL_TOKEN_DELIMITER
(set to : by default), followed by an integer. If this syntax is
used, the result will show up on the parsed token list like this:
<T_ARG_TOKEN_SUFFIX_INT> (integer)
- subtokens
A t_token table contains a set of tokens to be used if this token is
used. For example, The T_SHOW token above might have a set of subtokens
selecting the thing to show (see example). When not used with T_ARG_TOKEN,
this table defines a new context.
- help
A freeform string which will be shown next to this token on help or
completion for the table in which this entry is found. It should not be
longer than 60 characters.
- help_full
A freeform string which will be shown when help for this specific token is
requested. This can be more than one line; it is intended to be a more
detailed help text than the summary provided by the "help" field.
The T_ARG_UINT type may be specified as a token in the table: this allows
free-standing numbers to be entered on the command line. See the demo
application's 'calc' command for an example.
Here's a complete example implementing a "show" command:
enum {
T_SHOW = 1,
T_HARDWARE,
T_VERSION,
T_HELP,
};
t_token_dict dict[] = {
{ /* Dummy entry */ },
{ T_SHOW, "show" },
{ T_HARDWARE, "hardware" },
{ T_VERSION, "version" },
{ T_HELP, "help" },
{ }
};
t_token tokens_show[] = {
{ T_HARDWARE, 0, NULL, "Show hardware information" },
{ T_VERSION, 0, NULL, "Show version" },
{ }
};
t_token tokens[] = {
{ T_SHOW, 0, tokens_show, "Show information" },
{ T_HELP, T_ARG_HELP, NULL, "Available commands" },
{ }
};
If you define tokens with the command string "history" or "help", these
will be handled internally, not passed on to your callback. The "history"
command simply prints the command history for this session, and the "help"
command provides help for the current context. Define the help command with
the T_ARG_HELP type: this lets you do tab completion on keywords after the
help command.
The above definitions are enough to make this work:
> help
Available commands
show Show information
help Available commands
> help show
Show information
hardware Show hardware information
version Show version
> help show hardware
Show hardware information
This also gets you tab completion of all keywords, and lets you abbreviate
keywords. The following are equivalent, and get your callback the same
tokens:
> show hardware
> sh hard
API
Interact with tokenline via the following functions:
typedef void (*tl_printfunc)(void *user, const char *str);
void tl_init(t_tokenline *tl, t_token *tokens, t_token_dict *dict,
tl_printfunc printfunc, void *user)
Initializes a previously-allocated t_tokenline struct "tl". This pointer
represents a single command-line instance, and will be passed to all
other API functions. "tokens" is the initial token tree for this instance,
and "printfunc" is the function called when tokenline produces output.
"user" is a pointer which will be passed along to all your callback
functions.
void tl_set_prompt(t_tokenline *tl, char *prompt)
Change the prompt tokenline uses. The pointer is used from then on,
so dynamic prompt changes can be done on that pointer.
typedef void (*tl_callback)(void *user, t_tokenline_parsed *p);
void tl_set_callback(t_tokenline *tl, tl_callback callback)
Set the function that will be called when a command is entered. The
t_tokenline_parsed struct is defined as follows:
typedef struct tokenline_parsed {
int tokens[TL_MAX_WORDS];
char buf[TL_MAX_LINE_LEN];
} t_tokenline_parsed;
The list of entered tokens is in the tokens field, terminated by 0 (this
is why token integers must not be 0). An argument is represented by one
of the T_ARG_* types (see above), followed by an integer representing an
offset into the "buf" field where the value lives. This value is simply
sizeof(int), sizeof(float) or a NULL-terminated string. For example,
the following command line:
> show device 1 file "foo bar"
Would be represented like this in the tokens field:
<T_SHOW> <T_DEVICE> <T_ARG_UINT> 0 <T_FILE> <T_ARG_STRING> 4 0
^ ^
argument offset in buffer --| --|
With the buf field containing the following:
00 00 00 01 66 6f 6f 20 62 61 72 00
^ ^
0 (int) 4 (string)
int tl_mode_push(t_tokenline *tl, t_token *tokens)
Switch to a new mode with its own token tree. The token tree is pushed
on to a stack.
int tl_mode_pop(t_tokenline *tl)
Exit the current mode, and return to the previous token tree.
int tl_input(t_tokenline *tl, uint8_t c)
Feed input to the command-line.