Skip to content

Commit 5730986

Browse files
authored
Fix issues handling source files with spaces in their path. (#979)
Fix issues handling source files with spaces in their path.
2 parents 3353da5 + 141a340 commit 5730986

File tree

6 files changed

+20
-16
lines changed

6 files changed

+20
-16
lines changed

project/Dependencies.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import sbt._
22
/* scalafmt: { maxColumn = 120 }*/
33

44
object Dependencies {
5-
val scalametaV = "4.1.9"
5+
val scalametaV = "4.2.1"
66
val metaconfigV = "0.9.1"
77
def dotty = "0.9.0-RC1"
88
def scala210 = "2.10.6"

scalafix-core/src/main/scala/scalafix/internal/v1/package.scala

-10
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,6 @@ import scala.meta.io.RelativePath
1313

1414
package object v1 {
1515

16-
implicit class XtensionRelativePathScalafix(path: RelativePath) {
17-
// TODO: replace with RelativePath.toURI once https://github.com/scalameta/scalameta/issues/1523 is fixed
18-
def toRelativeURI: URI = {
19-
val reluri = path.toNIO.asScala.iterator.map { path =>
20-
new URI(null, null, path.getFileName.toString, null).toString
21-
}
22-
URI.create(reluri.mkString("/"))
23-
}
24-
}
25-
2616
implicit class XtensionTextDocumentFix(sdoc: s.TextDocument) {
2717
def abspath(sourceroot: URI): AbsolutePath = {
2818
val absuri = sourceroot.resolve(URI.create(sdoc.uri))

scalafix-core/src/main/scala/scalafix/v1/SemanticDocument.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@ object SemanticDocument {
5454
classLoader: ClassLoader,
5555
symtab: SymbolTable
5656
): SemanticDocument = {
57-
val semanticdbReluri = s"META-INF/semanticdb/$path.semanticdb"
58-
Option(classLoader.getResourceAsStream(semanticdbReluri)) match {
57+
val semanticdbRelPath = s"META-INF/semanticdb/$path.semanticdb"
58+
Option(classLoader.getResourceAsStream(semanticdbRelPath)) match {
5959
case Some(inputStream) =>
6060
val sdocs =
6161
try s.TextDocuments.parseFrom(inputStream).documents
6262
finally inputStream.close()
63-
val reluri = path.toRelativeURI.toString
63+
val reluri = path.toURI(isDirectory = false).toString
6464
val sdoc = sdocs.find(_.uri == reluri).getOrElse {
6565
throw Error.MissingTextDocument(reluri)
6666
}
6767
val impl = new InternalSemanticDoc(doc, sdoc, symtab)
6868
new SemanticDocument(impl)
6969
case None =>
70-
throw Error.MissingSemanticdb(semanticdbReluri)
70+
throw Error.MissingSemanticdb(semanticdbRelPath)
7171
}
7272
}
7373
}

scalafix-testkit/src/main/scala/scalafix/testkit/TestkitPath.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ final class TestkitPath(
3030
)
3131
pprint.PPrinter.BlackWhite.tokenize(map).mkString
3232
}
33-
def testName: String = testPath.toRelativeURI.toString
33+
def testName: String = testPath.toURI(isDirectory = false).toString
3434
def toInput: Input =
3535
Input.VirtualFile(testName, FileIO.slurp(input, StandardCharsets.UTF_8))
3636
def resolveOutput(props: TestkitProperties): Either[String, AbsolutePath] = {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
rules = []
3+
*/
4+
package test
5+
6+
object Object {
7+
val x = 1
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
package test
3+
4+
object Object {
5+
val x = 1
6+
}

0 commit comments

Comments
 (0)