Command

com.ossuminc.riddl.command.Command

The service interface for Riddlc command plugins

Attributes

Source
Command.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def getConfigReader: ConfigReader[OPT]

Provide a typesafe/Config reader for the commands options.

Provide a typesafe/Config reader for the commands options. This reader should read an object having the same name as the command. The fields of that object must correspond to the fields of the OPT type.

Attributes

Returns

A pureconfig.ConfigReader[OPT] that knows how to read OPT

Source
Command.scala
def getOptionsParser: (OParser[Unit, OPT], OPT)

Provide an scopt OParser for the commands options type, OPT

Provide an scopt OParser for the commands options type, OPT

Attributes

Returns

A pair: the OParser and the default values for OPT

Source
Command.scala

Concrete methods

def inputFile(f: (File, OPT) => OPT): OParser[File, OPT]

Attributes

Source
Command.scala
def outputDir(f: (File, OPT) => OPT): OParser[File, OPT]

Attributes

Source
Command.scala

Attributes

Source
Command.scala
protected def replaceInputFile(options: OPT, inputFile: Path): OPT

Attributes

Source
Command.scala

Execute the command given the options.

Execute the command given the options. Error should be returned as Left(messages) and not directly logged. The log is for verbose or debug output

Value parameters

commonOptions

The options common to all commands

log

A logger for logging errors, warnings, and info

options

The command specific options

Attributes

Returns

Either a set of Messages on error or a Unit on success

Source
Command.scala

Concrete fields

protected val builder: OParserBuilder[OPT]

Attributes

Source
Command.scala

Attributes

Source
Command.scala