All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dbcodegen.Main.scala Maven / Gradle / Ivy

package dbcodegen

import mainargs.{arg, main, ParserForMethods}

import java.io.File
import scala.util.Using

object Main {
  @main
  def run(
    @arg(doc = "The jdbc URL for the database")
    jdbcUrl: String,
    @arg(doc = "Output path for the generated code")
    outDir: String,
    @arg(doc = "The template file for the code generator")
    templateFile: Seq[String],
    @arg(doc = "Scala version to format the code with scalafmt")
    scalaVersion: Option[String],
    @arg(doc = "Optional database username")
    username: Option[String],
    @arg(doc = "Optional database password")
    password: Option[String],
  ) = {
    val dbConfig = DbConfig(
      jdbcUrl = jdbcUrl,
      username = username,
      password = password,
    )

    val codeGeneratorConfig = CodeGeneratorConfig(
      templateFiles = templateFile.map(s => new File(s)),
      outDir = new File(outDir),
      typeMapping = (_, tpe) => tpe,
      schemaTableFilter = (_, _) => true,
      scalafmt = scalaVersion.isDefined,
      scalaVersion = scalaVersion.getOrElse("3.0.0"),
    )

    Using.resource(DbConnection.getSource(dbConfig)) { connectionSource =>
      val _ = CodeGenerator.generate(connectionSource, codeGeneratorConfig)
    }
  }

  def main(args: Array[String]): Unit = {
    val _ = ParserForMethods(this).runOrExit(args.toSeq)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy