radare2/libr/io
2019-06-10 16:35:01 +02:00
..
p Improve the r2web:// IO plugin and fix a couple of bugs in there ##remote 2019-06-08 11:39:23 +02:00
cache.c Make wc- invalidate all (fully or partially) overlapping cache (#11241) 2018-08-26 17:38:11 +02:00
desc.c Fix #13391 - issues when using file:// and ood together ##debug 2019-03-16 20:46:11 +01:00
fd.c Add r_io_{desc,fd}_is_chardevice. 2018-09-13 17:52:00 +00: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 Kill RIOSection ##refactor 2019-01-31 10:53:34 -06:00
map.c Move pava from core to print and honor it in pxa ##print 2019-04-15 13:22:27 +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

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
}