42_minishell/spacer.c

118 lines
2.5 KiB
C
Raw Permalink Normal View History

2023-02-15 14:52:27 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* spacer.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/15 13:35:50 by cchauvet #+# #+# */
2023-02-16 10:29:46 -05:00
/* Updated: 2023/02/16 16:26:15 by cchauvet ### ########.fr */
2023-02-15 14:52:27 -05:00
/* */
/* ************************************************************************** */
2023-02-16 08:54:19 -05:00
#include "libftx/libftx.h"
2023-02-15 14:52:27 -05:00
#include "minishell.h"
#include "utils/utils.h"
static char *ft_spacer_after(const char *str)
{
char *out;
char *temp;
size_t i;
out = ft_strdup(str);
if (out == NULL)
return (NULL);
i = 1;
while (out[i] != '\0')
{
2023-02-16 07:53:49 -05:00
while (ft_is_in_quote(out, i))
i++;
2023-02-15 14:52:27 -05:00
if (ft_is_in("><|", out[i - 1]))
{
while (str[i] == out[i - 1])
i++;
temp = ft_strreplace(out, " ", i, i);
free(out);
out = temp;
if (out == NULL)
return (NULL);
}
i++;
}
return (out);
}
static char *ft_spacer_before(const char *str)
{
char *out;
char *temp;
size_t i;
out = ft_strdup(str);
if (out == NULL)
return (NULL);
i = 0;
while (out[i + 1] != '\0')
{
2023-02-16 07:53:49 -05:00
while (ft_is_in_quote(out, i))
i++;
2023-02-15 14:52:27 -05:00
if (ft_is_in("><|", out[i + 1]))
{
while (out[i] == ' ')
i++;
while (out[i] == out[i + 1])
i++;
temp = ft_strreplace(out, " ", i + 1, i + 1);
free(out);
out = temp;
if (out == NULL)
return (NULL);
}
i++;
}
return (out);
}
static void ft_space_simplifier(char *str)
{
size_t i;
size_t y;
i = 0;
while (str[i] != '\0')
{
2023-02-16 07:53:49 -05:00
if (ft_is_in_quote(str, i))
i++;
2023-02-15 14:52:27 -05:00
y = 0;
while (str[y + i] == ' ')
y++;
if (y > 1)
{
ft_strshift(str + i, -y + 1);
y--;
}
i++;
}
}
char *ft_normalizer(char *str)
{
char *out;
char *temp;
2023-02-16 10:29:46 -05:00
if (ft_str_is_empty(str))
return (ft_strdup(" "));
2023-02-15 14:52:27 -05:00
temp = ft_spacer_after(str);
if (temp == NULL)
return (NULL);
out = ft_spacer_before(temp);
free(temp);
if (out == NULL)
return (NULL);
ft_space_simplifier(out);
2023-02-16 10:29:46 -05:00
if (out[ft_strlen(out) - 1] == ' ')
out[ft_strlen(out) - 1] = '\0';
2023-02-15 14:52:27 -05:00
return (out);
}