Skip to content
Snippets Groups Projects
Commit 0dda29ae authored by Mick Jordan's avatar Mick Jordan
Browse files

avoid capturing URLs that reference src locations for internal R code

parent 05231f2b
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,8 @@ public class RSource {
LAPPLY("<lapply>"),
R_PARSEVECTOR("<R_ParseVector>"),
PAIRLIST_DEPARSE("<pairlist deparse>"),
INIT_EMBEDDED("<init embedded>");
INIT_EMBEDDED("<init embedded>"),
R_IMPL("<internal R code>");
public final String string;
......
......@@ -26,7 +26,6 @@ import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Path;
......@@ -91,13 +90,20 @@ public final class Utils {
graphPrinter.printToNetwork(true);
}
/**
* Locates a resource that is used within the implementation, e.g. a file of R code, and returns
* a {@link Source} instance that represents it. Since the location may vary between
* implementations and, in particular may not be a persistently accessible URL, we read the
* content and store it as an "internal" instance.
*/
public static Source getResourceAsSource(Class<?> clazz, String resourceName) {
try {
URL url = ResourceHandlerFactory.getHandler().getResource(clazz, resourceName);
if (url == null) {
throw RInternalError.shouldNotReachHere("resource " + resourceName + " not found, context: " + clazz);
InputStream is = ResourceHandlerFactory.getHandler().getResourceAsStream(clazz, resourceName);
if (is == null) {
throw new IOException();
}
return RSource.fromURL(url, resourceName);
String content = getResourceAsString(is);
return RSource.fromTextInternal(content, RSource.Internal.R_IMPL);
} catch (IOException ex) {
throw RInternalError.shouldNotReachHere("resource " + resourceName + " not found, context: " + clazz);
}
......
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