io.github.apexdevtools.apexls.api.Workspaces.scala Maven / Gradle / Ivy
/*
Copyright (c) 2019 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
package io.github.apexdevtools.apexls.api
import com.nawforce.pkgforce.diagnostics.IssuesManager
import com.nawforce.pkgforce.names.DotName
import com.nawforce.pkgforce.workspace.{Workspace => SWorkspace}
import com.nawforce.runtime.platform.Path
import scala.collection.mutable
import scala.scalajs.js
import scala.scalajs.js.JSConverters._
import scala.scalajs.js.annotation.{JSExport, JSExportTopLevel}
@JSExportTopLevel("WorkspaceException")
class WorkspaceException(val message: String) extends Exception(message)
@JSExportTopLevel("Workspace")
class Workspace(val workspace: SWorkspace) {
@JSExport
def findType(name: String): js.Array[String] = {
workspace.get(DotName(name).asTypeName()).map(_.path.toString).toJSArray
}
}
@JSExportTopLevel("Workspaces")
object Workspaces {
private val workspaces = new mutable.HashMap[String, Workspace]()
@JSExport
def get(wsPath: String, ignoreIssues: Boolean = false): Workspace = {
val ws = workspaces.get(wsPath)
if (ws.nonEmpty)
return ws.get
val issuesManager = new IssuesManager
val workspace = SWorkspace(Path(wsPath), issuesManager)
val issues = issuesManager.hasUpdatedIssues
if (issues.nonEmpty && !ignoreIssues) {
throw new WorkspaceException(issues.head)
}
workspace
.map(workspace => {
val jsWorkspace = new Workspace(workspace)
workspaces.put(wsPath, new Workspace(workspace))
jsWorkspace
})
.orNull
}
}