42_minishell/redirection/check.c

86 lines
2.6 KiB
C
Raw Normal View History

2023-03-29 13:07:57 -04:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* check.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/29 17:32:06 by cchauvet #+# #+# */
2023-03-29 13:23:18 -04:00
/* Updated: 2023/03/29 19:21:59 by cchauvet ### ########.fr */
2023-03-29 13:07:57 -04:00
/* */
/* ************************************************************************** */
#include "./redirection_private.h"
2023-03-29 13:23:18 -04:00
static bool ft_check_heredoc(t_data *data, t_cmd *cmd,
2023-03-29 13:07:57 -04:00
char *redirection_identifier, char *redirection)
{
if (ft_strcmp(redirection_identifier, "<<") == 0)
2023-03-29 13:23:18 -04:00
{
2023-03-29 13:07:57 -04:00
cmd->fd_in[0] = ft_heredoc(data, redirection);
2023-03-29 13:23:18 -04:00
if (cmd->fd_in[0] == -2)
return (1);
}
return (0);
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
static bool ft_check_infile(t_data *data, t_cmd *cmd,
2023-03-29 13:07:57 -04:00
char *redirection_identifier, char *redirection)
{
if (ft_strcmp(redirection_identifier, "<") == 0)
{
if (ft_file_is_readable(data, redirection))
cmd->fd_in[0] = open(redirection, O_RDONLY);
else
2023-03-29 13:23:18 -04:00
{
2023-03-29 13:07:57 -04:00
cmd->fd_in[0] = -2;
2023-03-29 13:23:18 -04:00
return (1);
}
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
return (0);
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
static bool ft_check_outfile(t_data *data, t_cmd *cmd,
2023-03-29 13:07:57 -04:00
char *redirection_identifier, char *redirection)
{
if (ft_strcmp(redirection_identifier, ">") == 0)
{
if (ft_file_is_writable(data, redirection))
cmd->fd_out[0] = open(redirection,
O_WRONLY | O_TRUNC | O_CREAT, 0644);
else
2023-03-29 13:23:18 -04:00
{
2023-03-29 13:07:57 -04:00
cmd->fd_out[0] = -2;
2023-03-29 13:23:18 -04:00
return (1);
}
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
return (0);
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
static bool ft_check_outfile_append(t_data *data, t_cmd *cmd,
2023-03-29 13:07:57 -04:00
char *redirection_identifier, char *redirection)
{
if (ft_strcmp(redirection_identifier, ">>") == 0)
{
if (ft_file_is_writable(data, redirection))
cmd->fd_out[0] = open(redirection,
O_WRONLY | O_APPEND | O_CREAT, 0644);
else
2023-03-29 13:23:18 -04:00
{
2023-03-29 13:07:57 -04:00
cmd->fd_out[0] = -2;
2023-03-29 13:23:18 -04:00
return (1);
}
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
return (0);
2023-03-29 13:07:57 -04:00
}
2023-03-29 13:23:18 -04:00
bool ft_check_redirection(t_data *data, t_cmd *cmd,
2023-03-29 13:07:57 -04:00
char *redirection_identifier, char *redirection)
{
2023-03-29 13:23:18 -04:00
return (ft_check_heredoc(data, cmd, redirection_identifier, redirection)
|| ft_check_infile(data, cmd, redirection_identifier, redirection)
|| ft_check_outfile(data, cmd, redirection_identifier, redirection)
|| ft_check_outfile_append(data, cmd, redirection_identifier,
redirection));
2023-03-29 13:07:57 -04:00
}