radare2/libr/io
2014-01-24 11:13:17 +01:00
..
p Fix build 2014-01-24 11:13:17 +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 Adding the option to open more than one file via a plugin. Now all the files in a zip can be loaded using zipall:// uri. 2014-01-23 21:51:39 -06:00
Jamroot Fix bjam build 2014-01-03 00:43:22 +01:00
Makefile Remove more r_lib references 2014-01-18 02:52:49 +01:00
map.c More work to make zip plugin work 2013-11-14 23:22:56 +01:00
plugin.c Adding the option to open more than one file via a plugin. Now all the files in a zip can be loaded using zipall:// uri. 2014-01-23 21:51:39 -06:00
README More work to deprecate old cparse and use libr_tcc 2013-06-05 09:29:27 +02:00
section.c Fix #458 - Negative baddr 2013-12-19 19:43:44 +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
}