scallop


License

License

Categories

Categories

Native Development Tools
GroupId

GroupId

org.rogach
ArtifactId

ArtifactId

scallop_native0.3_2.11
Last Version

Last Version

4.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

scallop
scallop
Project URL

Project URL

https://github.com/scallop/scallop
Project Organization

Project Organization

org.rogach
Source Code Management

Source Code Management

http://github.com/scallop/scallop

Download scallop_native0.3_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/org.rogach/scallop_native0.3_2.11/ -->
<dependency>
    <groupId>org.rogach</groupId>
    <artifactId>scallop_native0.3_2.11</artifactId>
    <version>4.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.rogach/scallop_native0.3_2.11/
implementation 'org.rogach:scallop_native0.3_2.11:4.0.1'
// https://jarcasting.com/artifacts/org.rogach/scallop_native0.3_2.11/
implementation ("org.rogach:scallop_native0.3_2.11:4.0.1")
'org.rogach:scallop_native0.3_2.11:jar:4.0.1'
<dependency org="org.rogach" name="scallop_native0.3_2.11" rev="4.0.1">
  <artifact name="scallop_native0.3_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.rogach', module='scallop_native0.3_2.11', version='4.0.1')
)
libraryDependencies += "org.rogach" % "scallop_native0.3_2.11" % "4.0.1"
[org.rogach/scallop_native0.3_2.11 "4.0.1"]

Dependencies

compile (5)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
org.scala-native : nativelib_native0.3_2.11 jar 0.3.9
org.scala-native : javalib_native0.3_2.11 jar 0.3.9
org.scala-native : auxlib_native0.3_2.11 jar 0.3.9
org.scala-native : scalalib_native0.3_2.11 jar 0.3.9

test (1)

Group / Artifact Type Version
org.scala-native : test-interface_native0.3_2.11 jar 0.3.9

Project Modules

There are no modules declared in this project.

Scallop

Build Status

A simple command-line arguments parsing library for Scala. Cross-built for Scala 3.0, 2.13, 2.12, 2.11, 2.10, supports Scala Native and Scala JS.

Scallop supports:

  • flag, single-value and multiple value options
  • POSIX-style short option names (-a) with grouping (-abc)
  • GNU-style long option names (--opt, --opt=value)
  • unnamed integer options, like GNU tail (-42)
  • 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

For more info and information on usage, you can look into the project wiki or consult the API docs.

Also, I wrote a blog post and another one about Scallop.

Installation

Add following to your build.sbt:

libraryDependencies += "org.rogach" %% "scallop" % "4.0.1"

For use with Scala Native and Scala.js, use %%%:

libraryDependencies += "org.rogach" %%% "scallop" % "4.0.1"

If you were using 3.x version or older, please see migration notes.

Quick example

import org.rogach.scallop._

class Conf(arguments: Seq[String]) extends ScallopConf(arguments) {
  val apples = opt[Int](required = true)
  val bananas = opt[Int]()
  val name = trailArg[String]()
  verify()
}

object Main {
  def main(args: Array[String]) {
    val conf = new Conf(args)
    println("apples are: " + conf.apples())
  }
}

This snippet above defined simple configuration that will parse argument lines like these:

--apples 4 --bananas 10 strangeTree
-a 4 appleTree

For more examples, you can look at Scallop's wiki and test suite.

Fancy things

Scallop supports quite powerful matching on trailing arguments. For example:

object Conf extends ScallopConf(
       List("-Ekey1=value1", "key2=value2", "key3=value3",
            "first", "1","2","3","second","4","5","6")) {
  val properties = props[String]('E')
  val firstListName = trailArg[String]()
  val firstList = trailArg[List[Int]]()
  val secondListName = trailArg[String]()
  val secondList = trailArg[List[Double]]()
  verify()
}
Conf.properties("key1") shouldBe "value1"
Conf.firstListName() shouldBe "first"
Conf.secondListName() shouldBe "second"
Conf.firstList() shouldBe List(1,2,3)
Conf.secondList() shouldBe List[Double](4,5,6)

In this case, Scallop's backtracking parser is clever enough to distinguish the boundaries of the arguments lists.

Also, Scallop supports parsing of subcommands. Not only subcommands, but nested subcommands!

object Conf extends ScallopConf(Seq("sub1", "sub2", "sub3", "sub4", "win!")) {
  object sub1 extends Subcommand("sub1") {
    object sub2 extends Subcommand("sub2") {
      object sub3 extends Subcommand("sub3") {
        object sub4 extends Subcommand("sub4") {
          val opts = trailArg[List[String]]()
        }
        addSubcommand(sub4)
      }
      addSubcommand(sub3)
    }
    addSubcommand(sub2)
  }
  addSubcommand(sub1)
  verify()
}
Conf.subcommands shouldBe List(Conf.sub1, Conf.sub1.sub2, Conf.sub1.sub2.sub3, Conf.sub1.sub2.sub3.sub4)
Conf.sub1.sub2.sub3.sub4.opts() shouldBe List("win!")

Thanks

... and the whole Scala community for help and explanations.

Notes

Scallop is distributed under MIT license.

org.rogach

Versions

Version
4.0.1
4.0.0
3.5.1
3.5.0
3.4.0
3.3.2
3.3.1
3.3.0
3.2.0
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0