Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to parse command-line parameters in Scala? I personally prefer something lightweight that does not require external jar.

Related:

share|improve this question

9 Answers

up vote 59 down vote accepted

scopt/scopt

val parser = new OptionParser("scopt") {
  intOpt("f", "foo", "foo is an integer property", {v: Int => config.foo = v})
  opt("o", "output", "<file>", "output is a string property", {v: String => config.bar = v})
  booleanOpt("xyz", "xyz is a boolean property", {v: Boolean => config.xyz = v})
  keyValueOpt("l", "lib", "<libname>", "<filename>", "load library <libname>",
    {(key: String, value: String) => { config.libname = key; config.libfile = value } })
  arg("<singlefile>", "<singlefile> is an argument", {v: String => config.whatnot = v})
}
if (parser.parse(args)) {
   // do stuff
}
else {
  // arguments are bad, usage message will have been displayed
}

The above generates the following usage text:

Usage: scopt [options] <filename>

  -f <value> | --foo <value>
    foo is an integer property
  -o <file> | --output <file>
    output is a string property
  --xyz <value>
    xyz is a boolean property
  -l:<libname>=<filename> | --lib:<libname>=<filename>
    load library <libname>
  <singlefile>
    <singlefile> is an argument

This is what I currently use. Clean usage without too much baggage. (Disclaimer: I now maintain this project)

Scallop

In terms of feature set, Rogach's Scallop has the most feature I've seen thus far. See @rintcius's answer for example code.

Among the features are:

  • POSIX-style short option names (-a) with grouping (-abc)
  • Mutually exclusive and codependent option relationships, and custom validation
  • Subcommands

I haven't used this, but it looks promising.

Mailing list thread Scala CLI Library? lists

paulp/optional

By using reflection it automatically calls the main with optional argument:

object MyAwesomeCommandLineTool extends optional.Application {
  // for instance...
  def main(count: Option[Int], file: Option[java.io.File], arg1: String) {
    [...]
  }
}

In terms of the usage code, this is the most elegant, but it looks like it has a dependency on paranamer-1.3.jar. Also it requires inheriting from optional.Application.

And there's also

parse-cmd's AScalaParserClass

def main(args: Array[String]) = {
  val helpString = " -p1 out.txt -p2 22 [ -p3 100 -p4 1200 ] "
  val pp = new ParseParms( helpString )
  pp.parm("-p1", "output.txt").rex("^.*\\.txt$").req(true)    // required
    .parm("-p2", "22","^\\d{2}$",true)        // alternate form, required
    .parm("-p3","100").rex("^\\d{3}$")                        // optional
    .parm("-p4","1200").rex("^\\d{4}$").req(false)            // optional

  val result = pp.validate( args.toList )
  println(  if( result._1 ) result._3  else result._2 )
  // result is a tuple (Boolean, String, Map)
  // ._1 Boolean; false: error String contained in ._2, Map in ._3 is empty
  //              true:  successful, Map of parsed & merged parms in ._3

  System.exit(0)
}

Single file. Very lightweight, but I don't like the whole builder pattern DSL thing compared to scopt.

Apache Felix Karaf's console support

jstrachan told me about cool attribute notations by Apache Felix Karaf. He likes it so much that he's written Annotation based options parsing via Apache Karaf inviting scopt users to defect.

import org.apache.felix.gogo.commands.{Action, Option => option, Argument => argument, Command => command}
import org.osgi.service.command.CommandSession

@command(scope = "scalate", name = "jsp2ssp", description = "Converts JSP files to SSP files")
class JspConvert extends Runnable with Action {
  @argument(index = 0, name = "dir", description = "Root of the directory containing the JSP files.")
  var dir: File = new File(".")

  @option(name = "--extension", description = "Extension for output files")
  var outputExtension = ".ssp"
  @option(name = "--recursion", description = "The number of directroy levels to recusively scan file input files.")
  var recursionDepth = -1
}
share|improve this answer
4  
I like the builder pattern DSL much better, because it enables delegation of parameter construction to modules. – Daniel C. Sobral Feb 23 '10 at 12:05
The thread linked on the top of the answer has been deleted, the link is dead. – Ivan Apr 11 '12 at 14:47
1  
@Ivan Fixed it. – Eugene Yokota Apr 11 '12 at 16:10
Note: unlike shown, scopt doesn't need that many type annotations. – Blaisorblade Jul 22 '12 at 14:41

For most cases you do not need an external parser. Scala's pattern matching allows consuming args in a functional style. For example:

