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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* tokenizer.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/28 20:55:50 by chuhlig #+# #+# */
/* Updated: 2025/01/25 11:30:58 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
#include "token.h"
t_token *reverse_token_list(t_token *head)
{
t_token *prev;
t_token *current;
t_token *next;
prev = NULL;
current = head;
next = NULL;
while (current != NULL)
{
next = current->previous;
current->next = prev;
current->previous = next;
prev = current;
current = next;
}
return (prev);
}
void print_token(t_token *token)
{
if (DEBUG)
{
if (token->type == STRING_TOKEN)
{
printf("STRING_TOKEN: %s\n", token->content.string);
}
else if (token->type == REDIR_TOKEN)
{
printf("REDIR_TOKEN: %d\n", token->content.redir_type);
}
else if (token->type == PIPE_TOKEN)
{
printf("PIPE_TOKEN\n");
}
else if (token->type == NEWLINE_TOKEN)
{
printf("NEWLINE_TOKEN\n");
}
}
}
void snap_string_token(char *string, int start_of_string, int i,
t_token **token_list)
{
char *line;
char *original;
int len;
line = NULL;
len = i - start_of_string + 1;
if (len > 0)
{
line = (char *)malloc((sizeof(char) * len + 1));
original = line;
if (!line)
{
exit(EXIT_FAILURE);
}
ft_strncpy(line, string + start_of_string, len);
line[len] = '\0';
while (*line == ' ' || *line == '\t')
line++;
if (*line != '\0')
{
*token_list = new_str_token(line, *token_list, NULL);
print_token(*token_list);
}
free(original);
}
}
void handle_special_chars(char *s, int *i, int *start, t_token **token_list)
{
snap_string_token(s, *start, *i - 1, token_list);
if (s[*i] == '<' && s[*i + 1] == '<')
*token_list = new_redir_token(INPUT_LIMITER, *token_list, NULL);
else if (s[*i] == '>' && s[*i + 1] == '>')
*token_list = new_redir_token(OUTPUT_APPEND, *token_list, NULL);
else if (s[*i] == '<')
*token_list = new_redir_token(INPUT_FILE, *token_list, NULL);
else if (s[*i] == '>')
*token_list = new_redir_token(OUTPUT_OVERRIDE, *token_list, NULL);
else if (s[*i] == '|')
*token_list = new_token(PIPE_TOKEN, *token_list, NULL);
else if (s[*i] == '\n')
*token_list = new_token(NEWLINE_TOKEN, *token_list, NULL);
if (s[*i] == '<' && s[*i + 1] == '<')
(*i)++;
if (s[*i] == '>' && s[*i + 1] == '>')
(*i)++;
print_token(*token_list);
*start = *i + 1;
}
void tokenizer(char *s, t_token **token_list, char quote_check)
{
int pos;
int i;
int f;
pos = 0;
i = -1;
f = 0;
while (s[++i])
{
if (!f && ft_strchr("|<>\n", s[i]))
handle_special_chars(s, &i, &pos, token_list);
else if (f && s[i] == quote_check)
f = 0;
else if (!f && ft_strchr("\'\"", s[i]))
{
f = 1;
quote_check = s[i];
}
if ((!f && (ft_isspace(s[i + 1]))) || i == ft_strlen(s) - 1)
{
snap_string_token(s, pos, i, token_list);
pos = i + 1;
}
}
*token_list = reverse_token_list(*token_list);
}
|