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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <cacharle@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/28 11:45:44 by cacharle #+# #+# */
/* Updated: 2020/09/09 16:19:00 by charles ### ########.fr */
/* */
/* ************************************************************************** */
/*
** \file main.c
** \brief Minishell entrypoint
*/
#include "minishell.h"
#include "lexer.h"
#include "parser.h"
#include "eval.h"
/* void token_debug(void *v); */
/* void token_put(void *v); */
/* void print_level(int level); */
/* void ast_print(int level, t_ast *ast); */
void tok_lst_debug(t_tok_lst *tokens);
/*
** TODO
** $?
** concurrent pipeline
** cmd variable preprocess
** signal on whole line instead of single command
** env local to current minishell process
*/
bool env_set_default(t_env env, char *key, char *value)
{
if (env_search(env, key) != NULL)
return (true);
return (env_export(env, key, value) != NULL);
}
char *g_basename = "minishell";
int main(int argc, char **argv, char **envp)
{
t_path path;
t_env env;
env = env_from_array(envp);
char buf[PATH_MAX] = {0};
if (!(getcwd(buf, PATH_MAX)))
return(1);
if (!env_set_default(env, "PWD", buf) ||
!env_set_default(env, "SHLVL", "1") || // TODO increment if set
!env_set_default(env, "PATH", "/sbin:")) // FIXME need to prefix if /sbin not in
return (1);
path = path_update(NULL, env_search(env, "PATH"));
/* char *env_exec_path; */
// if ((env_exec_path = ft_htget(path, "env")) == NULL)
// {
// errorf("env: command not found\n");
// return (127);
// }
// env_export(env, "_", env_exec_path);
g_last_status_code = 0;
signal(SIGINT, signal_sigint);
signal(SIGQUIT, signal_sigquit);
signal(SIGTERM, signal_sigterm);
char *last_slash = ft_strrchr(argv[0], '/');
if (last_slash == NULL)
g_basename = argv[0];
else
g_basename = last_slash + 1;
if (argc == 3 && ft_strcmp(argv[1], "-l") == 0)
{
t_tok_lst *lex_out = lexer(argv[2]);
if (lex_out == NULL)
return (1);
tok_lst_debug(lex_out);
/* ft_lstiter((t_ftlst*)lex_out, token_debug); */
}
else if (argc == 3 && ft_strcmp(argv[1], "-c") == 0)
{
t_tok_lst *lex_out = lexer(argv[2]);
if (lex_out == NULL)
return (1);
t_parsed *parser_out = parse(lex_out);
if (parser_out == NULL || parser_out->syntax_error)
return (1);
/* ast_print(0, parser_out->ast); */
/* printf("===cmd_argv===\n"); */
/* ft_lstiter(parser_out->ast->cmd_argv, token_debug); */
/* printf("===redirs===\n"); */
/* ft_lstiter(parser_out->ast->redirs, token_debug); */
int fds[2] = {MS_NO_FD, MS_NO_FD};
int eval_out = eval(fds, env, path, parser_out->ast);
(void)eval_out;
}
else
{
int ret;
char *line;
print_prompt();
while ((ret = ft_getline(STDIN_FILENO, &line)) == FTGL_OK)
{
if (*line == '\0')
{
print_prompt();
continue;
}
t_tok_lst *lex_out = lexer(line);
if (lex_out == NULL)
return (1);
t_parsed *parser_out = parse(lex_out);
if (parser_out == NULL)
return (1);
if (parser_out->syntax_error)
{
print_prompt();
continue;
}
int fds[2] = {MS_NO_FD, MS_NO_FD};
int eval_out = eval(fds, env, path, parser_out->ast);
(void)eval_out;
print_prompt();
}
if (ret != FTGL_EOF)
return (1);
}
ft_htdestroy(path, free);
ft_vecdestroy(env, free);
return (g_last_status_code);
}
|