What's the best way to parse command-line parameters in Scala? I personally prefer something lightweight that does not require external jar.
Related:
|
What's the best way to parse command-line parameters in Scala? I personally prefer something lightweight that does not require external jar. Related: |
||||
|
|
scopt/scopt
The above generates the following usage text:
This is what I currently use. Clean usage without too much baggage. (Disclaimer: I now maintain this project) ScallopIn 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:
I haven't used this, but it looks promising. Mailing list thread Scala CLI Library? lists paulp/optionalBy using reflection it automatically calls the main with optional argument:
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 And there's also parse-cmd's AScalaParserClass
Single file. Very lightweight, but I don't like the whole builder pattern DSL thing compared to scopt. Apache Felix Karaf's console supportjstrachan 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.
|
|||||||||||||
|
|
For most cases you do not need an external parser. Scala's pattern matching allows consuming args in a functional style. For example:
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! |
||||
|
|
|
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
An example usage of the parameter interface
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.:
Compile and run the example in the Windows Command Prompt:
Running the example should yield the following output:
|
|||||
|
|
I've just found an extensive command line parsing library in scalac's scala.tools.cmd package. |
|||
|
|
|
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. |
|||
|
|
|
There's also JCommander (disclaimer: I created it):
|
|||
|
|
|
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):
And some example code (also from that Github page):
|
|||
|
|