radare2/libr/io
2017-12-27 18:33:58 +01:00
..
p Fix typo regarding byte size (#9067) 2017-12-27 18:33:58 +01:00
cache.c Implement io.cache.auto to cache all reads for slow io backends 2017-12-18 01:44:22 +01:00
desc.c Implement io.cache.auto to cache all reads for slow io backends 2017-12-18 01:44:22 +01:00
fd.c fix returnvalue for getbase^ 2017-09-01 01:10:32 +00:00
io.c Add dummy fs.io plugin, r_io_system now returns char* 2017-10-22 23:52:07 +02:00
iobuf.c More build fixes for android 2017-08-19 20:05:21 +02:00
ioutils.c Fix O(n) duplicated calculation of skyline in _section_reapply 2017-09-17 01:10:53 +02:00
Makefile Fix static build 2017-09-12 22:31:54 +02:00
map.c Fix almost all warnings from the msvc build 2017-12-19 00:18:39 +01:00
meson.build Add io.winedbg to meson build 2017-09-27 09:35:09 +08:00
p_cache.c Fix #8388 - Replace RIOMap::{from,to} with RAddrInterval itv. 2017-09-14 12:40:22 +02:00
plugin.c Added json feature for oL listing (#8781) 2017-11-04 20:55:26 +01:00
README Add initial XCore capstone disassembler and code analysis plugins 2014-05-27 23:08:59 +02:00
section.c Implement fO command to ordinalize flag names matching a glob 2017-12-02 02:11:22 +01:00
undo.c opsalamance - merge the big siol branch 2017-08-22 09:42:16 +02:00
undo.h Use void in prototypes (#7974) 2017-07-20 14:50:13 +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
}