Adding the norm for maiboyerlpb lib
This commit is contained in:
parent
b693536a90
commit
41589a8a42
16 changed files with 97 additions and 2376 deletions
1987
ast/src/from_node.c
1987
ast/src/from_node.c
File diff suppressed because it is too large
Load diff
|
|
@ -1,27 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* close.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/04 15:56:56 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/12/10 19:05:48 by maix ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/close.h"
|
||||
#include "me/types.h"
|
||||
#include <unistd.h>
|
||||
|
||||
bool me_close(int file, t_i32 *error)
|
||||
{
|
||||
t_i32 res;
|
||||
bool out;
|
||||
|
||||
res = close(file);
|
||||
out = res != 0;
|
||||
if (res && error != NULL)
|
||||
*error = res;
|
||||
return (out);
|
||||
}
|
||||
|
|
@ -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 16:05:20 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -117,7 +117,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 ||
|
||||
if (fd == NULL || buffer == NULL || fd->fd == -1 || \
|
||||
!(fd->perms & FD_READ))
|
||||
return (ERROR);
|
||||
ret = read(fd->fd, buffer, size);
|
||||
|
|
@ -286,7 +286,7 @@ 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 ||
|
||||
if (file == NULL || buffer == NULL || read_count == NULL || \
|
||||
file->ptr == NULL)
|
||||
return (ERROR);
|
||||
ret = fread(buffer, size, 1, file->ptr);
|
||||
|
|
|
|||
|
|
@ -1,60 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* open.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/03 15:29:38 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/10 17:43:58 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/open.h"
|
||||
#include <fcntl.h>
|
||||
|
||||
t_error me_open(t_const_str path, bool read, bool write, int *file_out)
|
||||
{
|
||||
int out;
|
||||
int flags;
|
||||
|
||||
flags = 0;
|
||||
if (read && write)
|
||||
flags = O_RDWR;
|
||||
else if (read)
|
||||
flags = O_RDONLY;
|
||||
else if (write)
|
||||
flags = O_WRONLY;
|
||||
out = open(path, flags, 0666);
|
||||
if (out < 0)
|
||||
return (ERROR);
|
||||
*file_out = out;
|
||||
return (NO_ERROR);
|
||||
}
|
||||
|
||||
t_error me_open_truncate(t_const_str path, int *file_out)
|
||||
{
|
||||
int out;
|
||||
int flags;
|
||||
|
||||
unlink(path);
|
||||
flags = O_WRONLY | O_CREAT | O_TRUNC;
|
||||
out = open(path, flags, 0666);
|
||||
if (out < 0)
|
||||
return (ERROR);
|
||||
*file_out = out;
|
||||
return (NO_ERROR);
|
||||
}
|
||||
|
||||
t_error me_open_create(t_const_str path, int *file_out)
|
||||
{
|
||||
int out;
|
||||
int flags;
|
||||
|
||||
flags = O_WRONLY | O_CREAT | O_APPEND;
|
||||
out = open(path, flags, 0666);
|
||||
if (out < 0)
|
||||
return (ERROR);
|
||||
*file_out = out;
|
||||
return (NO_ERROR);
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* putchar_fd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/08 04:42:45 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/11/08 13:22:51 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/putchar_fd.h"
|
||||
#include "me/fs/write.h"
|
||||
#include "me/str/str.h"
|
||||
|
||||
void me_putchar_fd(char chr, int file)
|
||||
{
|
||||
me_write(file, (t_u8 *)&chr, 1);
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* putendl_fd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/08 04:42:45 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/11/10 16:23:27 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/putstr_fd.h"
|
||||
#include "me/fs/write.h"
|
||||
#include "me/str/str.h"
|
||||
|
||||
void me_putendl_fd(t_str str, int file)
|
||||
{
|
||||
if (str == NULL)
|
||||
return ;
|
||||
me_write(file, (t_u8 *)str, str_len(str));
|
||||
me_write(file, (t_u8 *)"\n", 1);
|
||||
}
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* putnbr_fd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/08 12:45:06 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/05/01 20:29:59 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/putnbr_fd.h"
|
||||
#include "me/fs/write.h"
|
||||
|
||||
static void me_inner(t_u64 nb, t_str out, t_usize *idx)
|
||||
{
|
||||
bool need_print;
|
||||
t_u64 modulus;
|
||||
char c;
|
||||
|
||||
modulus = 1000000000;
|
||||
need_print = false;
|
||||
while (modulus)
|
||||
{
|
||||
c = (char)(nb / modulus);
|
||||
if (c != 0 || need_print)
|
||||
{
|
||||
out[(*idx)++] = c + '0';
|
||||
need_print = true;
|
||||
}
|
||||
nb = nb % modulus;
|
||||
modulus /= 10;
|
||||
}
|
||||
}
|
||||
|
||||
void me_putnbr_fd(t_i32 n, int file)
|
||||
{
|
||||
t_usize idx;
|
||||
t_i64 nb;
|
||||
char out[15];
|
||||
|
||||
nb = (t_i64)n;
|
||||
idx = 0;
|
||||
if (nb < 0)
|
||||
{
|
||||
out[idx++] = '-';
|
||||
nb = -nb;
|
||||
}
|
||||
if (nb == 0)
|
||||
out[idx++] = '0';
|
||||
me_inner(nb, out, &idx);
|
||||
me_write(file, (t_u8 *)out, idx);
|
||||
}
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* putstr_fd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/08 04:42:45 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/11/10 16:23:44 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/putstr_fd.h"
|
||||
#include "me/fs/write.h"
|
||||
#include "me/str/str.h"
|
||||
|
||||
void me_putstr_fd(t_str str, int file)
|
||||
{
|
||||
if (str == NULL)
|
||||
return ;
|
||||
me_write(file, (t_u8 *)str, str_len(str));
|
||||
}
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* read.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/03 15:21:19 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/12/09 18:08:10 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/read.h"
|
||||
#include <unistd.h>
|
||||
|
||||
t_usize me_read(int fd, t_u8 *buffer, t_i64 buffer_max, bool *eof_out)
|
||||
{
|
||||
ssize_t out;
|
||||
|
||||
out = read(fd, buffer, buffer_max);
|
||||
if (out == 0 && buffer_max != 0 && eof_out != NULL)
|
||||
*eof_out = true;
|
||||
return (out);
|
||||
}
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* read_to_vec.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/12/24 18:38:47 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/10 17:44:22 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/open.h"
|
||||
#include "me/fs/read.h"
|
||||
#include "me/mem/mem.h"
|
||||
#include "me/vec/vec_u8.h"
|
||||
|
||||
#define READ_BUFFER_SIZE 4096
|
||||
|
||||
bool read_to_vec(t_const_str path, t_vec_u8 *out)
|
||||
{
|
||||
t_u8 temp_buffer[READ_BUFFER_SIZE];
|
||||
t_isize read_amount;
|
||||
int f;
|
||||
bool eof;
|
||||
t_usize current_size;
|
||||
|
||||
eof = false;
|
||||
current_size = 0;
|
||||
if (out == NULL || me_open(path, true, false, &f))
|
||||
return (true);
|
||||
*out = vec_u8_new(READ_BUFFER_SIZE, NULL);
|
||||
while (!eof)
|
||||
{
|
||||
read_amount = me_read(f, temp_buffer, READ_BUFFER_SIZE, &eof);
|
||||
if (read_amount < 0)
|
||||
return (true);
|
||||
vec_u8_reserve(out, current_size + (t_usize)read_amount);
|
||||
mem_copy(&out->buffer[out->len], temp_buffer, (t_usize)read_amount);
|
||||
out->len += (t_usize)read_amount;
|
||||
}
|
||||
return (false);
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* write.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/03 15:27:33 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/11/03 15:44:38 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/fs/write.h"
|
||||
#include <unistd.h>
|
||||
|
||||
bool me_write(int fd, t_u8 *buffer, t_i64 size)
|
||||
{
|
||||
return (write(fd, buffer, size) < 0);
|
||||
}
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/05/07 11:08:03 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/10 17:54:01 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/07/30 16:09:47 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -24,8 +24,8 @@
|
|||
# define BASE_PATH "/no_base_path_defined/"
|
||||
#endif
|
||||
|
||||
#if defined(PRINT_BACKTRACE) || defined(BACKTRACE_DEEP) || true
|
||||
|
||||
// #if defined(PRINT_BACKTRACE) || defined(BACKTRACE_DEEP) || true
|
||||
#if true // TO_REMOVE
|
||||
# ifndef BACKTRACE_DEEP
|
||||
# define BACKTRACE_DEEP 256
|
||||
# endif
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/01/03 16:22:41 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/22 15:29:22 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/07/30 16:08:20 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/16 17:57:04 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/18 13:21:06 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/07/30 16:10:07 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/16 18:06:15 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/18 13:20:35 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/07/30 16:11:00 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/08/17 15:56:59 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/07/22 15:11:14 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/07/30 16:11:22 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue