+ TODO : need refactoring and fix to valgrind invalid read size + redirections() WIP + Generic ft_dup_2d_arr(), ft_split_quotes(), ft_strdup_quotes() + shell_loop() continue on error + various small fix
117 lines
3.1 KiB
C
117 lines
3.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* expand_token.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lperrey <lperrey@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/11/07 02:01:33 by lperrey #+# #+# */
|
|
/* Updated: 2021/11/11 21:04:41 by lperrey ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
t_list *ft_lstnew_generic(size_t lst_sizse, size_t content_size);
|
|
|
|
enum e_in_quote_state
|
|
{
|
|
NOT_IN = 0,
|
|
IN_QUOTES = '\'',
|
|
IN_DQUOTES = '\"'
|
|
};
|
|
|
|
static t_list *ret_parameter_expansion(char *content, int *i);
|
|
|
|
t_list *expand_token(char *content)
|
|
{
|
|
int in_quotes;
|
|
int i;
|
|
int i_exp;
|
|
t_list head;
|
|
t_list *expand;
|
|
|
|
in_quotes = 0;
|
|
i = 0;
|
|
head.next = NULL;
|
|
expand = &head;
|
|
while (content[i])
|
|
{
|
|
if (content[i] == '$')
|
|
{
|
|
expand->next = ret_parameter_expansion(content, &i);
|
|
expand = expand->next;
|
|
if (!expand)
|
|
{//todo wrap
|
|
perror("expand_token() error");
|
|
return (ft_lstclear(&head.next, free));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
expand->next = ft_lstnew_generic(sizeof(t_list), ft_strlen(&content[i]) + 1);
|
|
expand = expand->next;
|
|
i_exp = 0;
|
|
if (!expand)
|
|
{//todo wrap
|
|
perror("expand_token() error");
|
|
return (ft_lstclear(&head.next, free));
|
|
}
|
|
while (content[i] && (content[i] != '$' || in_quotes == IN_QUOTES))
|
|
{
|
|
// quoting
|
|
if (content[i] == '\'' && in_quotes != IN_DQUOTES)
|
|
{
|
|
if (in_quotes == IN_QUOTES)
|
|
in_quotes = 0;
|
|
else
|
|
in_quotes = IN_QUOTES;
|
|
}
|
|
((char *)expand->content)[i_exp++] = content[i++];
|
|
}
|
|
}
|
|
}
|
|
return (head.next);
|
|
}
|
|
|
|
// a voir si je retourne pas plutot un "char *".
|
|
// Malloc la lst dans la fonction est peut-être un peu superflu et pas super clair.
|
|
static t_list *ret_parameter_expansion(char *content, int *i)
|
|
{
|
|
t_list *expand;
|
|
char *tmp;
|
|
int i_tmp;
|
|
|
|
tmp = ft_calloc(ft_strlen(&content[*i]) + 1, 1);
|
|
if (!tmp)
|
|
return (NULL);
|
|
expand = ft_lstnew(NULL);
|
|
if (!expand)
|
|
return (ft_retp_free(NULL, tmp, free));
|
|
(*i)++; // skip '$'
|
|
if (content[*i] == '?')
|
|
{
|
|
(*i)++;
|
|
expand->content = ft_itoa(g_all->last_exit_status);
|
|
return (ft_retp_free(expand, tmp, free));
|
|
}
|
|
else if (content[*i] != '_' && !ft_isalpha(content[*i]))
|
|
{
|
|
tmp[0] = '$';
|
|
expand->content = tmp;
|
|
return (expand);
|
|
}
|
|
i_tmp = 0;
|
|
while (content[*i] == '_' || ft_isalnum(content[*i]))
|
|
tmp[i_tmp++] = content[(*i)++];
|
|
expand->content = getenv(tmp);
|
|
free(tmp);
|
|
if (expand->content)
|
|
expand->content = ft_strdup(expand->content);
|
|
else
|
|
expand->content = ft_calloc(1, 1);
|
|
if (!expand->content)
|
|
return (ft_retp_free(NULL, expand, free));
|
|
return (expand);
|
|
}
|