StatsCommand

com.ossuminc.riddl.commands.StatsCommand
See theStatsCommand companion object

Stats Command

Attributes

Companion
object
Source
StatsCommand.scala
Graph
Supertypes
trait Command[Options]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def getConfigReader: ConfigReader[Options]

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
StatsCommand.scala
def getOptionsParser: (OParser[Unit, Options], Options)

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
StatsCommand.scala
override def getPasses(log: Logger, commonOptions: CommonOptions, options: Options): PassesCreator

Get the passes to run given basic input for pass creation

Get the passes to run given basic input for pass creation

Value parameters

commonOptions

The common options for the command

log

The logger to use

options

The command options

Attributes

Returns

A com.ossuminc.riddl.passes.PassCreator function that creates the pass

Definition Classes
Source
StatsCommand.scala
override def loadOptionsFrom(configFile: Path, log: Logger, commonOptions: CommonOptions): Either[Messages, Options]

Attributes

Definition Classes
Source
StatsCommand.scala
def logStats(stats: StatsOutput, log: Logger): Unit

Attributes

Source
StatsCommand.scala
def overrideOptions(options: Options, newOutputDir: Path): Options

A method to override the options

A method to override the options

Attributes

Source
StatsCommand.scala
override def run(originalOptions: Options, commonOptions: CommonOptions, log: Logger, outputDirOverride: Option[Path]): Either[Messages, PassesResult]

The basic implementation of the command.

The basic implementation of the command. This should be called with super.run(...) from the subclass implementation.

Value parameters

commonOptions

The options common to all commands

log

A logger for logging errors, warnings, and info

originalOptions

The original options to the command

outputDirOverride

Any override to the outputDir option from the command line

Attributes

Returns

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

Definition Classes
Source
StatsCommand.scala

Inherited methods

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

Attributes

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

Attributes

Inherited from:
Command
Source
Command.scala

Attributes

Inherited from:
Command
Source
Command.scala

Attributes

Inherited from:
Command
Source
Command.scala

Inherited fields

protected val builder: OParserBuilder[Options]

Attributes

Inherited from:
Command
Source
Command.scala

Attributes

Inherited from:
Command
Source
Command.scala