-
- Downloads
Refactored reading of single elements from a connection.
Now, everything is again byte-based (even in a text-mode connection) and the read bytes are then encoded at once. This makes the code much cleaner. However, this assumes that a multi-byte character cannot contain any of the byte signatures of NUL '0x00' or line feed '0x0A'. But I haven't seen this in the UTF-8/UTF-16 tables.
Showing
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/ConnectionSupport.java 3 additions, 3 deletions.../com/oracle/truffle/r/runtime/conn/ConnectionSupport.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateRConnection.java 96 additions, 40 deletions...om/oracle/truffle/r/runtime/conn/DelegateRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateReadRConnection.java 0 additions, 56 deletions...racle/truffle/r/runtime/conn/DelegateReadRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateReadWriteRConnection.java 0 additions, 97 deletions.../truffle/r/runtime/conn/DelegateReadWriteRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateWriteRConnection.java 1 addition, 48 deletions...acle/truffle/r/runtime/conn/DelegateWriteRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/FileConnections.java 6 additions, 23 deletions...rc/com/oracle/truffle/r/runtime/conn/FileConnections.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/RConnection.java 3 additions, 3 deletions...me/src/com/oracle/truffle/r/runtime/conn/RConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/StdConnections.java 2 additions, 2 deletions...src/com/oracle/truffle/r/runtime/conn/StdConnections.java
Loading
Please register or sign in to comment