radare2/libr/io
2020-01-20 17:39:16 -05:00
..
p Fix #15789: Increment offset for reads as well (#15865) ##io 2020-01-20 17:39:16 -05:00
cache.c Minor cleanup in IO 2019-09-11 02:25:38 +02:00
desc.c Some coverity fixes (#15643) 2019-12-16 04:36:46 -06:00
fd.c 1 != 0 2019-08-30 15:39:13 +02:00
io_private.h Kill RIOSection ##refactor 2019-01-31 10:53:34 -06:00
io.c Fix #15456 - Fix reopening in write mode ##windows 2019-11-14 17:51:26 +01:00
ioutils.c Minor cleanup in IO 2019-09-11 02:25:38 +02:00
Makefile Added break to gdbserver vCont and refactored the code to use locks (#15433) 2019-11-10 19:03:56 +01:00
map.c Initial working implementation of bin.libs ##bin 2019-07-05 19:03:03 +02:00
meson.build Implement w32dbg_wrap 2019-10-28 05:56:10 +01:00
p_cache.c Fix #11112 - Rename {srwx,flags,perms} to perm. (-21 LOC) 2018-09-22 11:31:45 +02:00
plugin.c Implement 'cols' RTable.query to filter by column names ##print 2019-08-28 23:25:31 +02:00
README Add initial XCore capstone disassembler and code analysis plugins 2014-05-27 23:08:59 +02:00
undo.c Fix some warnings (#15549) 2019-12-08 12:49:58 +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
}