radare2/libr/io
2017-09-17 23:27:43 +02:00
..
p Fix warnings 2017-09-17 23:27:43 +02:00
cache.c Fix #8168 Add io.cache.{read,write} (#8510) 2017-09-15 11:32:01 +02:00
desc.c Add r_io_desc_extend 2017-09-01 17:09:17 +02:00
fd.c fix returnvalue for getbase^ 2017-09-01 01:10:32 +00:00
io.c Misc fixes to io and search 2017-09-17 01:42:56 +02:00
iobuf.c More build fixes for android 2017-08-19 20:05:21 +02:00
ioutils.c Fix O(n) duplicated calculation of skyline in _section_reapply 2017-09-17 01:10:53 +02:00
Makefile Fix static build 2017-09-12 22:31:54 +02:00
map.c Fix r_io_map_{remap,resize} (#8527) 2017-09-17 02:23:26 +02:00
meson.build Fixed meson build (#8358) 2017-08-28 15:09:58 +02:00
p_cache.c Fix #8388 - Replace RIOMap::{from,to} with RAddrInterval itv. 2017-09-14 12:40:22 +02:00
plugin.c beauty-fixes for pancake 2017-08-18 01:40:10 +00:00
README
section.c Fix O(n) duplicated calculation of skyline in _section_reapply 2017-09-17 01:10:53 +02:00
undo.c opsalamance - merge the big siol branch 2017-08-22 09:42:16 +02:00
undo.h Use void in prototypes (#7974) 2017-07-20 14:50:13 +02: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
}