Bon il faut ranger la chambre sinon impec

This commit is contained in:
Etienne Rey-bethbeder 2023-02-16 14:30:28 +01:00
parent b20d4e0ddc
commit 02f5815485
41 changed files with 134 additions and 116 deletions

View File

@ -7,7 +7,7 @@ NAME = minishell
CC = gcc CC = gcc
CFLAGS = -Wall -Werror -Wextra -g CFLAGS = -Werror -Wextra -g
LIBS = libftx/libftx.a LIBS = libftx/libftx.a

202
env.c
View File

@ -6,7 +6,7 @@
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */ /* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/02 14:39:56 by erey-bet #+# #+# */ /* Created: 2023/02/02 14:39:56 by erey-bet #+# #+# */
/* Updated: 2023/02/03 16:04:16 by erey-bet ### ########.fr */ /* Updated: 2023/02/16 14:30:12 by erey-bet ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -30,18 +30,14 @@ void print_export(t_list **head, int fd)
int v; int v;
current = *head; current = *head;
while (current != NULL) while (current->next != NULL)
{ {
ctn = current->content;
if (*(ft_strchr(ctn, '=') - 1) != '_')
{
v = get_index(ctn, '=');
write(fd, "declare -x ", 11); write(fd, "declare -x ", 11);
write(fd, ctn, v + 1); ft_putstr_fd(((t_env*)(current->content))->key, fd);
ft_putstr_fd("=", fd);
write(fd, "\"", 1); write(fd, "\"", 1);
ft_putstr_fd(ctn + v + 1, fd); ft_putstr_fd(((t_env*)(current->content))->value, fd);
write(fd, "\"\n", 2); write(fd, "\"\n", 2);
}
current = current->next; current = current->next;
} }
} }
@ -51,9 +47,11 @@ void print_env(t_list **head, int fd)
t_list *current; t_list *current;
current = *head; current = *head;
while (current != NULL) while (current->next != NULL)
{ {
ft_putstr_fd(current->content, fd); ft_putstr_fd(((t_env*)(current->content))->key, fd);
ft_putstr_fd("=", fd);
ft_putstr_fd(((t_env*)(current->content))->value, fd);
write(fd, "\n", 1); write(fd, "\n", 1);
current = current->next; current = current->next;
} }
@ -77,16 +75,52 @@ int strcmp_alphabet(char *s1, char *s2)
return (-1); return (-1);
} }
void ft_double_swap(char **a, char **b) void ft_double_swap(void *a, void *b)
{ {
void *c; void *c;
c = *a; c = a;
*a = *b; a = b;
*b = c; b = c;
} }
void exchange(char **a, char **b, char **c) void exchange(void *a, void *b, void *c)
{
void *d;
d = a;
a = b;
b = c;
c = d;
}
char *get_value(char *str)
{
char *s;
int i;
int start;
s = ft_calloc(ft_strlen(str), sizeof(char));
start = get_index(str, '=');
i = start;
while (str[++i])
s[i - start - 1] = str[i];
return (s);
}
char *get_key(char *str)
{
char *s;
int i;
s = ft_calloc(ft_strlen(str), sizeof(char));
i = -1;
while (str[++i] != '=')
s[i] = str[i];
return (s);
}
void swap_env_3(void **a, void **b, void **c)
{ {
void *d; void *d;
@ -96,100 +130,82 @@ void exchange(char **a, char **b, char **c)
*c = d; *c = d;
} }
void add_sort(t_list **head, char *str) void swap_env(void **a, void **b)
{
void *c;
c = *a;
*a = *b;
*b = c;
}
void add_sort(t_list **head, t_env *var)
{ {
t_list *current; t_list *current;
char *last; t_env *last;
current = *head; current = *head;
while (current->next != NULL && strcmp_alphabet(str, current->content) != 0) while (current->next != NULL && strcmp_alphabet(var->key, ((t_env*)(current->content))->key) != 0)
current = current->next; current = current->next;
if (strcmp_alphabet(str, current->content) == 1) if (current->content == NULL)
last = str; current->content = var;
else else
exchange(&last, (char **)(&current->content), &str);
while (current != NULL)
{ {
last = NULL;
swap_env_3((void **)&last, &current->content, (void **)&var);
while (current->next != NULL)
{
current = current->next;
swap_env(&current->content, (void **)&last);
}
}
if (current->next == NULL) if (current->next == NULL)
current->next = ft_calloc(1, sizeof(t_list)); current->next = ft_calloc(1, sizeof(t_list));
if (current->next == NULL)
return ;
current = current->next;
if (current->content == NULL)
{
current->content = last;
return ;
}
else
ft_double_swap((char **)(&current->content), &last);
}
} }
char *get_value_index(int index, t_list **head) char *get_value_by_key(char *key, t_list **head)
{
t_list *current;
int i;
current = *head;
i = -1;
while (current != NULL && ++i != index)
current = current->next;
if (i == index)
return (ft_strchr(current->content, '=') + 1);
return (NULL);
}
int is_start(char *big, char *little)
{
int i;
i = 0;
while (big[i])
{
if (little[i] != big[i])
return (0);
i++;
if (!little[i])
return (1);
}
return (0);
}
char *get_value_key(char *key, t_list **head)
{ {
t_list *current; t_list *current;
current = *head; current = *head;
while (current != NULL) while (current->next != NULL)
{ {
if (is_start(current->content, key)) if (ft_strcmp(((t_env *)current->content)->key, key) == 0)
return (ft_strchr(current->content, '=') + 1); return (((t_env *)current->content)->value);
current = current->next; current = current->next;
} }
return (NULL); return (NULL);
} }
int set_value_key(char *key, t_list **head, char *str) int set_value_by_key(char *key, char *value, t_list **head)
{ {
t_list *current; t_list *current;
char *temp;
size_t len;
current = *head; current = *head;
while (current != NULL) while (current->next != NULL)
{ {
if (is_start(current->content, key)) if (ft_strcmp(((t_env *)current->content)->key, key) == 0)
{ {
len = ft_strlen(current->content); free(((t_env *)current->content)->value);
temp = current->content; ((t_env *)current->content)->value = value;
current->content = ft_strreplace(temp, str, ft_strnchr(temp, '=') + 1, len - get_index(temp, '=') - 1); return (0);
free(temp);
if (current->content == NULL)
return (1);
break ;
} }
current = current->next; current = current->next;
} }
return (1);
}
int create_value_by_key(char *key, char *value, t_list **head)
{
t_env *content;
if (set_value_by_key(key, value, head) == 0)
return (0);
content = ft_calloc(1, sizeof(t_env));
if (content == NULL)
return (1);
content->key = key;
content->value = value;
add_sort(head, content);
return (0); return (0);
} }
@ -197,27 +213,23 @@ t_list **init_env(char **env)
{ {
t_list **head; t_list **head;
int i; int i;
t_env *var;
head = ft_calloc(1, sizeof(t_list *)); head = ft_calloc(1, sizeof(t_list *));
if (head == NULL)
return (NULL);
*head = ft_calloc(1, sizeof(t_list)); *head = ft_calloc(1, sizeof(t_list));
if (*head == NULL) if (*head == NULL)
return (NULL); return (NULL);
i = -1; i = -1;
while (env[++i]) while (env[++i])
add_sort(head, env[i]); {
var = ft_calloc(1, sizeof(t_env));
if (var == NULL)
return (NULL);
var->key = get_key(env[i]);
var->value = get_value(env[i]);
add_sort(head, var);
}
return (head); return (head);
} }
int main(int argc, char *argv[], char **env)
{
t_list **i_env;
(void)argc;
(void)argv;
i_env = init_env(env);
ft_putstr_fd(get_value_key("PATH", i_env), 1);
ft_putstr_fd("/n", 1);
set_value_key("PATH", i_env, "BITE");
ft_putstr_fd(get_value_key("PATH", i_env), 1);
return (0);
}

BIN
env.o

Binary file not shown.

BIN
file.o Normal file

Binary file not shown.

BIN
ft_split_quoted.o Normal file

Binary file not shown.

BIN
heredoc.o Normal file

Binary file not shown.

BIN
infile.o Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
libftx/extra/ft_swap.o Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
libftx/libft/ft_lstclear.o Normal file

Binary file not shown.

BIN
libftx/libft/ft_lstdelone.o Normal file

Binary file not shown.

BIN
libftx/libft/ft_lstiter.o Normal file

Binary file not shown.

BIN
libftx/libft/ft_lstlast.o Normal file

Binary file not shown.

BIN
libftx/libft/ft_lstmap.o Normal file

Binary file not shown.

BIN
libftx/libft/ft_lstnew.o Normal file

Binary file not shown.

BIN
libftx/libft/ft_lstsize.o Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

12
main.c
View File

@ -208,12 +208,20 @@ int ft_cmds_excutor(t_list **cmds)
return (0); return (0);
} }
int main(int ac, char **av) /*int main(int ac, char **av, char **env)
{ {
t_list **cmds; t_list **cmds;
t_data data;
if (ac == 1) if (ac == 1)
return (1); return (1);
data.env = init_env(env);
if (data.env == NULL)
return (1);
ft_putstr_fd(get_value_key("PATH", data.env), 1);
ft_putstr_fd("/n", 1);
set_value_key("PATH", i_env, "BITE");
ft_putstr_fd(get_value_key("PATH", data.env), 1);
cmds = ft_parse_cmds(av[1]); cmds = ft_parse_cmds(av[1]);
if (cmds == NULL) if (cmds == NULL)
return (1); return (1);
@ -225,4 +233,4 @@ int main(int ac, char **av)
ft_lstclear(cmds, ft_lstdel); ft_lstclear(cmds, ft_lstdel);
free(cmds); free(cmds);
return (1); return (1);
} }*/

