2023-03-16 12:29:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2023-03-15 16:47:34 +00:00
|
|
|
#ifndef TELODENDRIA_IO_H
|
|
|
|
#define TELODENDRIA_IO_H
|
|
|
|
|
2023-03-16 12:28:55 +00:00
|
|
|
#include <stdio.h>
|
2023-03-15 16:47:34 +00:00
|
|
|
#include <stdarg.h>
|
2023-03-16 12:28:55 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#ifndef IO_BUFFER
|
|
|
|
#define IO_BUFFER 4096
|
|
|
|
#endif
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
typedef struct Io Io;
|
|
|
|
|
2023-03-16 12:29:38 +00:00
|
|
|
typedef ssize_t(IoReadFunc) (void *, void *, size_t);
|
|
|
|
typedef ssize_t(IoWriteFunc) (void *, void *, size_t);
|
|
|
|
typedef off_t(IoSeekFunc) (void *, off_t, int);
|
2023-03-15 16:47:34 +00:00
|
|
|
typedef int (IoCloseFunc) (void *);
|
|
|
|
|
|
|
|
typedef struct IoFunctions
|
|
|
|
{
|
|
|
|
IoReadFunc *read;
|
|
|
|
IoWriteFunc *write;
|
|
|
|
IoSeekFunc *seek;
|
|
|
|
IoCloseFunc *close;
|
|
|
|
} IoFunctions;
|
|
|
|
|
|
|
|
extern Io *
|
2023-03-16 12:29:38 +00:00
|
|
|
IoCreate(void *, IoFunctions);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
extern ssize_t
|
2023-03-16 12:29:38 +00:00
|
|
|
IoRead(Io *, void *, size_t);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
extern ssize_t
|
2023-03-16 12:29:38 +00:00
|
|
|
IoWrite(Io *, void *, size_t);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
extern off_t
|
2023-03-16 12:29:38 +00:00
|
|
|
IoSeek(Io *, off_t, int);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
extern int
|
2023-03-16 12:29:38 +00:00
|
|
|
IoClose(Io *);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
extern int
|
2023-03-16 12:29:38 +00:00
|
|
|
IoVprintf(Io *, const char *, va_list);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
|
|
|
extern int
|
2023-03-16 12:29:38 +00:00
|
|
|
IoPrintf(Io *, const char *,...);
|
2023-03-15 16:47:34 +00:00
|
|
|
|
2023-03-15 17:14:16 +00:00
|
|
|
extern ssize_t
|
2023-03-16 12:29:38 +00:00
|
|
|
IoCopy(Io *, Io *);
|
2023-03-15 17:14:16 +00:00
|
|
|
|
2023-03-16 12:28:55 +00:00
|
|
|
extern Io *
|
2023-03-16 12:29:38 +00:00
|
|
|
IoFd(int);
|
2023-03-16 12:28:55 +00:00
|
|
|
|
|
|
|
extern Io *
|
2023-03-16 12:29:38 +00:00
|
|
|
IoOpen(const char *, int, mode_t);
|
2023-03-16 12:28:55 +00:00
|
|
|
|
|
|
|
extern Io *
|
2023-03-16 12:29:38 +00:00
|
|
|
IoFile(FILE *);
|
2023-03-16 12:28:55 +00:00
|
|
|
|
2023-03-16 12:29:38 +00:00
|
|
|
#endif /* TELODENDRIA_IO_H */
|