radare2/libr/io
2017-03-22 16:42:58 +01:00
..
p Initial import of the io.null plugin and doc/siol.md 2017-03-21 20:00:35 +01:00
buffer.c
cache.c
desc.c Fix crash on io when freeing core->files 2017-03-02 22:47:59 +01:00
io.c Fix #7088 - Remove io->raw and .keepio 2017-03-22 16:42:58 +01:00
Jamroot
Makefile Fix r_util, r_socket linking for tcc 2017-01-30 02:16:06 +03:00
map.c Fix null deref in cbin->info 2017-01-05 10:57:50 +01:00
plugin.c Add author and version fields for RIOPlugin 2017-02-28 02:06:46 +01:00
README
section.c Apply minor naming and indent changes from the siol branch - thanks condret 2017-03-15 02:22:54 +01:00
undo.c
undo.h
vio.c Apply minor naming and indent changes from the siol branch - thanks condret 2017-03-15 02:22:54 +01:00

RIO design
==========

rio api allows to seamlessly access to underlying IO backends
and define rules on top of it to act as an mmu.

What do io.va means?
--------------------
- obey sections

- Plugins 

Actions
-------
 - open
 - read
 - seek
 - write
 - close

Layers
------
 - cache    caches write ops and modifies reads
 - map      allows to map a certain file at a given offset
 - sections like maps, but provide more information for virtual addressing

Features
--------
 - undo
 - buffer
 - desc

fn read(io: IO) {
	ut64 offset;
	if io.offset
}