forked from sysprog21/lab0-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.h
84 lines (65 loc) · 2.1 KB
/
console.h
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
#ifndef LAB0_CONSOLE_H
#define LAB0_CONSOLE_H
#include <stdbool.h>
#include <sys/select.h>
#include "linenoise.h"
#define HISTORY_FILE ".cmd_history"
/* Implementation of simple command-line interface */
/* Simulation flag of console option */
extern bool simulation;
/* Each command defined in terms of a function */
typedef bool (*cmd_function)(int argc, char *argv[]);
/* Information about each command */
/* Organized as linked list in alphabetical order */
typedef struct CELE cmd_ele, *cmd_ptr;
struct CELE {
char *name;
cmd_function operation;
char *documentation;
cmd_ptr next;
};
/* Optionally supply function that gets invoked when parameter changes */
typedef void (*setter_function)(int oldval);
/* Integer-valued parameters */
typedef struct PELE param_ele, *param_ptr;
struct PELE {
char *name;
int *valp;
char *documentation;
/* Function that gets called whenever parameter changes */
setter_function setter;
param_ptr next;
};
/* Initialize interpreter */
void init_cmd();
/* Add a new command */
void add_cmd(char *name, cmd_function operation, char *documentation);
/* Add a new parameter */
void add_param(char *name,
int *valp,
char *doccumentation,
setter_function setter);
/* Extract integer from text and store at loc */
bool get_int(char *vname, int *loc);
/* Add function to be executed as part of program exit */
void add_quit_helper(cmd_function qf);
/* Turn echoing on/off */
void set_echo(bool on);
/* Complete command interpretation */
/* Return true if no errors occurred */
bool finish_cmd();
/*
* Handle command processing in program that uses select as main
* control loop.
*/
int cmd_select(int nfds,
fd_set *readfds,
fd_set *writefds,
fd_set *exceptfds,
struct timeval *timeout);
/* Run command loop. Non-null infile_name implies read commands from that file
*/
bool run_console(char *infile_name);
/* Callback function to complete command by linenoise */
void completion(const char *buf, linenoiseCompletions *lc);
#endif /* LAB0_CONSOLE_H */