Simulates a ram address space using very little ram Memory, and time on CPU.
This tool is very useful for mapping areas of an file at random positions and reading the data in order using Virtual read, or write operations.
This tool is also useful for mapping parts of an program into a simulated virtual space that is to be modified, or changed. Thus loading all the patches between. Allowing you to write directly to the patches on disk when making changes, and to the program.
Note that RandomAccessFileV is the same as RandomAccessFile except you have both a file pointer, and virtual address pointer.
The virtual pointer reads within the areas that are mapped in address space using V versions of read/write/seek.
Using method addV( long FileOffset, long DataLen, long Address, long AddressLen ). You select the positions in the file that are at the selected position. For methods readV/writeV/seekV.
Anything unmapped is read as 0x00 bytes using readV, and can not be changed using using writeV unless it is an mapped byte from the file.
If the the unmapped read, or write methods are used than file pointer moves, and also the Virtual pointer moves as it is relative to the file pointer. This allows you to mix both mapped and unmapped IO operations.
All RandomAcesssFile methods are the original operations with no overrides. So there is no performance penalties.
The virtual operations use the original read/write, but seek to the next address in the map at file position by moving up one in index in the virtual address map. The V operations do basically one additional compare. Thus as read/write are called the File pointer updates, and is added relative to Virtual pointer.
Additionally as addresses are added. Any address that writes to the start of a address will move the start of the address in file position to number of bytes written over. Matching the position on disk to bytes written over in virtual space. Any address that writes to the end of an address will crop the end of the address -1 to the start of the added address. All addresses with less than 0 bytes will be removed. Further allowing patches and updates to be easily mapped as they are added. While making it easy to read, or write over the patches and sections accordingly to your desired modifications. Because of organization and the address removing system the readV/writeV/seakV operations remain blazing fast.
When using seekV anything less than the current virtual address will scan down in index, and anything further away in index will scan up one in index.
This is a very high performance IO system for mapping and reading fragmented positions in a straight line, and at selected virtual address locations. This system allows you to modify programs/files that are bigger than the installed ram memory in your device by reading, and writing directly to the file in an simulated address space.
- Method addV( long FileOffset, long DataLen, long Address, long AddressLen )
- Method readV().
- Method readV( byte[] b ).
- Method readV( byte[] b, int off, int len ).
- Method writeV( int byte ).
- Method writeV( byte[] b ).
- Method writeV( byte[] b, int off, int len ).
- Method seekV( long Address ).
- Method getVirtualPointer().
- Method resetV().
Thus all methods from Random access file are extended. See Random access file documentation for the rest of the supported methods.
Assuming that we have the following bytes in a file named "File.bin".
import java.io.*;
public class Sample
{
public Sample()
{
try
{
//Create "File.bin", for reading, or writing.
RandomAccessFileV V = new RandomAccessFileV( new java.io.File("File.bin"), "rw" );
//Write some bytes.
V.write( new byte[]{ (byte)0x11, (byte)0x22, (byte)0x33, (byte)0x44, (byte)0x55, (byte)0x66,
(byte)0x77, (byte)0x88, (byte)0x99, (byte)0xAA, (byte)0xBB, (byte)0xCC, (byte)0xDD, (byte)0xEE, (byte)0xFF } );
//Map byte 12 as the first byte. At Virtuall address 0.
//Byte 12, 1 byte in length across, At address 0, Thus address length 1.
V.addV( 12, 1, 0, 1 );
//Byte 0, 11 byte in length across, At address 1, Thus address length 11.
V.addV( 0, 11, 1, 11 );
//Insert byte 13 at address 9.
//Byte 13, 1 byte in length across, At address 9, Thus address length 1.
V.addV( 13, 1, 9, 1 );
//Read bytes 0 to 12.
byte[] b = new byte[12];
V.readV( b );
//Print byte values.
for( int i = 0; i < b.length; System.out.print( String.format( "%1$02X", b[ i++ ] ) + "," ) );
System.out.println("");
}
catch(Exception e)
{
//Print error.
e.printStackTrace( System.out );
}
}
public static void main( String[] args )
{
new Sample();
}
}
In this example we read bytes in mixed order using the readV method. You can mix mapped and unmapped IO. This tool can be used for any fragmented format task you wish, or with tables that create an file (compressed formats). Modify this sample however you like to get a feel for how the IO system works.