Cthulhu  0.2.10
Cthulhu compiler collection
io implementation details

internal io implementation details More...

Collaboration diagram for io implementation details:

Data Structures

struct  io_buffer_impl_t
 a read/write in memory file More...
 
struct  io_file_impl_t
 a file descriptor More...
 
struct  io_view_impl_t
 a non-owning, readonly view of a buffer More...
 
struct  io_callbacks_t
 io callback interface More...
 
struct  io_t
 io object implementation More...
 

Typedefs

typedef size_t(* io_read_t) (io_t *self, void *dst, size_t size)
 io object read callback More...
 
typedef size_t(* io_write_t) (io_t *self, const void *src, size_t size)
 io write callback More...
 
typedef size_t(* io_fwrite_t) (io_t *self, const char *fmt, va_list args)
 io write format callback seperate from io_write_t to allow for more efficient implementations if this is not provided, io_write_t will be used instead More...
 
typedef size_t(* io_size_t) (io_t *self)
 io size callback get the total size of an io objects backing data More...
 
typedef size_t(* io_seek_t) (io_t *self, size_t offset)
 io seek callback seek from start callback More...
 
typedef void *(* io_map_t) (io_t *self, os_protect_t protect)
 io map callback map an io objects backing data into memory More...
 
typedef os_error_t(* io_close_t) (io_t *self)
 io close callback destroy an io objects backing data and any associated resources More...
 
typedef typedefCT_BEGIN_API struct io_t io_t
 an io object More...
 

Functions

CT_PUREFN CT_IO_API void * io_data (io_t *io)
 get the user data from an io object More...
 
CT_IO_API io_tio_new (const io_callbacks_t *cb, os_access_t flags, const char *name, STA_READS(cb->size) const void *data, arena_t *arena)
 create a new IO object for a given interface More...
 
CT_IO_API io_tio_init (STA_WRITES(sizeof(io_t)+cb->size) void *buffer, const io_callbacks_t *cb, os_access_t flags, const char *name, STA_READS(cb->size) const void *data, arena_t *arena)
 initialize an IO object for a given interface More...
 

Detailed Description

internal io implementation details

Warning
these are internal structures and should not be used directly

Typedef Documentation

◆ io_close_t

typedef os_error_t(* io_close_t) (io_t *self)

io close callback destroy an io objects backing data and any associated resources

Parameters
selfthe io object

Definition at line 82 of file impl.h.

◆ io_fwrite_t

typedef size_t(* io_fwrite_t) (io_t *self, const char *fmt, va_list args)

io write format callback seperate from io_write_t to allow for more efficient implementations if this is not provided, io_write_t will be used instead

Parameters
selfthe invoked io object
fmtthe format string
argsthe format arguments
Returns
the total number of bytes copied into the io object

Definition at line 50 of file impl.h.

◆ io_map_t

typedef void*(* io_map_t) (io_t *self, os_protect_t protect)

io map callback map an io objects backing data into memory

Parameters
selfthe io object
protectthe protection flags for the memory
Returns
the backing memory

Definition at line 76 of file impl.h.

◆ io_read_t

typedef size_t(* io_read_t) (io_t *self, void *dst, size_t size)

io object read callback

Parameters
selfthe invoked io object
dstthe destination buffer to copy into
sizethe size of the provided buffer
Returns
the total number of bytes copied to the buffer

Definition at line 30 of file impl.h.

◆ io_seek_t

typedef size_t(* io_seek_t) (io_t *self, size_t offset)

io seek callback seek from start callback

Parameters
selfthe io object
offsetthe offset to seek to
Returns
the actual offset after seeking

Definition at line 67 of file impl.h.

◆ io_size_t

typedef size_t(* io_size_t) (io_t *self)

io size callback get the total size of an io objects backing data

Parameters
selfthe io object
Returns
the total size, in bytes of the backing data

Definition at line 58 of file impl.h.

◆ io_t

typedef struct io_t io_t

an io object

message without source

severity [id]: main message note: note message the = in the => arrow is aligned with the | pipe the : in the note: is aligned with the | pipe all line numbers are right aligned all reports from the same file are grouped together

  • are sorted by line number
  • pipes in the same file are all aligned together rich message format

severity [id]: main message => lang [path:line] | line | source code | ^~~~ underline message

note: note message

Definition at line 9 of file console.h.

◆ io_write_t

typedef size_t(* io_write_t) (io_t *self, const void *src, size_t size)

io write callback

Parameters
selfthe invoked io object
srcthe source buffer to copy from
sizethe size of the source buffer
Returns
the total number of bytes copied into the io object

Definition at line 39 of file impl.h.

Function Documentation

◆ io_data()

CT_PUREFN CT_IO_API void* io_data ( io_t io)

get the user data from an io object

Warning
does not perform any validation on the type of the user data
Parameters
iothe io object
Returns
the user data

Definition at line 10 of file common.c.

◆ io_init()

CT_IO_API io_t* io_init ( STA_WRITES(sizeof(io_t)+cb->size) void *  buffer,
const io_callbacks_t cb,
os_access_t  flags,
const char *  name,
STA_READS(cb->size) const void *  data,
arena_t arena 
)

initialize an IO object for a given interface

Note
this initializes the object in place
if the io object does not require allocation, arena may be NULL
Precondition
buffer must point to a valid memory region of at least sizeof(io_t) + cb->size bytes
cb must point to a valid callback set
data must point to a valid memory region of cb->size bytes. if cb->size is 0, data may be NULL
Parameters
bufferthe buffer to initialize the io object in
cbthe callback set
flagsthe access flags for this object
namethe name of the object
datathe user data, this is copied into the io object
arenathe arena to allocate the io object from
Returns
the initialized IO interface

◆ io_new()

CT_IO_API io_t* io_new ( const io_callbacks_t cb,
os_access_t  flags,
const char *  name,
STA_READS(cb->size) const void *  data,
arena_t arena 
)

create a new IO object for a given interface

Precondition
cb must point to a valid callback set
data must point to a valid memory region of cb->size bytes. if cb->size is 0, data may be NULL
name must be a valid string
arena must be a valid arena
Parameters
cbthe callback set
flagsthe access flags for this object
namethe name of the object
datathe user data, this is copied into the io object
arenathe arena to allocate the io object from
Returns
a new IO interface