radare2/libr/io
2013-12-11 12:32:15 +01:00
..
p Fix r_sys_pid_to_path for FreeBSD (thanks vsp) 2013-12-11 12:32:15 +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 mingw32 build of libzip 2013-11-15 01:25:34 +01:00
desc.c Fix #389 - Fix segfault in ptrace://-1 2013-11-26 16:16:06 +01:00
io.c Fix 'cg /' crash and only use numeric values in web yank (thanks zlul!) 2013-11-28 18:46:58 +01:00
Makefile Fix mingw32 build of libzip 2013-11-15 01:25:34 +01:00
map.c More work to make zip plugin work 2013-11-14 23:22:56 +01: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
}