Normed and fixed stuff

This commit is contained in:
Maieul BOYER 2024-07-30 15:03:00 +02:00
parent b693536a90
commit 970507dfdd
No known key found for this signature in database
2 changed files with 83 additions and 76 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/30 14:29:42 by rparodi #+# #+# */
/* Updated: 2024/07/30 14:52:31 by rparodi ### ########.fr */
/* Updated: 2024/07/30 14:58:13 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -20,6 +20,14 @@
#include "parser/api.h"
#include <stdio.h>
void ast_free_arith(t_ast_node elem);
void ast_free_condition(t_ast_node elem);
void ast_free_exec(t_ast_node elem);
void ast_free_loop(t_ast_node elem);
void ast_free_other(t_ast_node elem);
void ast_free_redirection(t_ast_node elem);
void ast_free_arith(t_ast_node elem)
{
if (elem->kind == AST_ARITHMETIC_EXPANSION)
@ -86,13 +94,8 @@ void ast_free_redirection(t_ast_node elem)
}
}
void ast_free(t_ast_node elem)
void ast_free_other(t_ast_node elem)
{
ast_free_arith(elem);
ast_free_loop(elem);
ast_free_condition(elem);
ast_free_exec(elem);
ast_free_redirection(elem);
if (elem->kind == AST_COMPOUND_STATEMENT)
{
vec_ast_free(elem->data.compound_statement.body);
@ -119,6 +122,12 @@ void ast_free(t_ast_node elem)
{
if (elem == NULL)
return ;
ast_free_arith(elem);
ast_free_loop(elem);
ast_free_condition(elem);
ast_free_exec(elem);
ast_free_other(elem);
ast_free_redirection(elem);
if (elem->kind == AST_RAW_STRING)
mem_free(elem->data.raw_string.str);
if (elem->kind == AST_WORD)

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/19 15:53:50 by maiboyer #+# #+# */
/* Updated: 2024/07/07 19:17:05 by maiboyer ### ########.fr */
/* Updated: 2024/07/30 15:01:04 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -15,7 +15,6 @@
#include "me/str/str.h"
#include "me/types.h"
#include "unistd.h"
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
@ -41,8 +40,8 @@ struct s_file_slot *get_unused_fd_slot(void)
return (&arr->storage[i]);
i++;
}
me_abort(
"Unable to find slot for a file descriptor, increate FILE_SLOT_LEN");
me_abort("Unable to find slot for a file descriptor, " \
"increate FILE_SLOT_LEN");
return (NULL);
}
@ -60,7 +59,7 @@ __attribute__((destructor(201))) void close_all_slots(void)
void close_slot(struct s_file_slot *slot)
{
if (slot == NULL)
return;
return ;
if (slot->ty == SLOT_UNUSED)
;
else if (slot->ty == SLOT_FD)
@ -117,8 +116,7 @@ t_error read_fd(t_fd *fd, t_u8 *buffer, t_usize size, t_isize *read_count)
if (read_count == NULL)
read_count = &false_ret;
if (fd == NULL || buffer == NULL || fd->fd == -1 ||
!(fd->perms & FD_READ))
if (fd == NULL || buffer == NULL || fd->fd == -1 || !(fd->perms & FD_READ))
return (ERROR);
ret = read(fd->fd, buffer, size);
if (ret == -1)
@ -157,9 +155,9 @@ void close_fd(t_fd *fd)
struct s_file_slot *slot;
if (fd == NULL)
return;
return ;
if (close(fd->fd) == -1)
return;
return ;
slot = (void *)(fd)-offsetof(struct s_file_slot, slot.fd);
mem_set_zero(slot, sizeof(*slot));
}
@ -234,9 +232,9 @@ void close_dir(t_dir *dir)
struct s_file_slot *slot;
if (dir == NULL)
return;
return ;
if (closedir(dir->ptr) == -1)
return;
return ;
slot = (void *)(dir)-offsetof(struct s_file_slot, slot.dir);
mem_set_zero(slot, sizeof(*slot));
}
@ -286,8 +284,8 @@ t_error read_file(t_file *file, t_u8 *buffer, t_usize size, t_isize *read_count)
{
t_isize ret;
if (file == NULL || buffer == NULL || read_count == NULL ||
file->ptr == NULL)
if (file == NULL || buffer == NULL || read_count == NULL
|| file->ptr == NULL)
return (ERROR);
ret = fread(buffer, size, 1, file->ptr);
if (ret == -1)
@ -301,9 +299,9 @@ void close_file(t_file *file)
struct s_file_slot *slot;
if (file == NULL)
return;
return ;
if (fclose(file->ptr) == -1)
return;
return ;
slot = (void *)(file)-offsetof(struct s_file_slot, slot.file);
mem_set_zero(slot, sizeof(*slot));
}