radare2/libr/io
Clément Vuchener 705e4d56bf Fixing arguments (bugs #1814 and #2117) #2143
Added proper escaping of command line
Creating a command line from arguments when debugging on Windows
Keep backslashes when not escaping a character
Assuming that the path of the binary should be in desc->name and not the command line in ptrace IO plugin
Print the backslash when it is at the end of the command line
2015-02-26 03:05:37 +01:00
..
p Fixing arguments (bugs #1814 and #2117) #2143 2015-02-26 03:05:37 +01:00
t rename r_io_open -> r_io_open_nomap and add a new r_io_open that creates a map at 0x0 2014-09-06 23:08:16 +02:00
buffer.c
cache.c fix a tiny io.cache-bug 2015-02-12 20:41:08 +01:00
desc.c Fix some COVs 2015-01-29 12:16:37 +01:00
io.c Coverifix 2015-02-18 13:05:37 +01:00
Jamroot Remove io/haret plugins (moved to r2e) 2015-01-27 18:35:48 +01:00
Makefile Honor zip configure linkage 2015-02-23 01:07:05 +01:00
map.c Add f--, fs-*, o--, enhace Po a lot 2015-01-22 02:22:29 +01:00
plugin.c Update sdb to fix '***' and add r_asm_get_plugins 2014-07-03 00:03:01 +02:00
README Add initial XCore capstone disassembler and code analysis plugins 2014-05-27 23:08:59 +02:00
section.c Implement 'o=' command like 'S=' 2015-01-27 15:35:42 +01:00
undo.c
undo.h
vio.c fix lots of spelling 2014-12-07 17:00:59 +01: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
}