Skip to content
Snippets Groups Projects
Commit 41afd94f authored by stepan's avatar stepan
Browse files

Fix managed build and update documentation

parent 6b38cb52
No related branches found
No related tags found
No related merge requests found
...@@ -35,107 +35,123 @@ import java.nio.file.attribute.PosixFilePermissions; ...@@ -35,107 +35,123 @@ import java.nio.file.attribute.PosixFilePermissions;
import java.util.Set; import java.util.Set;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RError.Message; import com.oracle.truffle.r.runtime.RError.Message;
import com.oracle.truffle.r.runtime.ffi.BaseRFFI; import com.oracle.truffle.r.runtime.ffi.BaseRFFI;
public class Managed_Base implements BaseRFFI { public class Managed_Base implements BaseRFFI {
private static final class ManagedGetpidNode extends Node implements GetpidNode {
private int fakePid = (int) System.currentTimeMillis();
@Override
public int execute() {
return fakePid;
}
}
/** /**
* Process id is used as seed for random number generator. We return another "random" number. * Process id is used as seed for random number generator. We return another "random" number.
*/ */
@Override @Override
public GetpidNode createGetpidNode() { public GetpidNode createGetpidNode() {
return new GetpidNode() { return new ManagedGetpidNode();
private int fakePid = (int) System.currentTimeMillis(); }
@Override private static final class ManagedGetwdNode extends Node implements GetwdNode {
public int execute() { @Override
return fakePid; @TruffleBoundary
} public String execute() {
}; return Paths.get(".").toAbsolutePath().normalize().toString();
}
} }
@Override @Override
public GetwdNode createGetwdNode() { public GetwdNode createGetwdNode() {
return new GetwdNode() { return new ManagedGetwdNode();
@Override }
@TruffleBoundary
public String execute() { private static final class ManagedSetwdNode extends Node implements SetwdNode {
return Paths.get(".").toAbsolutePath().normalize().toString(); @Override
} public int execute(String dir) {
}; throw unsupported("setwd");
}
} }
@Override @Override
public SetwdNode createSetwdNode() { public SetwdNode createSetwdNode() {
return new SetwdNode() { return new ManagedSetwdNode();
@Override }
public int execute(String dir) {
throw unsupported("setwd"); private static final class ManagedMkdirNode extends Node implements MkdirNode {
} @Override
}; @TruffleBoundary
public void execute(String dir, int mode) throws IOException {
Set<PosixFilePermission> permissions = permissionsFromMode(mode);
Files.createDirectories(Paths.get(dir), PosixFilePermissions.asFileAttribute(permissions));
}
} }
@Override @Override
public MkdirNode createMkdirNode() { public MkdirNode createMkdirNode() {
return new MkdirNode() { return new ManagedMkdirNode();
@Override }
@TruffleBoundary
public void execute(String dir, int mode) throws IOException { private static final class ManagedReadLinkNode extends Node implements ReadlinkNode {
Set<PosixFilePermission> permissions = permissionsFromMode(mode); @Override
Files.createDirectories(Paths.get(dir), PosixFilePermissions.asFileAttribute(permissions)); public String execute(String path) throws IOException {
} throw unsupported("linknode");
}; }
} }
@Override @Override
public ReadlinkNode createReadlinkNode() { public ReadlinkNode createReadlinkNode() {
return new ReadlinkNode() { return new ManagedReadLinkNode();
@Override }
public String execute(String path) throws IOException {
throw unsupported("linknode"); private static final class ManagedMkdtempNode extends Node implements MkdtempNode {
@Override
@TruffleBoundary
public String execute(String template) {
Path path = null;
boolean done = false;
while (!done) {
try {
path = Paths.get(template);
Files.createDirectories(path);
done = true;
} catch (FileAlreadyExistsException e) {
// nop
} catch (IOException e) {
throw RError.error(RError.NO_CALLER, Message.GENERIC, "Cannot create temp directories.");
}
} }
}; return path.toString();
}
} }
@Override @Override
public MkdtempNode createMkdtempNode() { public MkdtempNode createMkdtempNode() {
return new MkdtempNode() { return new ManagedMkdtempNode();
@Override }
@TruffleBoundary
public String execute(String template) { private static final class ManagedChmodNode extends Node implements ChmodNode {
Path path = null; @Override
boolean done = false; @TruffleBoundary
while (!done) { public int execute(String path, int mode) {
try { try {
path = Paths.get(template); Files.setPosixFilePermissions(Paths.get(path), permissionsFromMode(mode));
Files.createDirectories(path); return mode;
done = true; } catch (IOException e) {
} catch (FileAlreadyExistsException e) { throw RError.error(RError.NO_CALLER, Message.GENERIC, "Cannot change file permissions.");
// nop
} catch (IOException e) {
throw RError.error(RError.NO_CALLER, Message.GENERIC, "Cannot create temp directories.");
}
}
return path.toString();
} }
}; }
} }
@Override @Override
public ChmodNode createChmodNode() { public ChmodNode createChmodNode() {
return new ChmodNode() { return new ManagedChmodNode();
@Override
@TruffleBoundary
public int execute(String path, int mode) {
try {
Files.setPosixFilePermissions(Paths.get(path), permissionsFromMode(mode));
return mode;
} catch (IOException e) {
throw RError.error(RError.NO_CALLER, Message.GENERIC, "Cannot change file permissions.");
}
}
};
} }
@Override @Override
...@@ -143,39 +159,41 @@ public class Managed_Base implements BaseRFFI { ...@@ -143,39 +159,41 @@ public class Managed_Base implements BaseRFFI {
return null; return null;
} }
private static final class ManagedUnameNode extends Node implements UnameNode {
@Override
public UtsName execute() {
return new UtsName() {
@Override
public String sysname() {
return System.getProperty("os.name");
}
@Override
public String release() {
return "";
}
@Override
public String version() {
return System.getProperty("os.version");
}
@Override
public String machine() {
return System.getProperty("os.arch");
}
@Override
public String nodename() {
return "";
}
};
}
}
@Override @Override
public UnameNode createUnameNode() { public UnameNode createUnameNode() {
return new UnameNode() { return new ManagedUnameNode();
@Override
public UtsName execute() {
return new UtsName() {
@Override
public String sysname() {
return System.getProperty("os.name");
}
@Override
public String release() {
return "";
}
@Override
public String version() {
return System.getProperty("os.version");
}
@Override
public String machine() {
return System.getProperty("os.arch");
}
@Override
public String nodename() {
return "";
}
};
}
};
} }
@Override @Override
......
...@@ -101,8 +101,10 @@ else ...@@ -101,8 +101,10 @@ else
ifeq ($(FASTR_RFFI),llvm) ifeq ($(FASTR_RFFI),llvm)
$(MAKE) -C src/truffle_llvm clean $(MAKE) -C src/truffle_llvm clean
else else
ifneq ($(FASTR_RFFI),managed)
$(error unknown value for FASTR_RFFI) $(error unknown value for FASTR_RFFI)
endif endif
endif
endif endif
rm -rf $(R_LIB) rm -rf $(R_LIB)
rm -rf fficall.done rm -rf fficall.done
......
...@@ -7,8 +7,7 @@ FastR with environment variable `FASTR_RFFI` set to `managed`. ...@@ -7,8 +7,7 @@ FastR with environment variable `FASTR_RFFI` set to `managed`.
# Details # Details
FastR has an 'implementation' of RFFI that does not use any native code directly (e.g. through JNI) and implements only small subset of the API. FastR has an 'implementation' of RFFI that does not use any native code directly (e.g. through JNI) and implements only small subset of the API.
Any usage of the unimplemented parts will cause error at runtime. To enable this RFFI implementation clean build FastR with environment variable Any usage of the unimplemented parts will cause error at runtime. To enable this RFFI implementation clean build FastR with environment variable
`FASTR_RFFI` set to *managed* and when running FastR set java property named *fastr.rffi.factory.class* to `FASTR_RFFI` set to *managed* and when running FastR set java property named *fastr.rffi.factory.type* to `managed`.
`com.oracle.truffle.r.runtime.ffi.managed.Managed_RFFIFactory`.
There are additional options that can restrict other usages of native code in FastR: There are additional options that can restrict other usages of native code in FastR:
...@@ -23,3 +22,10 @@ Following option can be useful for improving security when running FastR: ...@@ -23,3 +22,10 @@ Following option can be useful for improving security when running FastR:
* Set java property *fastr.objectsize.factory.class* to `com.oracle.truffle.r.runtime.data.SimpleObjectSizeFactory` to avoid * Set java property *fastr.objectsize.factory.class* to `com.oracle.truffle.r.runtime.data.SimpleObjectSizeFactory` to avoid
usage of otherwise more precise `AgentObjectSizeFactory`, which uses instrumentation agent. usage of otherwise more precise `AgentObjectSizeFactory`, which uses instrumentation agent.
Note that boolean FastR options are passed using syntax R:+/-OptionName. Command line to run FastR with all the
aforementioned options:
```
mx --J @'-DR:-LoadPackagesNativeCode -DR:-LoadProfiles -Dfastr.objectsize.factory.class=com.oracle.truffle.r.runtime.data.SimpleObjectSizeFactory -Dfastr.rffi.factory.type=managed' r
```
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