forked from higherkindness/rules_scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScalaProtoWorker.scala
59 lines (50 loc) · 1.96 KB
/
ScalaProtoWorker.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package annex.scala.proto
import higherkindness.rules_scala.common.args.implicits._
import higherkindness.rules_scala.common.worker.WorkerMain
import java.io.File
import java.nio.file.{Files, Paths}
import java.util.Collections
import net.sourceforge.argparse4j.ArgumentParsers
import net.sourceforge.argparse4j.impl.Arguments
import net.sourceforge.argparse4j.inf.ArgumentParser
import protocbridge.ProtocBridge
import scala.collection.JavaConverters._
import scalapb.ScalaPbCodeGenerator
object ScalaProtoWorker extends WorkerMain[Unit] {
private[this] val argParser: ArgumentParser = {
val parser = ArgumentParsers.newFor("proto").addHelp(true).fromFilePrefix("@").build
parser
.addArgument("--proto_path")
.help("Proto path")
.metavar("proto_path")
.nargs("*")
.`type`(Arguments.fileType.verifyIsDirectory)
.setDefault_(Collections.emptyList)
parser
.addArgument("--output_dir")
.help("Output dir")
.metavar("output_dir")
.`type`(Arguments.fileType.verifyCanCreate)
parser
.addArgument("sources")
.help("Source files")
.metavar("source")
.nargs("*")
.`type`(Arguments.fileType.verifyCanRead.verifyIsFile)
.setDefault_(Collections.emptyList)
parser
}
override def init(args: Option[Array[String]]): Unit = ()
protected[this] def work(ctx: Unit, args: Array[String]): Unit = {
val namespace = argParser.parseArgs(args)
val sources = namespace.getList[File]("sources").asScala.toList
val path = namespace.getList[File]("proto_path").asScala.toList
val scalaOut = namespace.get[File]("output_dir").toPath
Files.createDirectories(scalaOut)
val params = s"--scala_out=$scalaOut" :: path.map("--proto_path " ++ _.getPath) ++ sources.map(_.getPath)
ProtocBridge.runWithGenerators(
protoc = a => com.github.os72.protocjar.Protoc.runProtoc(a.toArray),
namedGenerators = List("scala" -> ScalaPbCodeGenerator),
params = params)
}
}