-
Notifications
You must be signed in to change notification settings - Fork 3
Fully memory map trace set #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Siebje
wants to merge
3
commits into
develop
Choose a base branch
from
feature/fully-memory-map-trace-set
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| package com.riscure.trs; | ||
|
|
||
| import java.io.IOException; | ||
| import java.nio.ByteBuffer; | ||
| import java.nio.ByteOrder; | ||
| import java.nio.channels.FileChannel; | ||
| import java.util.ArrayList; | ||
| import java.util.List; | ||
|
|
||
| public class LargePreMappedFile implements AutoCloseable { | ||
| private final FileChannel channel; | ||
|
|
||
| private final List<MappedBuffer> buffers = new ArrayList<>(); | ||
| private final long readOffset; | ||
| private final long traceSize; | ||
| private final long fileSize; | ||
|
|
||
| public LargePreMappedFile(FileChannel channel, long metaDataSize, long traceSize) throws IOException { | ||
| this.channel = channel; | ||
| this.readOffset = metaDataSize; | ||
| this.traceSize = traceSize; | ||
| this.fileSize = channel.size() - readOffset; | ||
|
|
||
| mapBuffers(); | ||
| } | ||
|
|
||
| public ByteBuffer getBuffer(int index) { | ||
| if (traceSize == 0) { | ||
| return ByteBuffer.wrap(new byte[0]); | ||
| } | ||
| return findBufferAndMoveToTrace(index); | ||
| } | ||
|
|
||
| private ByteBuffer findBufferAndMoveToTrace(int traceIndex) { | ||
| MappedBuffer mappedBuffer = buffers.stream() | ||
| .filter(buffer -> traceIndex >= buffer.getFirstTraceIndex() && | ||
| traceIndex < buffer.getFirstTraceIndex() + buffer.getNumberOfTraces()) | ||
| .findFirst() | ||
| .orElseThrow(); | ||
| ByteBuffer buffer = mappedBuffer.getBuffer(); | ||
| int traceIndexInBuffer = traceIndex - mappedBuffer.getFirstTraceIndex(); | ||
| long positionInBuffer = traceIndexInBuffer * traceSize; | ||
| buffer.position((int) positionInBuffer); | ||
| return buffer; | ||
| } | ||
|
|
||
| private void mapBuffers() { | ||
| if (traceSize > 0) { | ||
| int tracesPerBuffer = (int) (Integer.MAX_VALUE / traceSize); | ||
| long maximumBufferSize = tracesPerBuffer * traceSize; | ||
|
|
||
| int firstTraceIndex = 0; | ||
| for (long offset = 0; offset < fileSize; offset += maximumBufferSize) { | ||
| buffers.add(mapBuffer(firstTraceIndex, maximumBufferSize)); | ||
| firstTraceIndex += tracesPerBuffer; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| private MappedBuffer mapBuffer(int firstTraceIndex, long bufferSize) { | ||
| try { | ||
| long bufferStart = firstTraceIndex * traceSize; | ||
| long limitedBufferSize = Math.min(fileSize - bufferStart, bufferSize); | ||
| MappedBuffer mappedBuffer = new MappedBuffer(this.channel.map(FileChannel.MapMode.READ_ONLY, readOffset + bufferStart, limitedBufferSize), | ||
|
Siebje marked this conversation as resolved.
|
||
| firstTraceIndex, | ||
| (int) (traceSize > 0 ? (limitedBufferSize / traceSize) : 0)); | ||
| mappedBuffer.buffer.order(ByteOrder.LITTLE_ENDIAN); | ||
| return mappedBuffer; | ||
| } catch (IOException e) { | ||
| throw new RuntimeException(e); | ||
| } | ||
| } | ||
|
|
||
| @Override | ||
| public void close() { | ||
| buffers.clear(); | ||
| } | ||
|
|
||
| private static class MappedBuffer { | ||
| private final ByteBuffer buffer; | ||
| private final int firstTraceIndex; | ||
| private final int numberOfTraces; | ||
|
|
||
| MappedBuffer(ByteBuffer buffer, int firstTraceIndex, int numberOfTraces) { | ||
| this.buffer = buffer; | ||
| this.firstTraceIndex = firstTraceIndex; | ||
| this.numberOfTraces = numberOfTraces; | ||
| } | ||
|
|
||
| public ByteBuffer getBuffer() { | ||
| return buffer; | ||
| } | ||
|
|
||
| public int getFirstTraceIndex() { | ||
| return firstTraceIndex; | ||
| } | ||
|
|
||
| public int getNumberOfTraces() { | ||
| return numberOfTraces; | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.