Skip to content
Snippets Groups Projects
Commit 3d704191 authored by Zbyněk Šlajchrt's avatar Zbyněk Šlajchrt
Browse files

[GR-10705] DT package enabled.

PullRequest: fastr/1597
parents d783b03d 52853efa
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,17 @@ public class RegExp { ...@@ -118,7 +118,17 @@ public class RegExp {
} }
break; break;
case ']': case ']':
withinCharClass = false; // Detecting that the current ']' closes "empty brackets '[]'
boolean closingEmptyBrackets = (i > 0 && result.charAt(i - 1) == '[' &&
(i < 2 || result.charAt(i - 2) != '\\'));
// To leave a character class open we must already be within some and the
// current ']' must be closing empty brackets.
// Examples:
// ] - there is no character class, so the current ']' has no effect
// [\[] - the ']' closes the character class
// []\[] - the 1st ']' leaves the character class open, while the 2nd one closes
// it
withinCharClass &= closingEmptyBrackets;
break; break;
} }
i++; i++;
......
...@@ -571,10 +571,9 @@ public class FileConnections { ...@@ -571,10 +571,9 @@ public class FileConnections {
@Override @Override
protected long seekInternal(long offset, SeekMode seekMode, SeekRWMode seekRWMode) throws IOException { protected long seekInternal(long offset, SeekMode seekMode, SeekRWMode seekRWMode) throws IOException {
long result = raf.getFilePointer(); long result;
switch (seekMode) { switch (seekMode) {
case ENQUIRE: case ENQUIRE:
return result;
case START: case START:
break; break;
default: default:
...@@ -583,17 +582,31 @@ public class FileConnections { ...@@ -583,17 +582,31 @@ public class FileConnections {
switch (seekRWMode) { switch (seekRWMode) {
case LAST: case LAST:
if (lastMode == SeekRWMode.READ) { if (lastMode == SeekRWMode.READ) {
readOffset = offset; result = readOffset;
if (seekMode != SeekMode.ENQUIRE) {
readOffset = offset;
}
} else { } else {
writeOffset = offset; result = writeOffset;
if (seekMode != SeekMode.ENQUIRE) {
writeOffset = offset;
}
} }
break; break;
case READ: case READ:
readOffset = offset; result = readOffset;
if (seekMode != SeekMode.ENQUIRE) {
readOffset = offset;
}
break; break;
case WRITE: case WRITE:
writeOffset = offset; result = writeOffset;
if (seekMode != SeekMode.ENQUIRE) {
writeOffset = offset;
}
break; break;
default:
throw RInternalError.shouldNotReachHere();
} }
return result; return result;
} }
...@@ -601,25 +614,39 @@ public class FileConnections { ...@@ -601,25 +614,39 @@ public class FileConnections {
@Override @Override
public String[] readLines(int n, EnumSet<ReadLineWarning> warn, boolean skipNul) throws IOException { public String[] readLines(int n, EnumSet<ReadLineWarning> warn, boolean skipNul) throws IOException {
setReadPosition(); setReadPosition();
// the readOffset field is updated from within super.readLines via the overridden
// updateReadOffset
return super.readLines(n, warn, skipNul); return super.readLines(n, warn, skipNul);
} }
@Override @Override
public int readBin(ByteBuffer buffer) throws IOException { public int readBin(ByteBuffer buffer) throws IOException {
setReadPosition(); setReadPosition();
return super.readBin(buffer); try {
return super.readBin(buffer);
} finally {
readOffset = raf.getFilePointer();
}
} }
@Override @Override
public String readChar(int nchars, boolean useBytes) throws IOException { public String readChar(int nchars, boolean useBytes) throws IOException {
setReadPosition(); setReadPosition();
return super.readChar(nchars, useBytes); try {
return super.readChar(nchars, useBytes);
} finally {
readOffset = raf.getFilePointer();
}
} }
@Override @Override
public byte[] readBinChars() throws IOException { public byte[] readBinChars() throws IOException {
setReadPosition(); setReadPosition();
return super.readBinChars(); try {
return super.readBinChars();
} finally {
readOffset = raf.getFilePointer();
}
} }
@TruffleBoundary @TruffleBoundary
...@@ -654,18 +681,21 @@ public class FileConnections { ...@@ -654,18 +681,21 @@ public class FileConnections {
public void writeBin(ByteBuffer buffer) throws IOException { public void writeBin(ByteBuffer buffer) throws IOException {
setWritePosition(); setWritePosition();
super.writeBin(buffer); super.writeBin(buffer);
writeOffset = raf.getFilePointer();
} }
@Override @Override
public void writeChar(String s, int pad, String eos, boolean useBytes) throws IOException { public void writeChar(String s, int pad, String eos, boolean useBytes) throws IOException {
setWritePosition(); setWritePosition();
super.writeChar(s, pad, eos, useBytes); super.writeChar(s, pad, eos, useBytes);
writeOffset = raf.getFilePointer();
} }
@Override @Override
public void writeString(String s, boolean nl) throws IOException { public void writeString(String s, boolean nl) throws IOException {
setWritePosition(); setWritePosition();
super.writeString(s, nl); super.writeString(s, nl);
writeOffset = raf.getFilePointer();
} }
@Override @Override
......
...@@ -154,5 +154,8 @@ public class TestBuiltin_strsplit extends TestBase { ...@@ -154,5 +154,8 @@ public class TestBuiltin_strsplit extends TestBase {
assertEval("strsplit(c('a1a', 'a1b'), '1', fixed=FALSE)"); assertEval("strsplit(c('a1a', 'a1b'), '1', fixed=FALSE)");
assertEval("strsplit(c('','a , b'), '[[:space:]]*,[[:space:]]*')"); assertEval("strsplit(c('','a , b'), '[[:space:]]*,[[:space:]]*')");
assertEval("strsplit('a[1][1]=x11&a[1][2]=x12', ']')");
assertEval("strsplit('a[1][1]=x11&a[1][2]=x12', '[[]')");
assertEval("strsplit('a[1][1]=x11&a[1][2]=x12', '[][]')");
} }
} }
...@@ -265,6 +265,11 @@ public class TestConnections extends TestRBase { ...@@ -265,6 +265,11 @@ public class TestConnections extends TestRBase {
assertEval("truncate(fifo('__fifo_982346798', 'r', blocking=T)); unlink('__fifo_982346798')"); assertEval("truncate(fifo('__fifo_982346798', 'r', blocking=T)); unlink('__fifo_982346798')");
} }
@Test
public void testSeek() {
assertEval("f1 <- file(open='w+b', encoding='UTF-8'); writeBin(charToRaw(\"abcd\"), f1); seek(f1); seek(f1,0); seek(f1)");
}
private static final String[] LVAL = arr("T", "F"); private static final String[] LVAL = arr("T", "F");
private static String[] arr(String... args) { private static String[] arr(String... args) {
......
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