dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
dio.h
Go to the documentation of this file.
1
2#ifndef DIO_H
3#define DIO_H
4
22#define DIO_ERROR_NULL_PTR -1
23#define DIO_ERROR_COPY_MISMATCH -2
24#define DIO_ERROR_COULD_NOT_OPEN_FILE -3
25#define DIO_ERROR_INVALID_STREAM -4
26
40#define DIO_STREAM_BUFFER 1
45#define DIO_STREAM_FILE 2
46
47#ifdef DISABLE_FILESYSTEM
48
49#define SEEK_SET 0
50#define SEEK_CUR 1
51#define SEEK_END 2
52
53#define dio_assert_stream( stream )
54
55#else
56#include <stdio.h>
57
62#define dio_assert_stream( stream ) \
63 assert( \
64 0 <= stream->id && \
65 ((DIO_STREAM_BUFFER == stream->type && NULL != stream->buffer.bytes ) || \
66 (DIO_STREAM_FILE == stream->type && NULL != stream->buffer.file )) )
67#endif /* DISABLE_FILESYSTEM */
68
70#ifndef DISABLE_FILESYSTEM
71 FILE* file;
72#endif /* !DISABLE_FILESYSTEM */
73 uint8_t* bytes;
74};
75
76struct DIO_STREAM {
77 int32_t id;
78 uint8_t type;
79 union DIO_BUFFER buffer;
80 int32_t buffer_sz;
81 int32_t position;
82};
83
89#define LIST_ERROR_MAX -100
90
99#define dio_list_append( node, list, list_sz, list_max, list_type ) \
100 if( (list_sz) + 1 >= (list_max) ) { \
101 g_dio_error = LIST_ERROR_MAX; \
102 } else { \
103 memory_copy_ptr( (MEMORY_PTR)&(list[list_sz]), (MEMORY_PTR)node, \
104 sizeof( list_type ) ); \
105 (list_sz)++; \
106 }
107
116#define dio_list_remove( idx, list, list_sz, list_type ) assert( (idx) < (list_sz) ); while( (idx) + 1 < (list_sz) ) { memory_copy_ptr( (MEMORY_PTR)&(list[idx]), (MEMORY_PTR)&(list[idx + 1]), sizeof( list_type ) ); (idx)++; } (list_sz)--;
117 /* unilayer_dio_list */
119
128 const char* path, const char* mode, struct DIO_STREAM* stream );
129int32_t dio_open_stream_buffer( uint8_t*, uint32_t, struct DIO_STREAM* );
130void dio_close_stream( struct DIO_STREAM* );
131int32_t dio_seek_stream( struct DIO_STREAM*, int32_t, uint8_t );
132int32_t dio_tell_stream( struct DIO_STREAM* );
133int32_t dio_sz_stream( struct DIO_STREAM* );
134int32_t dio_position_stream( struct DIO_STREAM* );
135uint8_t dio_type_stream( struct DIO_STREAM* );
136int32_t dio_read_stream( MEMORY_PTR, uint32_t, struct DIO_STREAM* );
137int32_t dio_write_stream( const MEMORY_PTR, uint32_t, struct DIO_STREAM* );
138
141uint32_t dio_reverse_endian_32( uint32_t );
142uint16_t dio_reverse_endian_16( uint16_t );
143int32_t dio_char_idx( const char*, int32_t, char );
144int32_t dio_char_idx_r( const char*, int32_t, char );
145int16_t dio_mktemp_path( char*, uint16_t, const char* );
146int32_t dio_basename( const char*, uint32_t );
147int32_t dio_copy_file( const char*, const char* );
148uint32_t dio_read_file( const char*, MEMORY_HANDLE* );
149int32_t dio_move_file( const char*, const char* );
150int16_t dio_strnchr( const char*, uint16_t, char );
151int16_t dio_itoa( char*, uint16_t, int16_t, uint8_t );
152int16_t dio_atoi( const char*, uint8_t );
153int16_t dio_snprintf( char*, uint16_t, const char*, ... );
154
155#ifdef DIO_C
156int8_t g_dio_error = 0;
157#else
159extern int8_t g_dio_error;
160#endif /* DIO_C */
161 /* unilayer_dio */
163
164#endif /* DIO_H */
165
int32_t dio_open_stream_file(const char *path, const char *mode, struct DIO_STREAM *stream)
Open a stream as a file on disk.
int8_t g_dio_error
Holds return errors for macro-based utilities.
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
Definition: dio.h:76
An emulated memory handle for modern systems. Overridden on most platforms.
Definition: memory.h:20
Definition: dio.h:69