object MmlAlnApp {
  val usage = """
    Usage: mmlaln [--min-size num] [--max-size num] filename
  """
  def main(args: Array[String]) {
    if (args.length == 0) println(usage)
    val arglist = args.toList
    type OptionMap = Map[Symbol, Any]

    def nextOption(map : OptionMap, list: List[String]) : OptionMap = {
      def isSwitch(s : String) = (s(0) == '-')
      list match {
        case Nil => map
        case "--max-size" :: value :: tail =>
                               nextOption(map ++ Map('maxsize -> value.toInt), tail)
        case "--min-size" :: value :: tail =>
                               nextOption(map ++ Map('minsize -> value.toInt), tail)
        case string :: opt2 :: tail if isSwitch(opt2) => 
                               nextOption(map ++ Map('infile -> string), list.tail)
        case string :: Nil =>  nextOption(map ++ Map('infile -> string), list.tail)
        case option :: tail => println("Unknown option "+option) 
                               exit(1) 
      }
    }
    val options = nextOption(Map(),arglist)
    println(options)
  }
}

will print, for example:

Map('infile -> test/data/paml-aln1.phy, 'maxsize -> 4, 'minsize -> 2)

This version only takes one infile. Easy to improve on (by using a List).

Note also that this approach allows for concatenation of multiple command line arguments - even more than two!

share|improve this answer

Shameless, shameless plug: Argot

share|improve this answer

This is largely a shameless clone of my answer to the Java question of the same topic. It turns out that JewelCLI is Scala-friendly in that it doesn't require JavaBean style methods to get automatic argument naming.

JewelCLI is a Scala-friendly Java library for command-line parsing that yields clean code. It uses Proxied Interfaces Configured with Annotations to dynamically build a type-safe API for your command-line parameters.

An example parameter interface Person.scala:

import uk.co.flamingpenguin.jewel.cli.Option

trait Person {
  @Option def name: String
  @Option def times: Int
}

An example usage of the parameter interface Hello.scala:

import uk.co.flamingpenguin.jewel.cli.CliFactory.parseArguments
import uk.co.flamingpenguin.jewel.cli.ArgumentValidationException

object Hello {
  def main(args: Array[String]) {
    try {
      val person = parseArguments(classOf[Person], args:_*)
      for (i <- 1 to (person times))
        println("Hello " + (person name))
    } catch {
      case e: ArgumentValidationException => println(e getMessage)
    }
  }
}

Save copies of the files above to a single directory and download the JewelCLI 0.6 JAR to that directory as well.

Compile and run the example in Bash on Linux/Mac OS X/etc.:

scalac -cp jewelcli-0.6.jar:. Person.scala Hello.scala
scala -cp jewelcli-0.6.jar:. Hello --name="John Doe" --times=3

Compile and run the example in the Windows Command Prompt:

scalac -cp jewelcli-0.6.jar;. Person.scala Hello.scala
scala -cp jewelcli-0.6.jar;. Hello --name="John Doe" --times=3

Running the example should yield the following output:

Hello John Doe
Hello John Doe
Hello John Doe
share|improve this answer
One piece of fun in this you may notice is the (args : _*). Calling Java varargs methods from Scala requires this. This is a solution I learned from daily-scala.blogspot.com/2009/11/varargs.html on Jesse Eichar's excellent Daily Scala blog. I highly recommend Daily Scala :) – Alain O'Dea Jul 26 '10 at 23:44
Thank you for the link fix Ken :) – Alain O'Dea Nov 26 '10 at 15:07

I've just found an extensive command line parsing library in scalac's scala.tools.cmd package.

See http://www.assembla.com/code/scala-eclipse-toolchain/git/nodes/src/compiler/scala/tools/cmd?rev=f59940622e32384b1e08939effd24e924a8ba8db

share|improve this answer

another library: scarg

share|improve this answer

Here's a scala command line parser that is easy to use. It automatically formats help text, and it converts switch arguments to your desired type. Both short POSIX, and long GNU style switches are supported. Supports switches with required arguments, optional arguments, and multiple value arguments. You can even specify the finite list of acceptable values for a particular switch. Long switch names can be abbreviated on the command line for convenience. Similar to the option parser in the Ruby standard library.

share|improve this answer

There's also JCommander (disclaimer: I created it):

object Main {
  object Args {
    @Parameter(
      names = Array("-f", "--file"),
      description = "File to load. Can be specified multiple times.")
    var file: java.util.List[String] = null
  }

  def main(args: Array[String]): Unit = {
    new JCommander(Args, args.toArray: _*)
    for (filename <- Args.file) {
      val f = new File(filename)
      printf("file: %s\n", f.getName)
    }
  }
}
share|improve this answer

I realize that the question was asked some time ago, but I thought it might help some people, who are googling around (like me), and hit this page.

Scallop looks quite promising as well.

Features (quote from the linked github page):

  • flag, single-value and multiple value options
  • POSIX-style short option names (-a) with grouping (-abc)
  • GNU-style long option names (--opt)
  • Property arguments (-Dkey=value, -D key1=value key2=value)
  • Non-string types of options and properties values (with extendable converters)
  • Powerful matching on trailing args
  • Subcommands

And some example code (also from that Github page):

import org.rogach.scallop._;

object Conf extends ScallopConf(List("-c","3","-E","fruit=apple","7.2")) {
  // all options that are applicable to builder (like description, default, etc) 
  // are applicable here as well
  val count:ScallopOption[Int] = opt[Int]("count", descr = "count the trees", required = true)
                .map(1+) // also here work all standard Option methods -
                         // evaluation is deferred to after option construction
  val properties = props[String]('E')
  // types (:ScallopOption[Double]) can be omitted, here just for clarity
  val size:ScallopOption[Double] = trailArg[Double](required = false)
}


// that's it. Completely type-safe and convenient.
Conf.count() should equal (4)
Conf.properties("fruit") should equal (Some("apple"))
Conf.size.get should equal (Some(7.2))
// passing into other functions
def someInternalFunc(conf:Conf.type) {
  conf.count() should equal (4)
}
someInternalFunc(Conf)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.