Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
9cfdf369
Commit
9cfdf369
authored
8 years ago
by
Florian Angerer
Browse files
Options
Downloads
Patches
Plain Diff
Implemented some missing functionality in function C_readtablehead.
parent
78afdb0b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/foreign/ReadTableHead.java
+40
-3
40 additions, 3 deletions
...e/truffle/r/nodes/builtin/base/foreign/ReadTableHead.java
with
40 additions
and
3 deletions
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/foreign/ReadTableHead.java
+
40
−
3
View file @
9cfdf369
...
...
@@ -12,9 +12,12 @@
package
com.oracle.truffle.r.nodes.builtin.base.foreign
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.List
;
import
com.oracle.truffle.api.CompilerDirectives.TruffleBoundary
;
import
com.oracle.truffle.api.dsl.Specialization
;
import
com.oracle.truffle.r.nodes.builtin.CastBuilder.Predef
;
import
com.oracle.truffle.r.nodes.builtin.RExternalBuiltinNode
;
import
com.oracle.truffle.r.runtime.RError
;
import
com.oracle.truffle.r.runtime.RError.Message
;
...
...
@@ -28,17 +31,51 @@ public abstract class ReadTableHead extends RExternalBuiltinNode.Arg7 {
Casts
casts
=
new
Casts
(
ReadTableHead
.
class
);
casts
.
arg
(
0
).
defaultError
(
Message
.
INVALID_CONNECTION
).
mustNotBeNull
().
asIntegerVector
().
findFirst
();
casts
.
arg
(
1
).
mustNotBeNull
().
asIntegerVector
().
findFirst
();
casts
.
arg
(
2
).
mustNotBeMissing
().
mustBe
(
Predef
.
stringValue
()).
asStringVector
().
findFirst
();
casts
.
arg
(
3
).
mustNotBeMissing
().
mustBe
(
Predef
.
logicalValue
()).
asLogicalVector
().
findFirst
().
map
(
Predef
.
toBoolean
());
casts
.
arg
(
4
).
mustNotBeMissing
().
mustBe
(
Predef
.
stringValue
()).
asStringVector
().
findFirst
();
casts
.
arg
(
5
).
mustNotBeMissing
().
mustBe
(
Predef
.
stringValue
()).
asStringVector
().
findFirst
();
casts
.
arg
(
6
).
mustNotBeMissing
().
mustBe
(
Predef
.
logicalValue
()).
asLogicalVector
().
findFirst
().
map
(
Predef
.
toBoolean
());
}
@Specialization
@TruffleBoundary
public
RAbstractStringVector
read
(
int
con
,
int
nlines
,
@SuppressWarnings
(
"unused"
)
Object
commentChar
,
@SuppressWarnings
(
"unused"
)
Object
blankLinesSkip
,
@SuppressWarnings
(
"unused"
)
Object
quote
,
@SuppressWarnings
(
"unused"
)
Object
sep
,
@SuppressWarnings
(
"unused"
)
Object
skipNull
)
{
public
RAbstractStringVector
read
(
int
con
,
int
nlines
,
String
commentChar
,
boolean
blankLinesSkip
,
String
quote
,
String
sep
,
boolean
skipNull
)
{
// TODO This is quite incomplete and just uses readLines, which works for some inputs
try
(
RConnection
openConn
=
RConnection
.
fromIndex
(
con
).
forceOpen
(
"r"
))
{
return
RDataFactory
.
createStringVector
(
openConn
.
readLines
(
nlines
,
true
,
false
),
RDataFactory
.
COMPLETE_VECTOR
);
List
<
String
>
lines
=
new
ArrayList
<>(
nlines
);
int
totalLines
=
0
;
while
(
totalLines
<
nlines
)
{
String
[]
readLines
=
openConn
.
readLines
(
nlines
-
totalLines
,
true
,
skipNull
);
if
(
readLines
.
length
==
0
)
{
break
;
}
for
(
int
i
=
0
;
i
<
readLines
.
length
;
i
++)
{
postprocessLine
(
lines
,
readLines
[
i
],
commentChar
,
blankLinesSkip
,
quote
,
sep
);
}
totalLines
+=
lines
.
size
();
}
return
RDataFactory
.
createStringVector
(
lines
.
toArray
(
new
String
[
0
]),
RDataFactory
.
COMPLETE_VECTOR
);
}
catch
(
IOException
ex
)
{
throw
error
(
RError
.
Message
.
ERROR_READING_CONNECTION
,
ex
.
getMessage
());
}
}
private
static
void
postprocessLine
(
List
<
String
>
lines
,
String
string
,
String
commentChar
,
boolean
blankLinesSkip
,
@SuppressWarnings
(
"unused"
)
String
quote
,
@SuppressWarnings
(
"unused"
)
String
sep
)
{
// TODO quote, sep
if
(
blankLinesSkip
&&
string
.
isEmpty
())
{
return
;
}
if
(
commentChar
!=
null
&&
!
commentChar
.
isEmpty
()
&&
string
.
startsWith
(
commentChar
))
{
return
;
}
// no reason why not to add
lines
.
add
(
string
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment