com.github.xuwei-k:optparse-applicative_native0.3_2.11

optparse-applicative is a Scala library for parsing options on the command line, providing a powerful applicative interface for composing these options


Keywords
applicative, command-line-parser, scala, scala-js, scala-native, scalaz
License
BSD-3-Clause

Documentation

scala-optparse-applicative

scaladoc

A port of the optparse-applicative library to the Scala programming language.

Most functionality has been ported, except completion.

This library depends on Scalaz for functional data structures, type classes and combinators.

How to get it

for jvm

libraryDependencies += "com.github.xuwei-k" %% "optparse-applicative" % "0.9.3"

for scala-js, scala-native

libraryDependencies += "com.github.xuwei-k" %%% "optparse-applicative" % "0.9.3"

License

This library is distributed under a BSD 3-Clause license (see LICENSE).

Simple example

This example follows the one from the optparse-applicative docs.

case class Sample(hello: String, quiet: Boolean)

object SampleMain {

  val sample: Parser[Sample] =
    ^(
      strOption(long("hello"), metavar("TARGET"), help("Target for the greeting")),
      switch(long("quiet"), help("Whether to be quiet"))
    )(Sample.apply)

  def greet(s: Sample): Unit = s match {
    case Sample(h, false) => println("Hello, " ++ h)
    case _ =>
  }

  def main(args: Array[String]): Unit = {
    val opts = info(sample <*> helper,
      progDesc("Print a greeting for TARGET"),
      header("hello - a test for scala-optparse-applicative"))
    greet(execParser(args, "SampleMain", opts))
  }

}

When run with the --help option, it prints:

hello - a test for scala-optparse-applicative

Usage: SampleMain --hello TARGET [--quiet]
  Print a greeting for TARGET

Available options:
  -h,--help                Show this help text
  --hello TARGET           Target for the greeting
  --quiet                  Whether to be quiet

Scalaz 7.2.x

https://github.com/xuwei-k/optparse-applicative/tree/0.8.x