-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd.c
137 lines (129 loc) · 3.57 KB
/
cmd.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cmd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mleclair <mleclair@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/07 13:28:38 by mleclair #+# #+# */
/* Updated: 2017/05/19 18:01:18 by mleclair ### ########.fr */
/* */
/* ************************************************************************** */
#include "chell.h"
void parse3(t_env *env, int i)
{
extracredir(env, 0, 0);
while (env->redir[++i] != '>')
;
if (env->redir[i] == '>' && env->redir[i + 1] == '>')
rd_output_apd(env, -1, -1);
else if (env->redir[i] == '>' && env->redir[i + 1] != '>')
rd_output(env, -1, -1, -1);
free(env->redir);
env->redir = NULL;
}
void parse2(t_env *env, char **input)
{
if (verredir(env) == -1)
return ;
if (cmprevtruc(env, input))
;
else if (cmprev(*input, "|") != -1)
rd_pipe(env);
else if (cmprev(*input, "<<<") != -1)
rd_here_string(env, -1, -1, -1);
else if (cmprev(*input, "<<") != -1)
{
extract_heredoc(env);
rd_here_doc(env, -1, -1);
}
else if (cmprev(*input, "<") != -1)
{
extract_rd_output(env, env->input);
rd_input(env, -1);
}
else if (cmprev(*input, ">") != -1 || cmprev(*input, ">>") != -1)
parse3(env, -1);
else
ft_reco_cmd(env, 0);
}
void parse(t_env *env, char **input, int do2)
{
if (env->input != *input)
{
free(env->input);
env->input = ft_strdup(*input);
}
sh_alias(env);
if ((env->bool2 == 1 && !ft_read(env, env->input, -1, 0))
|| env->input == NULL)
return ;
if (parserror(env) == -1)
return ;
if (ft_strfind(*input, '(') != -1 || ft_strfind(*input, ')') != -1)
if (subshell(env, input) == -1)
return ;
if (ft_strchr(env->input, '$'))
ft_dollar(env, -1, 0);
if (env->bool2 == 1 && !ft_read(env, ft_strdup(*input), -1, 0))
return ;
if (do2)
parse2(env, input);
if (env->inp1)
ft_strdel(&env->inp1);
if (env->inp2)
ft_strdel(&env->inp2);
}
void bsquote(char **input)
{
int i;
int u;
char *tmp;
u = 0;
i = -1;
while ((*input)[++i])
{
if (bs_str(*input, i, '\''))
u = (u == 1 ? 0 : 1);
if ((bs_str(*input, i, '(') || bs_str(*input, i, ')') ||
bs_str(*input, i, '!') || bs_str(*input, i, '$') ||
bs_str(*input, i, '~') || bs_str(*input, i, '<') ||
bs_str(*input, i, '>') || bs_str(*input, i, '`')) && u == 1)
{
tmp = ft_strnew(ft_strlen(*input) * 2);
ft_strncat(tmp, *input, i);
ft_strcat(tmp, "\\");
ft_strcat(tmp, *input + i);
free(*input);
*input = tmp;
++i;
}
}
}
int ft_read(t_env *env, char *input, int i, int u)
{
char **inputspl;
char *tmp;
u = ft_read3(&input, env);
if (u == 0 || u == -1)
return (u);
inputspl = ft_strsplitquote(input, ';', 0);
free2(input, env->input);
while (inputspl && inputspl[++i])
{
env->input = ft_strdup(inputspl[i]);
if (ft_strchr(env->input, '~'))
ft_tilde(&env->input, -1, 0);
bs_eol(env);
tmp = ft_strdup(env->input);
if (env->cond != NULL)
handle_condition(env, env->input);
else if (do_if_condition(env, env->input))
;
else
parse(env, &tmp, 1);
free2(tmp, env->input);
env->input = NULL;
}
return (free_double_array(inputspl));
}