-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShell.cc
146 lines (120 loc) · 2.75 KB
/
Shell.cc
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
#include <unistd.h>
#include <cstdio>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/wait.h>
#include "Command.hh"
#include "Shell.hh"
int yyparse(void);
extern int yylex_destroy();
char * path;
Shell * Shell::TheShell;
Shell::Shell() {
this->_level = 0;
this->_enablePrompt = true;
this->_listCommands = new ListCommands();
this->_simpleCommand = new SimpleCommand();
this->_pipeCommand = new PipeCommand();
this->_currentCommand = this->_pipeCommand;
if ( !isatty(0)) {
this->_enablePrompt = false;
}
}
void Shell::prompt() {
if (_enablePrompt) {
printf("myshell>");
fflush(stdout);
}
}
void Shell::print() {
printf("\n--------------- Command Table ---------------\n");
this->_listCommands->print();
}
void Shell::clear() {
this->_listCommands->clear();
this->_simpleCommand->clear();
this->_pipeCommand->clear();
this->_currentCommand->clear();
this->_level = 0;
}
void Shell::execute() {
if (this->_level == 0 ) {
//this->print();
this->_listCommands->execute();
this->_listCommands->clear();
this->prompt();
}
}
void set() {
setenv("#", "4", 1);
setenv("0", "./test_script_1.sh", 1);
setenv("1", "a", 1);
setenv("2", "b", 1);
setenv("3", "c", 1);
setenv("4", "d" ,1);
setenv("*", "a b c d", 1);
}
extern "C" void disp(int sig) {
fprintf(stderr, "\nsig:%d Ouch!\n", sig);
Shell::TheShell->prompt();
}
//signal child handler
extern "C" void zomb(int sig) {
int ret;
int status;
while((ret = waitpid(-1, &status, WNOHANG)) != -1 ) {
if (isatty(0)) {
printf("[PID] %d exited.\n", ret);
}
}
}
void yyset_in (FILE * in_str );
int main(int argc, char **argv) {
Shell::TheShell = new Shell();
path = argv[0];
set();
struct sigaction sa;
sa.sa_handler=disp;
sigemptyset(&sa.sa_mask);
sa.sa_flags = SA_RESTART;
int error = sigaction(SIGINT, &sa, NULL);
if (error) {
perror("sigaction");
exit(-1);
}
if (Shell::TheShell->_pipeCommand->_background == false) {
struct sigaction sz;
sz.sa_handler=zomb;
sigemptyset(&sz.sa_mask);
sz.sa_flags = SA_RESTART;
int err = sigaction(SIGCHLD, &sz, NULL);
if (err) {
perror("sigaction");
exit(2);
}
}
char * input_file = NULL;
if ( argc > 1 ) {
input_file = argv[1];
FILE * f = fopen(input_file, "r");
if (f==NULL) {
fprintf(stderr, "Cannot open file %s\n", input_file);
perror("fopen");
exit(1);
}
yyset_in(f);
}
if (input_file != NULL) {
// No prompt if running a script
Shell::TheShell->_enablePrompt = false;
}
else {
Shell::TheShell->prompt();
}
yyparse();
Shell::TheShell->clear();
yylex_destroy();
delete Shell::TheShell;
}