radare2/libr/io
2018-05-21 02:22:17 +02:00
..
p Inline time.h timer api if not available :? 2018-05-21 02:22:17 +02:00
cache.c invalidate most recent changes first 2018-04-08 18:20:57 +02:00
desc.c
fd.c
io.c
iobuf.c
ioutils.c Update sdb-1.1.0, update calls to sdb_fmt() 2018-04-10 23:52:47 +02:00
Makefile
map.c
meson.build Meson: some cleanup (#10076) 2018-05-16 10:24:35 +02:00
p_cache.c fix pcache ptr-fuckup 2018-03-14 23:54:41 +01:00
plugin.c
README
section.c
undo.c Improve r2k-linux \? commands and revert io.undo patch 2018-04-03 02:02:48 +02:00
undo.h

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
}