BIN
main.o Normal file

Binary file not shown.

BIN
minishell

Binary file not shown.

View File

@ -37,4 +37,9 @@ typedef struct s_data
t_list **env; t_list **env;
} t_data; } t_data;
typedef struct s_env
{
void *key;
void *value;
} t_env;
#endif #endif

BIN
outfile.o Normal file

Binary file not shown.

BIN
syntatics.o Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,24 +1,17 @@
#include "utils.h" #include "utils.h"
<<<<<<< HEAD char *ft_strreplace(const char *str, const char *fill, size_t start, size_t stop)
int ft_strreplace(char **str, char *fill, size_t start, size_t stop)
=======
char *ft_strreplace(char *str, const char *fill, size_t start, size_t stop)
>>>>>>> 67fb6d0533f56a0d63ffeebd9fde7cdc75919eb2
{ {
char *out; char *out;
size_t sum; size_t sum;
out = malloc((ft_strlen(str) + ft_strlen(fill) - (stop - start) + 1 out = malloc((ft_strlen(str) + ft_strlen(fill) - (stop - start) + 1 * sizeof(char)));
* sizeof(char)));
if (out == NULL) if (out == NULL)
return (1); return (NULL);
ft_strncpy(out, str, start); ft_strncpy(out, str, start);
ft_strncpy(out + start, fill, ft_strlen(fill)); ft_strncpy(out + start, fill, ft_strlen(fill));
sum = start + ft_strlen(fill); sum = start + ft_strlen(fill);
ft_strncpy(out + sum, str + stop, ft_strlen(str) - stop); ft_strncpy(out + sum, str + stop, ft_strlen(str) - stop);
out[sum + ft_strlen(str) - stop] = '\0'; out[sum + ft_strlen(str) - stop] = '\0';
free(*str); return (out);
*str = out;
return (0);
} }

Binary file not shown.

View File

@ -5,7 +5,7 @@
size_t ft_strncpy(char *dst, const char *src, size_t n); size_t ft_strncpy(char *dst, const char *src, size_t n);
int ft_is_in_quote(const char *str, size_t n); int ft_is_in_quote(const char *str, size_t n);
char *ft_strreplace(char *str, const char *fill, size_t start, size_t stop); char *ft_strreplace(const char *str, const char *fill, size_t start, size_t stop);
ssize_t ft_strnchr(const char *str, char c); ssize_t ft_strnchr(const char *str, char c);
char *ft_getstr(const char *str, size_t n); char *ft_getstr(const char *str, size_t n);