Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
* //read in the file
* MatFileReader mfr = new MatFileReader( "mat_file.mat" );
*
* //get array of a name "my_array" from file
* MLArray mlArrayRetrived = mfr.getMLArray( "my_array" );
*
* //or get the collection of all arrays that were stored in the file
* Map content = mfr.getContent();
*
*
* @see ca.mjdsystems.jmatio.io.MatFileFilter
* @author Wojciech Gradkowski ([email protected])
*/
/**
* @author Wojciech Gradkowski ([email protected])
*
*/
public class MatFileReader {
public static final int MEMORY_MAPPED_FILE = 1;
public static final int DIRECT_BYTE_BUFFER = 2;
public static final int HEAP_BYTE_BUFFER = 4;
/**
* Type of matlab mat file.
*/
private final MatFileType matType;
/**
* MAT-file header
*/
MatFileHeader matFileHeader;
/**
* Container for red MLArrays
*/
Map data;
/**
* Array name filter
*/
private MatFileFilter filter;
/**
* Whether or not we have found an MCOS type variable. Needed to know if further processing is needed.
*/
private Set mcosToFind = new HashSet();
/**
* Holds the likely candidate for the MCOS extra data at the end of a MAT file.
*/
private MLUInt8 mcosData;
/**
* Creates instance of MatFileReader and reads MAT-file
* from location given as fileName.
*
* This method reads MAT-file without filtering.
*
* @param fileName the MAT-file path String
* @throws IOException when error occurred while processing the file.
*/
public MatFileReader(String fileName) throws FileNotFoundException, IOException {
this(new File(fileName), new MatFileFilter(), MatFileType.Regular);
}
/**
* Creates instance of MatFileReader and reads MAT-file
* from location given as fileName.
*
* Results are filtered by MatFileFilter. Arrays that do not meet
* filter match condition will not be available in results.
*
* @param fileName the MAT-file path String
* @param MatFileFilter array name filter.
* @throws IOException when error occurred while processing the file.
*/
public MatFileReader(String fileName, MatFileFilter filter) throws IOException {
this(new File(fileName), filter, MatFileType.Regular);
}
/**
* Creates instance of MatFileReader and reads MAT-file
* from file.
*
* This method reads MAT-file without filtering.
*
* @param file the MAT-file
* @throws IOException when error occurred while processing the file.
*/
public MatFileReader(File file) throws IOException {
this(file, new MatFileFilter(), MatFileType.Regular);
}
/**
* Creates instance of MatFileReader and reads MAT-file from
* file.
*
* Results are filtered by MatFileFilter. Arrays that do not
* meet filter match condition will not be available in results.
*
* Note: this method reads file using the memory mapped file policy, see
* notes to {@link #read(File, MatFileFilter, com.jmatio.io.MatFileReader.MallocPolicy)}
*
* @param file
* the MAT-file
* @param MatFileFilter
* array name filter.
* @throws IOException
* when error occurred while processing the file.
*/
public MatFileReader(File file, MatFileFilter filter, MatFileType matType) throws IOException {
this(matType);
read(file, filter, MEMORY_MAPPED_FILE);
}
public MatFileReader(File file, MatFileFilter filter) throws IOException {
this(file, filter, MatFileType.Regular);
}
public MatFileReader(MatFileType matType) {
this.matType = matType;
filter = new MatFileFilter();
data = new LinkedHashMap();
}
public MatFileReader() {
this(MatFileType.Regular);
}
/**
* Creates instance of MatFileReader and reads MAT-file from
* file.
*
* This method reads MAT-file without filtering.
*
* @param stream
* the MAT-file stream
* @throws IOException
* when error occurred while processing the file.
*/
public MatFileReader(InputStream stream, MatFileType type) throws IOException {
this(stream, new MatFileFilter(), type);
}
/**
* Creates instance of MatFileReader and reads MAT-file from
* file.
*
* Results are filtered by MatFileFilter. Arrays that do not
* meet filter match condition will not be available in results.
*
* Note: this method reads file using the memory mapped file policy, see
* notes to
* {@link #read(File, MatFileFilter, com.jmatio.io.MatFileReader.MallocPolicy)}
*
*
* @param stream
* the MAT-file stream
* @param MatFileFilter
* array name filter.
* @throws IOException
* when error occurred while processing the file.
*/
public MatFileReader(InputStream stream, MatFileFilter filter, MatFileType type) throws IOException {
this(type);
read(stream, filter);
}
/**
* Reads the content of a MAT-file and returns the mapped content.
*
* This method calls
* read(file, new MatFileFilter(), MallocPolicy.MEMORY_MAPPED_FILE).
*
* @param file
* a valid MAT-file file to be read
* @return the same as {@link #getContent()}
* @throws IOException
* if error occurs during file processing
*/
public synchronized Map read(File file) throws IOException {
return read(file, new MatFileFilter(), MEMORY_MAPPED_FILE);
}
/**
* Reads the content of a MAT-file and returns the mapped content.
*
* This method calls read(stream, new MatFileFilter()).
*
* @param stream
* a valid MAT-file stream to be read
* @return the same as {@link #getContent()}
* @throws IOException
* if error occurs during file processing
*/
public synchronized Map read(InputStream stream) throws IOException {
return read(stream, new MatFileFilter());
}
/**
* Reads the content of a MAT-file and returns the mapped content.
*
* This method calls
* read(file, new MatFileFilter(), policy).
*
* @param file
* a valid MAT-file file to be read
* @param policy
* the file memory allocation policy
* @return the same as {@link #getContent()}
* @throws IOException
* if error occurs during file processing
*/
public synchronized Map read(File file, int policy) throws IOException {
return read(file, new MatFileFilter(), policy);
}
/**
* Reads the content of a MAT-file and returns the mapped content.
*
* Because of java bug #4724038
* which disables releasing the memory mapped resource, additional different
* allocation modes are available.
*
*
{@link #MEMORY_MAPPED_FILE} - a memory mapped file
*
{@link #DIRECT_BYTE_BUFFER} - a uses
* {@link ByteBuffer#allocateDirect(int)} method to read in
* the file contents
*
{@link #HEAP_BYTE_BUFFER} - a uses
* {@link ByteBuffer#allocate(int)} method to read in the
* file contents
*
* Note: memory mapped file will try to invoke a nasty code to relase
* it's resources
*
* @param file
* a valid MAT-file file to be read
* @param filter
* the array filter applied during reading
* @param policy
* the file memory allocation policy
* @return the same as {@link #getContent()}
* @see MatFileFilter
* @throws IOException
* if error occurs during file processing
*/
private static final int DIRECT_BUFFER_LIMIT = 1 << 25;
public synchronized Map read(File file, MatFileFilter filter, int policy) throws IOException {
return read(new RandomAccessFile(file, "r"), filter, policy);
}
public synchronized Map read(RandomAccessFile raFile, MatFileFilter filter, int policy) throws IOException {
this.filter = filter;
//clear the results
for (String key : data.keySet()) {
data.remove(key);
}
FileChannel roChannel = null;
ByteBuffer buf = null;
WeakReference bufferWeakRef = null;
try {
//Create a read-only memory-mapped file
roChannel = raFile.getChannel();
// until java bug #4715154 is fixed I am not using memory mapped files
// The bug disables re-opening the memory mapped files for writing
// or deleting until the VM stops working. In real life I need to open
// and update files
switch (policy) {
case DIRECT_BYTE_BUFFER:
buf = ByteBuffer.allocateDirect((int) roChannel.size());
roChannel.read(buf, 0);
buf.rewind();
break;
case HEAP_BYTE_BUFFER:
int filesize = (int) roChannel.size();
System.gc();
buf = ByteBuffer.allocate(filesize);
// The following two methods couldn't be used (at least under MS Windows)
// since they are implemented in a suboptimal way. Each of them
// allocates its own _direct_ buffer of exactly the same size,
// the buffer passed as parameter has, reads data into it and
// only afterwards moves data into the buffer passed as parameter.
// roChannel.read(buf, 0); // ends up in outOfMemory
// raFile.readFully(buf.array()); // ends up in outOfMemory
int numberOfBlocks = filesize / DIRECT_BUFFER_LIMIT + ((filesize % DIRECT_BUFFER_LIMIT) > 0 ? 1 : 0);
if (numberOfBlocks > 1) {
ByteBuffer tempByteBuffer = ByteBuffer.allocateDirect(DIRECT_BUFFER_LIMIT);
for (long block = 0; block < numberOfBlocks; block++) {
tempByteBuffer.clear();
roChannel.read(tempByteBuffer, block * DIRECT_BUFFER_LIMIT);
tempByteBuffer.flip();
buf.put(tempByteBuffer);
}
tempByteBuffer = null;
} else
roChannel.read(buf, 0);
buf.rewind();
break;
case MEMORY_MAPPED_FILE:
buf = roChannel.map(FileChannel.MapMode.READ_ONLY, 0, (int) roChannel.size());
bufferWeakRef = new WeakReference((MappedByteBuffer) buf);
break;
default:
throw new IllegalArgumentException("Unknown file allocation policy");
}
// Do the actual work.
parseData(buf);
return getContent();
} catch (IOException e) {
throw e;
} finally {
if (roChannel != null) {
roChannel.close();
}
if (raFile != null) {
raFile.close();
}
if (buf != null && bufferWeakRef != null && policy == MEMORY_MAPPED_FILE) {
try {
clean(buf);
} catch (Exception e) {
int GC_TIMEOUT_MS = 1000;
buf = null;
long start = System.currentTimeMillis();
while (bufferWeakRef.get() != null) {
if (System.currentTimeMillis() - start > GC_TIMEOUT_MS) {
break; //a hell cannot be unmapped - hopefully GC will
//do it's job later
}
System.gc();
Thread.yield();
}
}
}
}
}
private void parseData(ByteBuffer buf) throws IOException {
//read in file header
readHeader(buf);
while (buf.remaining() > 0) {
readData(buf);
}
if (!mcosToFind.isEmpty()) {
parseMCOS(mcosData, mcosToFind);
if (data.get("@") == mcosData) {
data.remove("@");
}
for (Map.Entry it : data.entrySet()) {
if (it.getValue() == mcosData) {
data.remove(it.getKey());
break;
}
}
}
mcosData = null;
mcosToFind.clear();
}
private static void parseMCOS(MLUInt8 mcosData, Set mcosPlaceholders) throws IOException {
// First, parse back out the mcosData.
ByteBuffer buffer = mcosData.getRealByteBuffer();
ByteBufferInputStream dataStream = new ByteBufferInputStream(buffer, buffer.limit());
MatFileReader matFile = new MatFileReader(dataStream, MatFileType.ReducedHeader);
Map mcosContent = matFile.getContent();
MLCell mcosInfo = (MLCell) ((MLStructure) mcosContent.get("@0")).getField("MCOS");
ByteBuffer mcosDataBuf = ((MLUInt8) mcosInfo.get(0)).getRealByteBuffer();
// This bytebuffer needs to be read in the byte order of the MAT file order. Thus fix.
mcosDataBuf.order(matFile.getMatFileHeader().getByteOrder());
// Parse out the data buffer. First get version information. Should always equal 2.
int version = mcosDataBuf.getInt();
if (version != 2) {
throw new IllegalStateException("MAT file's MCOS data has a different version(?). Got: " + version + ", wanted 2.");
}
// Get the string count + define the string array.
int strCount = mcosDataBuf.getInt();
String[] strs = new String[strCount];
// Get the segment indexes.
int segmentIndexes[] = new int[6];
for (int i = 0; i < segmentIndexes.length; ++i) {
segmentIndexes[i] = mcosDataBuf.getInt();
}
// There should now be 8 0 bytes. Make sure this is true to avoid object format changes.
if (mcosDataBuf.getLong() != 0) {
throw new IllegalStateException("MAT file's MCOS data has different byte values for unknown fields! Aborting!");
}
// Finally, read in each string. Java doesn't provide an easy way to do this in bulk, so just use a stupid formula for now.
StringBuilder sb = new StringBuilder();
for (int i = 0; i < strCount; ++i) {
sb.setLength(0);
char next = (char) mcosDataBuf.get();
while (next != '\0') {
sb.append(next);
next = (char) mcosDataBuf.get();
}
strs[i] = sb.toString();
}
// Sanity check, next 8 byte aligned position in the buffer should equal the start of the first segment!
if (((mcosDataBuf.position() + 0x07) & ~0x07) != segmentIndexes[0]) {
throw new IllegalStateException("Data from the strings section was not all read!");
}
// First segment, class information. Really just need the class names.
List classNamesList = new ArrayList();
mcosDataBuf.position(segmentIndexes[0]);
// There are 16 unknown bytes. Ensure they are 0.
if (mcosDataBuf.getLong() != 0 || mcosDataBuf.getLong() != 0) {
throw new IllegalStateException("MAT file's MCOS data has different byte values for unknown fields! Aborting!");
}
while (mcosDataBuf.position() < segmentIndexes[1]) {
mcosDataBuf.getInt(); // packageNameIndex - Unused for now.
int classNameIndex = mcosDataBuf.getInt();
String className = strs[classNameIndex - 1];
classNamesList.add(className);
if (mcosDataBuf.getLong() != 0) {
throw new IllegalStateException("MAT file's MCOS data has different byte values for unknown fields! Aborting!");
}
}
// Sanity check, position in the buffer should equal the start of the second segment!
if (mcosDataBuf.position() != segmentIndexes[1]) {
throw new IllegalStateException("Data from the class section was not all read!");
}
// @todo: Second segment, Object properties containing other properties. Not used yet, thus ignored.
mcosDataBuf.position(segmentIndexes[2]);
// Third segment. Contains all the useful per-object information.
Map objectInfoList = new HashMap();
// There are 24 unknown bytes. Ensure they are 0.
if (mcosDataBuf.getLong() != 0 || mcosDataBuf.getLong() != 0 || mcosDataBuf.getLong() != 0) {
throw new IllegalStateException("MAT file's MCOS data has different byte values for unknown fields! Aborting!");
}
int objectCount = 1;
while (mcosDataBuf.position() < segmentIndexes[3]) {
// First fetch the data.
int classIndex = mcosDataBuf.getInt();
if (mcosDataBuf.getLong() != 0) {
throw new IllegalStateException("MAT file's MCOS data has different byte values for unknown fields! Aborting!");
}
int segment2Index = mcosDataBuf.getInt();
int segment4Index = mcosDataBuf.getInt();
mcosDataBuf.getInt(); // This value is random. But we need to move the buffer forward, so read it without a check.
int objectId = objectCount++; // It would appear that the "objectId" is in fact some other MATLAB value. Thus ignore,
// and use the index into this segment as the id instead.
// Then parse it into the form needed for the object.
objectInfoList.put(objectId - 1, new MatMCOSObjectInformation(classNamesList.get(classIndex - 1), classIndex, objectId, segment2Index, segment4Index));
}
// Sanity check, position in the buffer should equal the start of the fourth segment!
if (mcosDataBuf.position() != segmentIndexes[3]) {
throw new IllegalStateException("Data from the object section was not all read! At: " + mcosDataBuf.position() + ", wanted: " + segmentIndexes[3]);
}
// Fourth segment. Contains the regular properties for objects.
// There are 8 unknown bytes. Ensure they are 0.
if (mcosDataBuf.getLong() != 0) {
throw new IllegalStateException("MAT file's MCOS data has different byte values for unknown fields! Aborting!");
}
List