radare2/libr/io
2014-06-05 01:32:05 +02:00
..
p Fix r_io_mach_read for partial reads on segment limits 2014-06-05 01:32:05 +02:00
t Purge all r_lib references 2014-02-20 22:16:23 +01:00
buffer.c New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
cache.c Fix heap overflow in io/cache.c (Thanks @nixerr) 2014-04-25 03:03:17 +02:00
desc.c Enable io->autofd by default and set if no curfd is set 2014-06-03 17:10:38 +02:00
io.c Fix r_io_mach_read for partial reads on segment limits 2014-06-05 01:32:05 +02:00
Jamroot Fix bjam build 2014-01-03 00:43:22 +01:00
Makefile Initial huge refactoring of r_io still work in progress 2014-05-28 04:34:12 +02:00
map.c Initial huge refactoring of r_io still work in progress 2014-05-28 04:34:12 +02:00
plugin.c Fix some warnings 2014-06-04 22:33:56 +02:00
README Add initial XCore capstone disassembler and code analysis plugins 2014-05-27 23:08:59 +02:00
section.c Rollback to use the old io api. 2014-05-31 12:14:49 +02: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
vio.c Fix some warnings 2014-06-04 22:33:56 +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
}