radare2/libr/io
2013-09-14 14:04:08 +02:00
..
p Fix lot of warnings 2013-09-14 14:04:08 +02: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 Add px[QW], fix segmented io and handle ! pipes 2012-10-25 12:55:28 +02:00
desc.c Better r_str_hash(), Fixes in CCa, Added ?h, Better rbin for BEOS bins 2013-06-07 10:26:37 +02:00
io.c Fix some warns and enhace GIT_TAP in makefiles 2013-08-26 01:07:21 +02:00
Makefile New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
map.c Add px[QW], fix segmented io and handle ! pipes 2012-10-25 12:55:28 +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
}