radare2/libr/io
2014-10-26 22:37:06 +01:00
..
p Identify the two ptrace issues and fix them all 2014-10-19 18:28:42 +02:00
t
buffer.c
cache.c Somewhat better BoostJam support 2014-10-26 02:47:08 +02:00
desc.c tiny improvements for r_io_desc_list 2014-10-26 22:37:06 +01:00
io.c set RIOMap->flags on r_io_reopen 2014-10-22 20:25:47 +02:00
Jamroot Somewhat better BoostJam support 2014-10-26 02:47:08 +02:00
Makefile
map.c make r_io_map_list show rwx-info 2014-10-23 13:01:14 +02:00
plugin.c
README
section.c fix #1366 and make r_io_close keeping the current desc if it does not get close 2014-09-16 23:12:37 +02:00
undo.c
undo.h
vio.c make r_io_mwrite check map->flags 2014-10-23 13:17:52 +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
}