Skip to content
Snippets Groups Projects
Commit 73436cde authored by Florian Angerer's avatar Florian Angerer
Browse files

Add further verification.

parent fa2db53d
No related branches found
No related tags found
No related merge requests found
...@@ -285,7 +285,8 @@ public class RCommand { ...@@ -285,7 +285,8 @@ public class RCommand {
try { try {
Source src; Source src;
if (srcFile != null) { if (srcFile != null) {
src = Source.newBuilder("R", sb.toString(), srcFile.getName() + "#" + startLine).interactive(true).uri(srcFile.toURI()).buildLiteral(); int endLine = consoleHandler.getCurrentLineIndex();
src = Source.newBuilder("R", sb.toString(), srcFile.getName() + "#" + startLine + "-" + endLine).interactive(true).uri(srcFile.toURI()).buildLiteral();
} else { } else {
src = Source.newBuilder("R", sb.toString(), "<REPL>").interactive(true).buildLiteral(); src = Source.newBuilder("R", sb.toString(), "<REPL>").interactive(true).buildLiteral();
} }
......
...@@ -91,41 +91,53 @@ import com.oracle.truffle.r.runtime.RError; ...@@ -91,41 +91,53 @@ import com.oracle.truffle.r.runtime.RError;
} }
private Source createFullSource(Source original) { private Source createFullSource(Source original) {
String originalName = original.getName(); String originalName = original.getName();
// check if source name is like 'path/to/source.R#45-54' // check if source name is like 'path/to/source.R#45-54'
int hash_idx = originalName.lastIndexOf("#"); int hash_idx = originalName.lastIndexOf("#");
if (hash_idx == -1) { if (hash_idx == -1) {
return original; return original;
} }
String fileName = originalName.substring(0, hash_idx); String fileName = originalName.substring(0, hash_idx);
String lineRange = originalName.substring(hash_idx + 1); String lineRange = originalName.substring(hash_idx + 1);
try {
// check for line range, e.g. '45-54'
int startLine = -1;
int endLine = -1;
int dashIdx = lineRange.indexOf('-');
if (dashIdx != -1) {
startLine = Integer.parseInt(lineRange.substring(0, dashIdx));
endLine = Integer.parseInt(lineRange.substring(dashIdx + 1));
} else {
startLine = Integer.parseInt(lineRange);
endLine = startLine;
}
Builder<IOException, RuntimeException, RuntimeException> newBuilder = Source.newBuilder(new File(fileName));
if (original.isInteractive()) {
newBuilder.interactive();
}
Source fullSource = newBuilder.build();
try { // verify to avoid accidentally matching file names
// check for line range, e.g. '45-54' for (int i = 0; i < endLine - startLine + 1; i++) {
int startLine = -1; if (!original.getCharacters(i + 1).equals(fullSource.getCharacters(startLine + i))) {
int endLine = -1; return original;
int dashIdx = lineRange.indexOf('-'); }
if (dashIdx != -1) { }
startLine = Integer.parseInt(lineRange.substring(0, dashIdx));
endLine = Integer.parseInt(lineRange.substring(dashIdx + 1)); fileStartOffset = -fullSource.getLineStartOffset(startLine);
} else { return fullSource;
startLine = Integer.parseInt(lineRange); } catch (NumberFormatException e) {
} // invalid line number
Builder<IOException, RuntimeException, RuntimeException> newBuilder = Source.newBuilder(new File(fileName)); } catch (IllegalArgumentException e) {
if (original.isInteractive()) { // file name is accidentally named in the expected scheme
newBuilder.interactive(); } catch (IOException e) {
} catch (RuntimeException e) {
} }
Source fullSource = newBuilder.build(); return original;
fileStartOffset = -fullSource.getLineStartOffset(startLine);
return fullSource;
} catch (NumberFormatException e) {
} catch (IOException e) {
} catch (RuntimeException e) {
} }
return original;
}
/** /**
* Helper function that returns the last parsed token, usually used for building source sections. * Helper function that returns the last parsed token, usually used for building source sections.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment