Class: Toys::CLI

Inherits:
Object
  • Object
show all
Defined in:
core-docs/toys/cli.rb

Overview

Defined in the toys-core gem

A Toys-based CLI.

This is the entry point for command line execution. It includes the set of tool definitions (and/or information on how to load them from the file system), configuration parameters such as logging and error handling, and a method to call to invoke a command.

This is the class to instantiate to create a Toys-based command line executable. For example:

#!/usr/bin/env ruby
require "toys-core"
cli = Toys::CLI.new
cli.add_config_block do
  def run
    puts "Hello, world!"
  end
end
exit(cli.run(*ARGV))

The currently running CLI is also available at runtime, and can be used by tools that want to invoke other tools. For example:

# My .toys.rb
tool "foo" do
  def run
    puts "in foo"
  end
end
tool "bar" do
  def run
    puts "in bar"
    cli.run "foo"
  end
end

Direct Known Subclasses

StandardCLI

Defined Under Namespace

Classes: DefaultCompletion, DefaultErrorHandler

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(executable_name: nil, middleware_stack: nil, extra_delimiters: "", config_dir_name: nil, config_file_name: nil, index_file_name: nil, preload_file_name: nil, preload_dir_name: nil, data_dir_name: nil, lib_dir_name: nil, mixin_lookup: nil, middleware_lookup: nil, template_lookup: nil, logger_factory: nil, logger: nil, base_level: nil, error_handler: nil, completion: nil) ⇒ CLI

Create a CLI.

Most configuration parameters (besides tool definitions and tool lookup paths) are set as options passed to the constructor. These options fall roughly into four categories:

  • Options affecting output behavior:
    • logger: A global logger for all tools to use
    • logger_factory: A proc that returns a logger to use
    • base_level: The default log level
    • error_handler: Callback for handling exceptions
    • executable_name: The name of the executable
  • Options affecting tool specification
    • extra_delimibers: Tool name delimiters besides space
    • completion: Tab completion handler
  • Options affecting tool definition
    • middleware_stack: The middleware applied to all tools
    • mixin_lookup: Where to find well-known mixins
    • middleware_lookup: Where to find well-known middleware
    • template_lookup: Where to find well-known templates
  • Options affecting tool files and directories
    • config_dir_name: Directory name containing tool files
    • config_file_name: File name for tools
    • index_file_name: Name of index files in tool directories
    • preload_file_name: Name of preload files in tool directories
    • preload_dir_name: Name of preload directories in tool directories
    • data_dir_name: Name of data directories in tool directories

Parameters:

  • logger (Logger) (defaults to: nil)

    A global logger to use for all tools. This may be set if the CLI will call at most one tool at a time. However, it will behave incorrectly if CLI might run multiple tools at the same time with different verbosity settings (since the logger cannot have multiple level settings simultaneously). In that case, do not set a global logger, but use the logger_factory parameter instead.

  • logger_factory (Proc) (defaults to: nil)

    A proc that takes a ToolDefinition as an argument, and returns a Logger to use when running that tool. Optional. If not provided (and no global logger is set), CLI will use a default factory that writes generates loggers writing formatted output to STDERR, as defined by default_logger_factory.

  • base_level (Integer) (defaults to: nil)

    The logger level that should correspond to zero verbosity. Optional. If not provided, defaults to the current level of the logger (which is often Logger::WARN).

  • error_handler (Proc, nil) (defaults to: nil)

    A proc that is called when an error is caught. The proc should take a Toys::ContextualError argument and report the error. It should return an exit code (normally nonzero). Optional. If not provided, defaults to an instance of DefaultErrorHandler, which displays an error message to STDERR.

  • executable_name (String) (defaults to: nil)

    The executable name displayed in help text. Optional. Defaults to the ruby program name.

  • extra_delimiters (String) (defaults to: "")

    A string containing characters that can function as delimiters in a tool name. Defaults to empty. Allowed characters are period, colon, and slash.

  • completion (Toys::Completion::Base) (defaults to: nil)

    A specifier for shell tab completion for the CLI as a whole. Optional. If not provided, defaults to an instance of DefaultCompletion, which delegates completion to the relevant tool.

  • middleware_stack (Array<Toys::Middleware::Spec>) (defaults to: nil)

    An array of middleware that will be used by default for all tools. Optional. If not provided, uses a default set of middleware defined in default_middleware_stack. To include no middleware, pass the empty array explicitly.

  • mixin_lookup (Toys::ModuleLookup) (defaults to: nil)

    A lookup for well-known mixin modules (i.e. with symbol names). Optional. If not provided, defaults to the set of standard mixins provided by toys-core, as defined by default_mixin_lookup. If you explicitly want no standard mixins, pass an empty instance of ModuleLookup.

  • middleware_lookup (Toys::ModuleLookup) (defaults to: nil)

    A lookup for well-known middleware classes. Optional. If not provided, defaults to the set of standard middleware classes provided by toys-core, as defined by default_middleware_lookup. If you explicitly want no standard middleware, pass an empty instance of ModuleLookup.

  • template_lookup (Toys::ModuleLookup) (defaults to: nil)

    A lookup for well-known template classes. Optional. If not provided, defaults to the set of standard template classes provided by toys core, as defined by default_template_lookup. If you explicitly want no standard tenokates, pass an empty instance of ModuleLookup.

  • config_dir_name (String) (defaults to: nil)

    A directory with this name that appears in the loader path, is treated as a configuration directory whose contents are loaded into the toys configuration. Optional. If not provided, toplevel configuration directories are disabled. Note: the standard toys executable sets this to ".toys".

  • config_file_name (String) (defaults to: nil)

    A file with this name that appears in the loader path, is treated as a toplevel configuration file whose contents are loaded into the toys configuration. This does not include "index" configuration files located within a configuration directory. Optional. If not provided, toplevel configuration files are disabled. Note: the standard toys executable sets this to ".toys.rb".

  • index_file_name (String) (defaults to: nil)

    A file with this name that appears in any configuration directory is loaded first as a standalone configuration file. This does not include "toplevel" configuration files outside configuration directories. Optional. If not provided, index configuration files are disabled. Note: the standard toys executable sets this to ".toys.rb".

  • preload_file_name (String) (defaults to: nil)

    A file with this name that appears in any configuration directory is preloaded using require before any tools in that configuration directory are defined. A preload file includes normal Ruby code, rather than Toys DSL definitions. The preload file is loaded before any files in a preload directory. Optional. If not provided, preload files are disabled. Note: the standard toys executable sets this to ".preload.rb".

  • preload_dir_name (String) (defaults to: nil)

    A directory with this name that appears in any configuration directory is searched for Ruby files, which are preloaded using require before any tools in that configuration directory are defined. Files in a preload directory include normal Ruby code, rather than Toys DSL definitions. Files in a preload directory are loaded after any standalone preload file. Optional. If not provided, preload directories are disabled. Note: the standard toys executable sets this to ".preload".

  • data_dir_name (String) (defaults to: nil)

    A directory with this name that appears in any configuration directory is added to the data directory search path for any tool file in that directory. Optional. If not provided, data directories are disabled. Note: the standard toys executable sets this to ".data".

  • lib_dir_name (String) (defaults to: nil)

    A directory with this name that appears in any configuration directory is added to the Ruby load path when executing any tool file in that directory. Optional. If not provided, lib directories are disabled. Note: the standard toys executable sets this to ".lib".



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'core-docs/toys/cli.rb', line 174

def initialize(executable_name: nil, # rubocop:disable Metrics/MethodLength
               middleware_stack: nil,
               extra_delimiters: "",
               config_dir_name: nil,
               config_file_name: nil,
               index_file_name: nil,
               preload_file_name: nil,
               preload_dir_name: nil,
               data_dir_name: nil,
               lib_dir_name: nil,
               mixin_lookup: nil,
               middleware_lookup: nil,
               template_lookup: nil,
               logger_factory: nil,
               logger: nil,
               base_level: nil,
               error_handler: nil,
               completion: nil)
  # Source available in the toys-core gem
end

Instance Attribute Details

#base_levelInteger? (readonly)

The initial logger level in this CLI, used as the level for verbosity 0. May be nil, indicating it will use the initial logger setting.

Returns:

  • (Integer, nil)


246
247
248
# File 'core-docs/toys/cli.rb', line 246

def base_level
  @base_level
end

#completionToys::Completion::Base, Proc (readonly)

The overall completion strategy for this CLI.

Returns:



252
253
254
# File 'core-docs/toys/cli.rb', line 252

def completion
  @completion
end

#executable_nameString (readonly)

The effective executable name used for usage text in this CLI.

Returns:

  • (String)


221
222
223
# File 'core-docs/toys/cli.rb', line 221

def executable_name
  @executable_name
end

#extra_delimitersString (readonly)

The string of tool name delimiter characters (besides space).

Returns:

  • (String)


227
228
229
# File 'core-docs/toys/cli.rb', line 227

def extra_delimiters
  @extra_delimiters
end

#loaderToys::Loader (readonly)

The current loader for this CLI.

Returns:



215
216
217
# File 'core-docs/toys/cli.rb', line 215

def loader
  @loader
end

#loggerLogger? (readonly)

The global logger, if any.

Returns:

  • (Logger, nil)


233
234
235
# File 'core-docs/toys/cli.rb', line 233

def logger
  @logger
end

#logger_factoryProc (readonly)

The logger factory.

Returns:

  • (Proc)


239
240
241
# File 'core-docs/toys/cli.rb', line 239

def logger_factory
  @logger_factory
end

Class Method Details

.default_logger_factoryProc

Returns a logger factory that generates loggers that write to stderr. All loggers generated by this factory share a single Utils::Terminal, so log entries may interleave but will not interrupt one another.

Returns:

  • (Proc)


488
489
490
# File 'core-docs/toys/cli.rb', line 488

def default_logger_factory
  # Source available in the toys-core gem
end

.default_middleware_lookupToys::ModuleLookup

Returns a default ModuleLookup for middleware that points at the StandardMiddleware module.

Returns:



467
468
469
# File 'core-docs/toys/cli.rb', line 467

def default_middleware_lookup
  # Source available in the toys-core gem
end

.default_middleware_stackArray<Toys::Middleware::Spec>

Returns a default set of middleware that may be used as a starting point for a typical CLI. This set includes the following in order:

Returns:



447
448
449
# File 'core-docs/toys/cli.rb', line 447

def default_middleware_stack
  # Source available in the toys-core gem
end

.default_mixin_lookupToys::ModuleLookup

Returns a default ModuleLookup for mixins that points at the StandardMixins module.

Returns:



457
458
459
# File 'core-docs/toys/cli.rb', line 457

def default_mixin_lookup
  # Source available in the toys-core gem
end

.default_template_lookupToys::ModuleLookup

Returns a default empty ModuleLookup for templates.

Returns:



476
477
478
# File 'core-docs/toys/cli.rb', line 476

def default_template_lookup
  # Source available in the toys-core gem
end

Instance Method Details

#add_config_block(high_priority: false, source_name: nil, context_directory: nil, &block) ⇒ self

Add a configuration block to the loader.

This is used to create tools "inline", and is useful for simple command line executables based on Toys.

Parameters:

  • high_priority (Boolean) (defaults to: false)

    Add the config at the head of the priority list rather than the tail.

  • source_name (String) (defaults to: nil)

    The source name that will be shown in documentation for tools defined in this block. If omitted, a default unique string will be generated.

  • block (Proc)

    The block of configuration, executed in the context of the tool DSL DSL::Tool.

  • context_directory (String, nil) (defaults to: nil)

    The context directory for tools loaded from this block. You can pass a directory path as a string, or nil to denote no context. Defaults to nil.

Returns:

  • (self)


300
301
302
303
304
305
# File 'core-docs/toys/cli.rb', line 300

def add_config_block(high_priority: false,
                     source_name: nil,
                     context_directory: nil,
                     &block)
  # Source available in the toys-core gem
end

#add_config_path(path, high_priority: false, source_name: nil, context_directory: :parent) ⇒ self

Add a specific configuration file or directory to the loader.

This is generally used to load a static or "built-in" set of tools, either for a standalone command line executable based on Toys, or to provide a "default" set of tools for a dynamic executable. For example, the main Toys executable uses this to load the builtin tools from its "builtins" directory.

Parameters:

  • path (String)

    A path to add. May reference a single Toys file or a Toys directory.

  • high_priority (Boolean) (defaults to: false)

    Add the config at the head of the priority list rather than the tail.

  • source_name (String) (defaults to: nil)

    A custom name for the root source. Optional.

  • context_directory (String, nil, :path, :parent) (defaults to: :parent)

    The context directory for tools loaded from this path. You can pass a directory path as a string, :path to denote the given path, :parent to denote the given path's parent directory, or nil to denote no context. Defaults to :parent.

Returns:

  • (self)


275
276
277
278
279
280
# File 'core-docs/toys/cli.rb', line 275

def add_config_path(path,
                    high_priority: false,
                    source_name: nil,
                    context_directory: :parent)
  # Source available in the toys-core gem
end

#add_search_path(search_path, high_priority: false, context_directory: :path) ⇒ self

Checks the given directory path. If it contains a config file and/or config directory, those are added to the loader.

The main Toys executable uses this method to load tools from directories in the TOYS_PATH.

Parameters:

  • search_path (String)

    A path to search for configs.

  • high_priority (Boolean) (defaults to: false)

    Add the configs at the head of the priority list rather than the tail.

  • context_directory (String, nil, :path, :parent) (defaults to: :path)

    The context directory for tools loaded from this path. You can pass a directory path as a string, :path to denote the given path, :parent to denote the given path's parent directory, or nil to denote no context. Defaults to :path.

Returns:

  • (self)


324
325
326
327
328
# File 'core-docs/toys/cli.rb', line 324

def add_search_path(search_path,
                    high_priority: false,
                    context_directory: :path)
  # Source available in the toys-core gem
end

#add_search_path_hierarchy(start: nil, terminate: [], high_priority: false) ⇒ self

Walk up the directory hierarchy from the given start location, and add to the loader any config files and directories found.

The main Toys executable uses this method to load tools from the current directory and its ancestors.

Parameters:

  • start (String) (defaults to: nil)

    The first directory to add. Defaults to the current working directory.

  • terminate (Array<String>) (defaults to: [])

    Optional list of directories that should terminate the search. If the walk up the directory tree encounters one of these directories, the search is halted without checking the terminating directory.

  • high_priority (Boolean) (defaults to: false)

    Add the configs at the head of the priority list rather than the tail.

Returns:

  • (self)


347
348
349
# File 'core-docs/toys/cli.rb', line 347

def add_search_path_hierarchy(start: nil, terminate: [], high_priority: false)
  # Source available in the toys-core gem
end

#child(**opts) {|cli| ... } ⇒ Toys::CLI

Make a clone with the same settings but no no config blocks and no paths in the loader. This is sometimes useful for calling another tool that has to be loaded from a different configuration.

Parameters:

  • opts (keywords)

    Any configuration arguments that should be modified from the original. See #initialize for a list of recognized keywords.

Yield Parameters:

  • cli (Toys::CLI)

    If you pass a block, the new CLI is yielded to it so you can add paths and make other modifications.

Returns:



207
208
209
# File 'core-docs/toys/cli.rb', line 207

def child(**opts)
  # Source available in the toys-core gem
end

#load_tool(*args) {|context| ... } ⇒ Object

Prepare a tool to be run, but just execute the given block rather than performing a full run of the tool. This is intended for testing tools. Unlike #run, this does not catch errors and perform error handling.

Parameters:

  • args (String...)

    Command line arguments specifying which tool to run and what arguments to pass to it. You may pass either a single array of strings, or a series of string arguments.

Yield Parameters:

Returns:

  • (Object)

    The value returned from the block.



381
382
383
# File 'core-docs/toys/cli.rb', line 381

def load_tool(*args)
  # Source available in the toys-core gem
end

#run(*args, verbosity: 0, delegated_from: nil) ⇒ Integer

Run the CLI with the given command line arguments. Handles exceptions using the error handler.

Parameters:

  • args (String...)

    Command line arguments specifying which tool to run and what arguments to pass to it. You may pass either a single array of strings, or a series of string arguments.

  • verbosity (Integer) (defaults to: 0)

    Initial verbosity. Default is 0.

  • delegated_from (Toys::Context) (defaults to: nil)

    The context from which this execution is delegated. Optional. Should be set only if this is a delegated execution.

Returns:

  • (Integer)

    The resulting process status code (i.e. 0 for success).



365
366
367
# File 'core-docs/toys/cli.rb', line 365

def run(*args, verbosity: 0, delegated_from: nil)
  # Source available in the toys-core gem
end