I found a bug, if there are includes like "/include "DataBase/ReferredA2lFile.a2l " in the main a2l to be parsed, the construction of the standard file mapper fails to construct the correct path to the containing folder, that means it returns an error like this:
java.nio.file.InvalidPathException: Illegal char <:> at index 10: DataBase\C:...
at java.base/sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:204) at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:175) at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77) at java.base/sun.nio.fs.WindowsPath.parse(WindowsPath.java:92) at java.base/sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:231) at java.base/java.nio.file.Path.of(Path.java:148) at java.base/java.nio.file.Paths.get(Paths.java:69) at net.alenzen.a2l.Asap2Parser.lambda$getStandardFileMapper$2(Asap2Parser.java:90) at ...
To work this around, I added a check, if the filepath is not absolute, it constructs the path using the path of the rootFile.
I found a bug, if there are includes like "/include "DataBase/ReferredA2lFile.a2l " in the main a2l to be parsed, the construction of the standard file mapper fails to construct the correct path to the containing folder, that means it returns an error like this: java.nio.file.InvalidPathException: Illegal char <:> at index 10: DataBase\C:... at java.base/sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:204) at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:175) at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77) at java.base/sun.nio.fs.WindowsPath.parse(WindowsPath.java:92) at java.base/sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:231) at java.base/java.nio.file.Path.of(Path.java:148) at java.base/java.nio.file.Paths.get(Paths.java:69) at net.alenzen.a2l.Asap2Parser.lambda$getStandardFileMapper$2(Asap2Parser.java:90) at ...
To work this around, I added a check, if the filepath is not absolute, it constructs the path using the path of the rootFile.