Skip to content
Snippets Groups Projects
Commit 00507469 authored by Florian Angerer's avatar Florian Angerer
Browse files

Finally disabling warnings for invalid source files during deserialization.

parent c475dbb2
No related branches found
No related tags found
No related merge requests found
......@@ -1821,7 +1821,8 @@ public class RSerialize {
if (ss != null) {
String path = RSource.getPathInternal(ss.getSource());
if (path != null) {
REnvironment createSrcfile = RSrcref.createSrcfile(path);
Path relPath = Paths.get(REnvVars.rHome()).relativize(Paths.get(path));
REnvironment createSrcfile = RSrcref.createSrcfile(relPath);
Object createLloc = RSrcref.createLloc(ss, createSrcfile);
writePairListEntry(RRuntime.R_SRCREF, createLloc);
writePairListEntry(RRuntime.R_SRCFILE, createSrcfile);
......@@ -2492,9 +2493,7 @@ public class RSerialize {
SourceSection ss = getFileSourceSection(syntaxElement);
if (ss != null && serObj instanceof RAttributable) {
String pathInternal = RSource.getPathInternal(ss.getSource());
String wd = REnvVars.rHome();
Path wdPath = Paths.get(wd);
Path relPath = wdPath.relativize(Paths.get(pathInternal));
Path relPath = Paths.get(REnvVars.rHome()).relativize(Paths.get(pathInternal));
RAttributable attributable = (RAttributable) serObj;
attributable.setAttr(RRuntime.R_SRCFILE, RSrcref.createSrcfile(relPath));
RList createBlockSrcrefs = RSrcref.createBlockSrcrefs(syntaxElement);
......@@ -2739,10 +2738,15 @@ public class RSerialize {
}
}
} catch (NoSuchFileException e) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, "Missing source file: " + e.getMessage());
assert debugWarning("Missing source file: " + e.getMessage());
} catch (IOException e) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, "Cannot access source file: " + e.getMessage());
assert debugWarning("Cannot access source file: " + e.getMessage());
}
}
}
private static boolean debugWarning(String message) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, message);
return true;
}
}
......@@ -224,15 +224,20 @@ public class RSrcref {
int length = getLineStartOffset(source, srcrefVec.getDataAt(2)) + srcrefVec.getDataAt(3) - startIdx + 1;
return source.createSection(startLine, startColumn, length);
} catch (NoSuchFileException e) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, "Missing source file: " + e.getMessage());
assert debugWarning("Missing source file: " + e.getMessage());
} catch (IOException e) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, "Cannot access source file: " + e.getMessage());
assert debugWarning("Cannot access source file: " + e.getMessage());
} catch (IllegalArgumentException e) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, "Invalid source reference: " + e.getMessage());
assert debugWarning("Invalid source reference: " + e.getMessage());
}
return RSourceSectionNode.LAZY_DEPARSE;
}
private static boolean debugWarning(String message) {
RError.warning(RError.SHOW_CALLER, RError.Message.GENERIC, message);
return true;
}
private static int getLineStartOffset(Source source, int lineNum) {
try {
return source.getLineStartOffset(lineNum);
......
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