radare2/libr/io
2013-11-04 03:37:43 +01:00
..
p Fix w32 build 2013-11-04 03:37:43 +01:00
t Fix android build and add r_core->anal_define api 2012-09-03 01:27:52 +02:00
buffer.c New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
cache.c Fix io/cache test case 2013-10-11 00:06:26 +02:00
desc.c Fixes on io maps and fd descs 2013-10-11 03:11:15 +02:00
io.c Fixes on io maps and fd descs 2013-10-11 03:11:15 +02:00
Makefile New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
map.c Fixes on io maps and fd descs 2013-10-11 03:11:15 +02:00
plugin.c Add px[QW], fix segmented io and handle ! pipes 2012-10-25 12:55:28 +02:00
README More work to deprecate old cparse and use libr_tcc 2013-06-05 09:29:27 +02:00
section.c Add arch/bits fields in RBinSection (breaks abi) 2013-03-26 23:37:19 +01:00
undo.c Try to fix #168 rlang's python plugin not properly linked 2013-08-18 01:30:03 +02:00
undo.h * Change the name of some types 2009-07-08 13:49:55 +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.

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
}