radare2/libr/io
2016-03-14 23:24:49 +01:00
..
p Implement ios9 pangu's tfp0 in the debugger 2016-03-14 23:24:49 +01:00
t
buffer.c
cache.c Fix regression in t.anal/x86/emu 2015-12-08 16:49:15 +01:00
desc.c
io.c Several bug fixes for gdb-arm and thumb remote debugger 2016-01-26 23:36:02 +01:00
Jamroot
Makefile Fix #4194 - Remove RCons dependency from RIO 2016-03-14 00:11:31 +01:00
map.c Fix #4010 - axg: show recursive xrefs tree 2016-02-23 02:31:53 +01:00
plugin.c
README
section.c Fix #4194 - Remove RCons dependency from RIO 2016-03-14 00:11:31 +01:00
undo.c
undo.h
vio.c

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
}