radare2/libr/io
2019-07-05 19:03:03 +02:00
..
p Fix io/self vm mapping late calculations. 2019-06-21 14:39:52 +02:00
cache.c More spelling fixes in the code 2019-06-20 13:36:02 +08:00
desc.c Fix #13391 - issues when using file:// and ood together ##debug 2019-03-16 20:46:11 +01:00
fd.c Initial working implementation of bin.libs ##bin 2019-07-05 19:03:03 +02:00
io_private.h Kill RIOSection ##refactor 2019-01-31 10:53:34 -06:00
io.c Rewrite the RBuffer API to make it safer and adjust the codebase ##refactor (#13656) 2019-05-15 15:34:06 +02:00
ioutils.c Honor more segments vs sections, for jmptbl, fatmacho, zeropage ##bin 2019-06-10 16:35:01 +02:00
Makefile s/CORELIB/R2_PLUGIN_INCORE/g (#14295) 2019-06-13 19:12:51 +02:00
map.c Initial working implementation of bin.libs ##bin 2019-07-05 19:03:03 +02:00
meson.build Kill RIOSection ##refactor 2019-01-31 10:53:34 -06:00
p_cache.c Fix #11112 - Rename {srwx,flags,perms} to perm. (-21 LOC) 2018-09-22 11:31:45 +02:00
plugin.c Update plugins.nogpl.cfg and fix a couple of warnings 2019-02-11 12:18:23 +01:00
README
undo.c Almost completely kill RIOSection from io and core (-218LOC) ##refactoring 2019-01-13 03:07:51 +01: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
}