Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

An attempt to use j2eo as a dependency #11

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .polystat.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ polystat {
outputTo = .
tempDir = tmp
outputFormats = [sarif]
# excludeRules = [e, c, dialect]
}
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ Write the [SARIF](https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.ht
The description follows [this guide](https://en.wikipedia.org/wiki/Command-line_interface#Command_description_syntax).
> Note: {a | b | c} means a set of _mutually-exclusive_ items.
```
polystat {eo | python} [--tmp <path>] [--in <path>] [{--include <rule...> | --exclude <rule...>}] [--sarif] [--files [path]]
polystat java [--j2eo <path>] [--tmp <path>] [--in <path>] [{--include <rule...> | --exclude <rule...>}] [--sarif] [--files <path>]
polystat {eo | java | python} [--tmp <path>] [--in <path>] [{--include <rule...> | --exclude <rule...>}] [--sarif] [--files [path]]
polystat [--version] [--help] [--config <path>]
polystat list [--config | -c]
```
Expand All @@ -34,8 +33,6 @@ polystat list [--config | -c]

## Configuration options
* `--include` and `--exclude` respectively define which rules should be included/excluded from the analysis run. These options are mutually exclusive, so specifying both should not be valid. If neither option is specified, all the available analyzers will be run. The list of available rule specifiers can be found via `polystat list` command.
* `--j2eo` options allows users to specify the path to the j2eo executable jar. If it's not specified, it looks for one in the current working diretory.
If it's not present in the current working directory, download one from Maven Central (for now, the version is hardcoded to be 0.4.0).

## Output configuration
* `--sarif` option means that the command will produce the output in the [SARIF](https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.html) format in addition to output in other formats (if any).
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ libraryDependencies ++= Seq(
"org.polystat.odin" %% "analysis" % "0.4.0",
"is.cir" %% "ciris" % "2.3.2",
"lt.dvim.ciris-hocon" %% "ciris-hocon" % "1.0.1",
"org.http4s" %% "http4s-ember-client" % "1.0.0-M32",
).map(_.cross(CrossVersion.for3Use2_13))

excludeDependencies ++= Seq(
Expand All @@ -26,6 +25,7 @@ libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % "0.14.1",
"org.scalameta" %% "munit" % "1.0.0-M3" % Test,
"org.slf4j" % "slf4j-nop" % "1.7.36",
"org.polystat" % "j2eo" % "0.4.0",
)

assembly / assemblyJarName := "polystat.jar"
Expand Down
17 changes: 4 additions & 13 deletions src/main/scala/org/polystat/HoconConfig.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ case class HoconConfig(path: Path):
end hocon

private val lang = hocon(keys.inputLanguage).as[SupportedLanguage]
private val j2eo = hocon(keys.j2eo).as[Path].option
private val input = hocon(keys.input).as[Path].option.evalMap {
case Some(path) => path.toInput
case None => IO.pure(Input.FromStdin)
Expand All @@ -53,13 +52,10 @@ case class HoconConfig(path: Path):
.option

val config: ConfigValue[IO, PolystatUsage.Analyze] =
(j2eo, inex, input, tmp, outputTo, outputFormats, lang).parMapN {
case (j2eo, inex, input, tmp, outputTo, outputFormats, lang) =>
(inex, input, tmp, outputTo, outputFormats, lang).parMapN {
case (inex, input, tmp, outputTo, outputFormats, lang) =>
PolystatUsage.Analyze(
language = lang match
case Java(_) => Java(j2eo)
case other => other
,
language = lang,
config = AnalyzerConfig(
inex = inex,
input = input,
Expand All @@ -82,18 +78,13 @@ object HoconConfig:
val outputFormats = "outputFormats"
val includeRules = "includeRules"
val excludeRules = "excludeRules"
val j2eo = "j2eo"
val explanation = s"""
|$toplevel.$inputLanguage
| The type of input files which will be analyzed. This key must be present.
| Possible values:
| "java" - only ".java" files will be analyzed.
| "eo" - only ".eo" files will be analyzed.
| "python" - only ".py" files will be analyzed.
|$toplevel.$j2eo
| Specifies the path to the J2EO executable.
| If not specified, defaults to looking for j2eo.jar in the current working directory.
| If it's not found, downloads it from maven central. The download only happens when this key is NOT provided.
|$toplevel.$input
| How the files are supplied to the analyzer.
| Can be either a path to a directory, path to a file, or absent. If absent, the code is read from standard input.
Expand Down Expand Up @@ -124,7 +115,7 @@ object HoconConfig:
extension (s: String)
def asSupportedLang: Option[SupportedLanguage] = s match
case "eo" => Some(EO)
case "java" => Some(Java(None))
case "java" => Some(Java)
case "python" => Some(Python)
case _ => None

Expand Down
68 changes: 9 additions & 59 deletions src/main/scala/org/polystat/J2EO.scala
Original file line number Diff line number Diff line change
@@ -1,72 +1,22 @@
package org.polystat
import cats.effect.*
import cats.syntax.all.*
import fs2.io.net.*
import org.http4s.ember.client.EmberClientBuilder
import org.http4s.ember.core.h2.*
import org.http4s.implicits.*
import org.http4s.Method.GET
import fs2.text.utf8
import org.http4s.Request
import org.http4s.client.middleware.FollowRedirect

import fs2.io.file.{Path, Files}
import org.http4s.Uri
import sys.process.*

object J2EO:

private val DEFAULT_J2EO_PATH = Path("j2eo.jar")
private val J2EO_URL =
"https://search.maven.org/remotecontent?filepath=org/polystat/j2eo/0.4.0/j2eo-0.4.0.jar"
// entrypoint for J2EO
import main.Main2

private def defaultJ2EO: IO[Path] =
Files[IO]
.exists(DEFAULT_J2EO_PATH)
.ifM(
ifTrue = IO.pure(DEFAULT_J2EO_PATH),
ifFalse = downloadJ2EO.as(DEFAULT_J2EO_PATH),
)

private def downloadJ2EO: IO[Unit] =
EmberClientBuilder
.default[IO]
.build
.map(client => FollowRedirect(2, _ => true)(client))
.use[Unit] { client =>
client
.run(
Request[IO](
GET,
uri = Uri.unsafeFromString(J2EO_URL),
)
)
.use(resp =>
IO.println(
"j2eo.jar was not found in the current working directory. Downloading..."
) *>
resp.body
.through(Files[IO].writeAll(DEFAULT_J2EO_PATH))
.compile
.drain
)
}
end downloadJ2EO
object J2EO:

def run(j2eo: Option[Path], inputDir: Path, outputDir: Path): IO[Unit] =
def run(inputDir: Path, outputDir: Path): IO[Unit] =
val command =
s"java -jar ${j2eo.getOrElse(DEFAULT_J2EO_PATH)} -o $outputDir $inputDir"
IO.blocking(
Main2.main(Array("-o", outputDir.toString, inputDir.toString))
)
for
j2eo <- j2eo.map(IO.pure).getOrElse(defaultJ2EO)
_ <- Files[IO]
.exists(j2eo)
.ifM(
ifTrue = for
_ <- IO.println(s"""Running "$command"...""")
_ <- IO.blocking(command.!).void
yield (),
ifFalse = IO.println(s"""J2EO executable "$j2eo" doesn't exist!"""),
)
_ <- IO.println(s"""Running "$command"...""")
_ <- command.void
yield ()
end for
end run
Expand Down
14 changes: 7 additions & 7 deletions src/main/scala/org/polystat/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ object Main extends IOApp:
case Some(path) => IO.pure(path)
case None => Files[IO].createTempDirectory
val inputExt: String = lang match
case SupportedLanguage.EO => ".eo"
case SupportedLanguage.Java(_) => ".java"
case SupportedLanguage.Python => ".py"
case SupportedLanguage.EO => ".eo"
case SupportedLanguage.Java => ".java"
case SupportedLanguage.Python => ".py"

val analysisResults: IO[Unit] =
lang match
Expand All @@ -137,7 +137,7 @@ object Main extends IOApp:
out = out,
filteredAnalyzers = filteredAnalyzers,
)
case SupportedLanguage.Java(j2eo) =>
case SupportedLanguage.Java =>
for
tmp <- tempDir
_ <- input match // writing EO files to tempDir
Expand All @@ -148,12 +148,12 @@ object Main extends IOApp:
path / "stdin.eo"
)
_ <- writeOutputTo(stdinTmp)(code)
_ <- J2EO.run(j2eo, inputDir = stdinTmp, outputDir = tmp)
_ <- J2EO.run(inputDir = stdinTmp, outputDir = tmp)
yield ()
case Input.FromFile(path) =>
J2EO.run(j2eo, inputDir = path, outputDir = tmp)
J2EO.run(inputDir = path, outputDir = tmp)
case Input.FromDirectory(path) =>
J2EO.run(j2eo, inputDir = path, outputDir = tmp)
J2EO.run(inputDir = path, outputDir = tmp)
inputFiles = readCodeFromInput(
".eo",
Input.FromDirectory(tmp),
Expand Down
3 changes: 1 addition & 2 deletions src/main/scala/org/polystat/PolystatConfig.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ object PolystatConfig:
)

enum SupportedLanguage:
case EO, Python
case Java(j2eo: Option[Path])
case EO, Python, Java
end SupportedLanguage

enum PolystatUsage:
Expand Down
24 changes: 2 additions & 22 deletions src/main/scala/org/polystat/PolystatOpts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@ object PolystatOpts extends IOApp.Simple:
"--config",
"aboba",
"--version",

// "c++",
// "--in",
// "tmp",
// "--include",
// "1",
// "--include",
// "2",
// "--files",
// "sandbox"
)

polystat
Expand Down Expand Up @@ -67,21 +57,11 @@ object PolystatOpts extends IOApp.Simple:
name = "java",
help = "Analyze Java files",
) {
(analyzerConfig, j2eo).mapN((conf, j2eo) =>
conf.map(conf =>
PolystatUsage.Analyze(SupportedLanguage.Java(j2eo), conf)
)
analyzerConfig.map(conf =>
conf.map(conf => PolystatUsage.Analyze(SupportedLanguage.Java, conf))
)
}

def j2eo: Opts[Option[Path]] = Opts
.option[JPath](
long = "j2eo",
help = "Path to a j2eo executable.",
)
.map(Path.fromNioPath)
.orNone

def analyzePython: Opts[IO[PolystatUsage.Analyze]] = Opts.subcommand(
name = "py",
help = "Analyze Python files",
Expand Down