-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve canonical path for src in BaseReportWriter.relativeSource #159
Resolve canonical path for src in BaseReportWriter.relativeSource #159
Conversation
We need the canonical path for the given src because our formattedSourcePaths are canonical. The sources we iniitally store are non-canonical, provided directly through SBT's settings keys, which could contain things like simlinks and '.' or '..' characters. This causes problems when trying to resolves sources because we try to match against canonical formattedSourcePaths. Misc. - Bump SBT version - Bump PGP plugin version
Related to #150 I analyzed this issue. I personally would prefer removing It would be more efficient, it would work with SBT, but unfortunately it wouldn't in some configurations in Maven plugin with Maven Scala Plugin, because Maven Scala Plugin by default canonizes all source paths. |
Ah, I didn't know this was already pointed out and discussed. If I had to choose between "always works" and "theoretically faster by unknown amounts but does not always work", I would always prefer the former, especially because we are trying to fix something that is not always working already. The current fix seems simple enough and I've tested it locally to make sure it works. Still, as long as the problem is fixed (preferably soon), I don't mind how :) If you want to explore other ways of fixing this, I'll close this PR. |
Don't close. I've already explored different solutions (among others version just like your PR). I'm not the owner of this repo, I don't decide what to merge and why. |
Ah ok, I thought you were a maintainer :) In that case it might be worthwhile for you to throw up your different versions of the fix so whoever is the maintainer can pick from a few options? |
I think we should stick with canonical paths moving forward, why don't we change the input paths to be canonical in the first place, rather than change in the report writer? |
|
Those are fair points. So you advocate just changing the writers. On 14 April 2016 at 15:22, Grzegorz Slowikowski [email protected]
|
I would throw away
|
@sksamuel I would advocate just changing
I'm not too worried about the fact that Some related findings:
|
My comments to your findings:
|
Ah, when you said you would throw away One way of looking at it is by definition, a canonical path is an absolute path. Therefore, if some (possibly downstream) logic expects an absolute path and gets a canonical path, it will work. However, logic that expects canonical paths but gets absolute paths may not work. This means canonical paths result in less potential problems (aka whack-a-mole). |
We're all in agreement we shouldn't be using relative paths. So now its On 14 April 2016 at 16:58, Lloyd [email protected] wrote:
|
For what it's worth I found a workaround for my use case; add a unmanagedSourceDirectories in Compile ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, scalaMajor)) if scalaMajor >= 11 => Seq(baseDirectory.value / ".." / "compat" / "src" / "main" / "scala-2.11").map(_.getCanonicalFile)
case _ => Nil
}
} Substituting in |
I would like to resolve this before I found interesting change from absolute to relative paths in SBT project (sbt/io#18), asked questions about it, but unfortunately with no response. My tests show that paths are not canonized even with this PR applied. Today I've asked the same questions on SBT mailing list. Waiting for response. |
I wrote that PR for SBT IO, so I'll explain why I think it was necessary. Simply put, operations like SBT IO's Asides from desiring proper behaviour, I still think that in the interest of not introducing regressions and breaking existing usages of this plugin, resolving canonical path in |
Just to add some extra history to this.
|
What are we proposing, closing without merging? |
Well canonical paths look OK to me - perhaps I could/should do a local build and test this out with some real projects? |
@inthenow thanks for chiming in :)
That's cool, I didn't know about this. It looks like it has been in SBT for some time. From what I can see, it requires you to have a different directory structure, so instead of having code in |
Give me some time to analyze this once again, please. |
OK, I think, we should merge it. It's definitely safe. I have two side questions:
|
My PR was about fixing the encapsulated behaviour of that method with respect to SBT plugins only, so you should rely on your own findings and perhaps feedback from the SBT team to see if that method is used in the compilation process. My guess is though, with the upcoming SBT client/server split, things like finding resources are likely to be in flux.
In Scala, all exceptions are unchecked and so are left for the caller to handle or else bubble up (or down, depending on your perspective) the call stack. |
Thanks. |
If nobody objects, I will merge this PR. |
Go for it |
I wanted to publish new |
We need the canonical path for the given
src
because ourformattedSourcePaths
are canonical.The sources we iniitally store are non-canonical, provided directly through SBT's settings keys, which could refer to things like simlinks and '.' or '..' characters. This causes problems when trying to resolve sources because we try to match against canonical
formattedSourcePaths
.The use case is when you have
unmanagedSourceDirectories
in projects that have non-standard base directories, such as in @lihaoyi's sourcecode. Before this fix, trying to run coverage reports would causejava.lang.RuntimeException: No source root found
errors.Misc other changes: