X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Freadwrite.h;h=56f34a65d5b833c0d3719a77174cd89723b2255c;hb=d504e5724574f9502ec203d495284738601bb6a0;hp=5832a768a5f0659c9e9d9c67ea6d744e191b5596;hpb=9d922bc26c70f5e40b049bc64cfaac363897d4b6;p=plomrogue diff --git a/src/readwrite.h b/src/readwrite.h index 5832a76..56f34a6 100644 --- a/src/readwrite.h +++ b/src/readwrite.h @@ -6,40 +6,41 @@ #ifndef READWRITE_H #define READWRITE_H - - #include /* for FILE typedef */ #include /* for uint8_t, uint16_t, uint32_t */ -struct World; -/* Wrappers to calling from function called "f" of fopen(), fclose() and fgets() - * and calling exit_err() with appropriate error messages. +/* Wrappers to calling from function called "f" of fopen(), fclose(), fgets() + * and fwrite() and calling exit_err() with appropriate error messages. */ -extern FILE * try_fopen(char * path, char * mode, struct World * w, char * f); -extern void try_fclose(FILE * file, struct World * w, char * f); -extern void try_fgets(char * line, int size, FILE * file, - struct World * w, char * f); - +extern FILE * try_fopen(char * path, char * mode, char * f); +extern void try_fclose(FILE * file, char * f); +extern void try_fwrite(void * ptr, size_t size, size_t nmemb, FILE * stream, + char * f); + +/* Wrapper to calling fgets() from function called "f". The return code of + * fgets() is returned unless it is NULL *and* ferror() indicates that an error + * occured; otherwise end of file is assumed and NULL is returned properly. + */ +extern char * try_fgets(char * line, int size, FILE * file, char * f); +/* fgetc()/fputc() wrappers to catch EOF returns/upon it call exit_trouble(). */ +extern uint8_t try_fgetc(FILE * file, char * f); +extern void try_fputc(uint8_t c, FILE * file, char * f); /* Wrapper to successive call of fclose() from function called "f" on "file", * then unlink() on file at "p2" if it exists, then rename() on "p1" to "p2". * Used for handling atomic saving of files via temp files. */ extern void try_fclose_unlink_rename(FILE * file, char * p1, char * p2, - struct World * w, char * f); - - + char * f); /* Wrapper: Call textfile_sizes() from function called "f" to get max line - * length of "file", exit via exit_err() with trouble_msg()-generated error - * message on failure. + * length (includes newline char) of "file", exit via exit_err() with + * exit_trouble() on failure. */ -extern uint16_t get_linemax(FILE * file, struct World * w, char * f); - - +extern uint16_t get_linemax(FILE * file, char * f); /* Learn from "file" the largest line length (pointed to by "linemax_p"; length * includes newline chars) and (pointed to by "n_lines_p" if it is not set to @@ -51,17 +52,10 @@ extern uint16_t get_linemax(FILE * file, struct World * w, char * f); extern uint8_t textfile_sizes(FILE * file, uint16_t * linemax_p, uint16_t * n_lines_p); +/* Read/write via try_(fgetc|fputc)() uint32 values with defined endianness. */ +extern uint32_t read_uint32_bigendian(FILE * file); +extern void write_uint32_bigendian(uint32_t x, FILE * file); -/* These routines for reading values "x" from / writing values to "file" ensure - * a defined endianness and consistent error codes: return 0 on success and 1 on - * fgetc()/fputc() failure. - */ -extern uint8_t read_uint8(FILE * file, uint8_t * x); -extern uint8_t read_uint16_bigendian(FILE * file, uint16_t * x); -extern uint8_t read_uint32_bigendian(FILE * file, uint32_t * x); -extern uint8_t write_uint8(uint8_t x, FILE * file); -extern uint8_t write_uint16_bigendian(uint16_t x, FILE * file); -extern uint8_t write_uint32_bigendian(uint32_t x, FILE * file); #endif