mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 19:36:50 +01:00
116 lines
2.6 KiB
C
116 lines
2.6 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/24 11:18:04 by adjoly #+# #+# */
|
|
/* Updated: 2024/06/21 09:33:03 by mmoussou ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
#include <readline/readline.h>
|
|
#include <readline/history.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <fcntl.h>
|
|
#include "libft.h"
|
|
#include "minishell.h"
|
|
#include "parsing.h"
|
|
#include "prompt.h"
|
|
|
|
void free_redir(void *redir_v)
|
|
{
|
|
t_redirection *redir;
|
|
|
|
redir = redir_v;
|
|
free(redir->file_name);
|
|
}
|
|
|
|
void free_token(void *token_v)
|
|
{
|
|
t_token *token;
|
|
|
|
token = token_v;
|
|
free(token->argv);
|
|
ft_lstclear(&(token->redirection), free_redir);
|
|
}
|
|
|
|
/*void print_cmd(t_cmd cmd)
|
|
{
|
|
ft_putendl_fd(cmd.cmd, 1);
|
|
while (*(cmd.argv))
|
|
{
|
|
ft_putendl_fd(*(cmd.argv), 1);
|
|
(cmd.argv)++;
|
|
}
|
|
}*/
|
|
|
|
void print_pipe(t_list *pipe)
|
|
{
|
|
t_list *tmp;
|
|
|
|
tmp = pipe;
|
|
while (tmp)
|
|
{
|
|
ft_putendl_fd(tmp->content, STDOUT_FILENO);
|
|
tmp = tmp->next;
|
|
}
|
|
}
|
|
|
|
int main(int ac, char **av, char **env)
|
|
{
|
|
char *test;
|
|
char *prompt;
|
|
char **lll;
|
|
t_list *piped;
|
|
t_env env_l;
|
|
t_list *cmd_list;
|
|
|
|
(void)ac;
|
|
(void)av;
|
|
piped = NULL;
|
|
if (env_init(env, &env_l))
|
|
return (EXIT_FAILURE);
|
|
while (1)
|
|
{
|
|
prompt = get_prompt(env_l);
|
|
test = readline(prompt);
|
|
free(prompt);
|
|
add_history(test);
|
|
check_syntax(test, av);
|
|
lll = ft_split(test, ' ');
|
|
if (!*lll)
|
|
continue ;
|
|
if (is_str(test, "exit"))
|
|
break ;
|
|
piped = tokenizer(test);
|
|
//check_redir(((t_token *)(piped->content))->redirection, av);
|
|
cmd_list = get_cmd_list(piped, &env_l);
|
|
exec_split_cmd(cmd_list, &env_l);
|
|
/*while (cmd_list)
|
|
{
|
|
cmd = cmd_list->content;
|
|
cmd_list = cmd_list->next;
|
|
}*/
|
|
//print_cmd(cmd_list->content);
|
|
free(test);
|
|
ft_lstclear(&piped, free_token);
|
|
ft_free("a", &lll);
|
|
}
|
|
ft_free("a", &lll);
|
|
return (0);
|
|
}
|
|
|
|
/*int main()
|
|
{
|
|
char *ll = "asdf\"xf\"asfffd";
|
|
t_quote d;
|
|
|
|
d = is_inquote(ll, 6);
|
|
ft_printf("%c\n", *(ll+6))
|
|
print_quote_type(d);
|
|
}*/
|