-
Notifications
You must be signed in to change notification settings - Fork 337
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
feat: implement Convert to collect
code action
#6969
Open
scarf005
wants to merge
2
commits into
scalameta:main
Choose a base branch
from
scarf005:feat/collect-code-action
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+476
−0
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
192 changes: 192 additions & 0 deletions
192
.../src/main/scala/scala/meta/internal/metals/codeactions/FilterMapToCollectCodeAction.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,192 @@ | ||||||
package scala.meta.internal.metals.codeactions | ||||||
|
||||||
import scala.concurrent.ExecutionContext | ||||||
import scala.concurrent.Future | ||||||
|
||||||
import scala.meta._ | ||||||
import scala.meta.internal.metals.JsonParser._ | ||||||
import scala.meta.internal.metals.MetalsEnrichments._ | ||||||
import scala.meta.internal.metals.codeactions.CodeAction | ||||||
import scala.meta.internal.metals.codeactions.CodeActionBuilder | ||||||
import scala.meta.internal.parsing.Trees | ||||||
import scala.meta.pc.CancelToken | ||||||
|
||||||
import org.eclipse.lsp4j.CodeActionParams | ||||||
import org.eclipse.{lsp4j => l} | ||||||
|
||||||
class FilterMapToCollectCodeAction(trees: Trees) extends CodeAction { | ||||||
override def kind: String = l.CodeActionKind.RefactorRewrite | ||||||
|
||||||
private case class FilterMapCollectParams( | ||||||
param: l.TextDocumentIdentifier, | ||||||
pos: l.Position, | ||||||
) | ||||||
|
||||||
override def resolveCodeAction(codeAction: l.CodeAction, token: CancelToken)( | ||||||
implicit ec: ExecutionContext | ||||||
): Option[Future[l.CodeAction]] = { | ||||||
println(codeAction.getData.toJson) | ||||||
val edits = for { | ||||||
data <- codeAction.getData.toJson.as[FilterMapCollectParams].toOption | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
params = data.param | ||||||
uri = params.getUri() | ||||||
path = uri.toAbsolutePath | ||||||
} yield trees | ||||||
.findLastEnclosingAt[Term.Apply](path, data.pos) | ||||||
.flatMap(findFilterMapChain) | ||||||
.map(toTextEdit(_)) | ||||||
.map(edit => List(uri -> List(edit))) | ||||||
.getOrElse(Nil) | ||||||
|
||||||
edits match { | ||||||
case None | (Some(Nil)) => None | ||||||
case Some(xs) => { | ||||||
val workspaceEdit = new l.WorkspaceEdit( | ||||||
xs.map { case (uri, edits) => uri -> edits.asJava }.toMap.asJava | ||||||
) | ||||||
codeAction.setEdit(workspaceEdit) | ||||||
Some(Future.successful(codeAction)) | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
override def contribute(params: CodeActionParams, token: CancelToken)(implicit | ||||||
ec: ExecutionContext | ||||||
): Future[Seq[l.CodeAction]] = Future { | ||||||
val uri = params.getTextDocument().getUri() | ||||||
|
||||||
val path = uri.toAbsolutePath | ||||||
val start = params.getRange.getStart | ||||||
|
||||||
trees | ||||||
.findLastEnclosingAt[Term.Apply](path, start) | ||||||
.flatMap(findFilterMapChain) | ||||||
.map(_ => { | ||||||
val data = | ||||||
FilterMapCollectParams( | ||||||
params.getTextDocument(), | ||||||
start, | ||||||
) | ||||||
CodeActionBuilder.build( | ||||||
title = FilterMapToCollectCodeAction.title, | ||||||
kind = this.kind, | ||||||
data = Some(data.toJsonObject), | ||||||
) | ||||||
}) | ||||||
.toSeq | ||||||
} | ||||||
|
||||||
private def toTextEdit(chain: FilterMapChain) = { | ||||||
val param = chain.filterFn.params.head | ||||||
val paramName = Term.Name(param.name.value) | ||||||
val paramPatWithType = param.decltpe match { | ||||||
case Some(tpe) => Pat.Typed(Pat.Var(paramName), tpe) | ||||||
case None => Pat.Var(paramName) | ||||||
} | ||||||
|
||||||
val collectCall = Term.Apply( | ||||||
fun = Term.Select(chain.qual, Term.Name("collect")), | ||||||
argClause = Term.ArgClause( | ||||||
values = List( | ||||||
Term.PartialFunction( | ||||||
cases = List( | ||||||
Case( | ||||||
pat = paramPatWithType, | ||||||
cond = Some(chain.filterFn.renameParam(paramName)), | ||||||
body = chain.mapFn.renameParam(paramName), | ||||||
) | ||||||
) | ||||||
) | ||||||
) | ||||||
), | ||||||
) | ||||||
val indented = collectCall.syntax.linesIterator.zipWithIndex | ||||||
.map { | ||||||
case (line, 0) => line | ||||||
case (line, _) => " " + line | ||||||
} | ||||||
.mkString("\n") | ||||||
|
||||||
new l.TextEdit(chain.pos.toLsp, indented) | ||||||
} | ||||||
|
||||||
private implicit class FunctionOps(fn: Term.Function) { | ||||||
def renameParam(to: Term.Name): Term = { | ||||||
val fnParamName = fn.params.head.name.value | ||||||
fn.body | ||||||
.transform { case Term.Name(name) if name == fnParamName => to } | ||||||
.asInstanceOf[Term] | ||||||
} | ||||||
} | ||||||
|
||||||
private def findFilterMapChain(tree: Term.Apply): Option[FilterMapChain] = { | ||||||
val x = Term.Name("x") | ||||||
def extractFunction(arg: Tree): Option[Term.Function] = arg match { | ||||||
case fn: Term.Function => Some(fn) | ||||||
case Term.Block(List(fn: Term.Function)) => extractFunction(fn) | ||||||
case ref: Term.Name => { | ||||||
Some( | ||||||
Term.Function( | ||||||
UnaryParameterList(x), | ||||||
Term.Apply(ref, Term.ArgClause(List(x))), | ||||||
) | ||||||
) | ||||||
} | ||||||
case _ => None | ||||||
} | ||||||
|
||||||
def findChain(tree: Term.Apply): Option[FilterMapChain] = | ||||||
tree match { | ||||||
case MapFunctionApply(FilterFunctionApply(base, filterArg), mapArg) => | ||||||
for { | ||||||
filterFn <- extractFunction(filterArg) | ||||||
mapFn <- extractFunction(mapArg) | ||||||
} yield FilterMapChain(tree.pos, base, filterFn, mapFn) | ||||||
case _ => None | ||||||
} | ||||||
|
||||||
findChain(tree).orElse { | ||||||
// If we're inside the chain, look at our parent | ||||||
tree.parent.flatMap { | ||||||
// We're in a method call or function, look at parent apply | ||||||
case Term.Select(_, Term.Name("map" | "filter")) | Term.Function(_) => | ||||||
tree.parent | ||||||
.flatMap(_.parent) | ||||||
.collectFirst { case parent: Term.Apply => parent } | ||||||
.flatMap(findChain) | ||||||
case _ => None | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
private object UnaryParameterList { | ||||||
def unapply(tree: Tree): Option[Name] = tree match { | ||||||
case Term.Param(_, name, _, _) => Some(name) | ||||||
case _ => None | ||||||
} | ||||||
def apply(name: Name): List[Term.Param] = List( | ||||||
Term.Param(Nil, name, None, None) | ||||||
) | ||||||
} | ||||||
|
||||||
private case class FunctionApply(val name: String) { | ||||||
def unapply(tree: Tree): Option[(Term, Term)] = tree match { | ||||||
case Term.Apply(Term.Select(base, Term.Name(`name`)), List(args)) => | ||||||
Some((base, args)) | ||||||
case _ => None | ||||||
} | ||||||
} | ||||||
private val FilterFunctionApply = new FunctionApply("filter") | ||||||
private val MapFunctionApply = new FunctionApply("map") | ||||||
|
||||||
private case class FilterMapChain( | ||||||
pos: Position, | ||||||
qual: Term, | ||||||
filterFn: Term.Function, | ||||||
mapFn: Term.Function, | ||||||
) | ||||||
} | ||||||
|
||||||
object FilterMapToCollectCodeAction { | ||||||
val title = "Convert to collect" | ||||||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if data is null then this will throw an exception