Class: LibCLImate::Climate
- Inherits:
-
Object
- Object
- LibCLImate::Climate
- Includes:
- Xqsr3::Quality::ParameterChecking
- Defined in:
- lib/libclimate/climate.rb
Overview
Class used to gather together the CLI specification, and execute it
The standard usage pattern is as follows:
PROGRAM_VERSION = [ 0, 1, 2 ]
= {}
climate = LibCLImate::Climate.new do |cl|
cl.add_flag('--verbose', alias: '-v', help: 'Makes program output verbose') { [:verbose] = true }
cl.add_option('--flavour', alias: '-f', help: 'Specifies the flavour') do |o, a|
[:flavour] = check_flavour(o.value) or cl.abort "Invalid flavour '#{o.value}'; use --help for usage"
end
cl.usage_values = '<value-1> [ ... <value-N> ]'
cl.constrain_values = 1..100000
cl.info_lines = [
'ACME CLI program (using libCLImate)',
:version,
'An example program',
]
end
Defined Under Namespace
Modules: Climate_Constants_
Instance Attribute Summary collapse
-
#constrain_values ⇒ Object
(Integer, Range) Optional constraint on the values that must be provided to the program.
-
#exit_on_missing ⇒ Object
(boolean) Indicates whether exit will be called (with non-zero exit code) when a required command-line option is missing.
-
#exit_on_unknown ⇒ Object
(boolean) Indicates whether exit will be called (with non-zero exit code) when an unknown command-line flag or option is encountered.
-
#exit_on_usage ⇒ Object
(boolean) Indicates whether exit will be called (with zero exit code) when usage/version is requested on the command-line.
-
#flags_and_options ⇒ Object
(String) Optional string to describe the flags and options section.
-
#ignore_unknown ⇒ Object
(boolean) Indicates whether unknown flags or options will be ignored.
-
#info_lines ⇒ Object
([String]) Optional array of string of program-information that will be written before the rest of the usage block when usage is requested on the command-line.
-
#program_name ⇒ Object
(String) A program name; defaults to the name of the executing script.
-
#specifications ⇒ Object
readonly
([CLASP::Specification]) An array of specifications attached to the climate instance, whose contents should be modified by adding (or removing) CLASP specifications.
-
#stderr ⇒ ::IO
The output stream for contingent output; defaults to $stderr.
-
#stdout ⇒ ::IO
The output stream for normative output; defaults to $stdout.
-
#usage_help_suffix ⇒ Object
(String) The string that is appended to #abort calls made during #run.
-
#usage_values ⇒ ::String
Optional string to describe the program values, eg <xyz “[ { <<directory> | <file> } ]”.
-
#value_names ⇒ Object
([String]) Zero-based array of names for values to be used when that value is not present (according to the
:constrain_valuesattribute). -
#version ⇒ Object
(String, [String], [Integer]) A version string or an array of integers/strings representing the version component(s).
Class Method Summary collapse
-
.load(source, options = (options_defaulted_ = {}), &blk) ⇒ Object
Loads an instance of the class, as specified by
source, according to the given parameters.
Instance Method Summary collapse
-
#abort(message, options = {}) ⇒ Object
Calls abort() with the given message prefixed by the program_name.
-
#add_alias(name_or_specification, *aliases) ⇒ Object
Adds an alias to
specifications. -
#add_flag(name_or_flag, options = {}, &blk) ⇒ Object
Adds a flag to
specifications. -
#add_option(name_or_option, options = {}, &blk) ⇒ Object
Adds an option to
specifications. -
#aliases ⇒ Object
- DEPRECATED
-
Instead, use
specifications.
-
#initialize(options = {}) {|_self| ... } ⇒ Climate
constructor
Creates an instance of the Climate class.
-
#on_flag(name_or_flag, options = {}, &blk) ⇒ Object
Attaches a block to an already-registered flag.
-
#on_option(name_or_option, options = {}, &blk) ⇒ Object
Attaches a block to an already-registered option.
-
#run(argv = ARGV) ⇒ Object
Executes the prepared Climate instance.
-
#set_program_name(name) ⇒ Object
- DEPRECATED
-
This method is now deprecated.
Constructor Details
#initialize(options = {}) {|_self| ... } ⇒ Climate
Creates an instance of the Climate class.
Signature
-
Parameters:
-
options:(Hash) An options hash, containing any of the following options.
-
-
Options:
-
:no_help_flag(boolean) Prevents the use of theCLASP::Flag.Helpflag-specification -
:no_version_flag(boolean) Prevents the use of theCLASP::Flag.Versionflag-specification -
:program_name(::String) An explicit program-name, which is inferred from $0 if this isnil -
:version(String, [Integer], [String]) A version specification. If not specified, this is inferred -
:version_contextObject or class that defines a context for searching the version. Ignored if:versionis specified
-
-
Block An optional block that receives the initialising Climate instance, allowing the user to modify the attributes.
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 |
# File 'lib/libclimate/climate.rb', line 458 def initialize(={}, &blk) # :yields: climate check_parameter , 'options', allow_nil: true, type: ::Hash ||= {} check_option , :no_help_flag, type: :boolean, allow_nil: true check_option , :no_version_flag, type: :boolean, allow_nil: true check_option , :program_name, type: ::String, allow_nil: true pr_name = [:program_name] unless pr_name pr_name = File.basename($0) pr_name = (pr_name =~ /\.(?:bat|cmd|rb|sh)$/) ? "#$`(#$&)" : pr_name end given_specs = [Climate_Constants_::GIVEN_SPECS_] @specifications = [] @ignore_unknown = false @exit_on_unknown = true @exit_on_missing = true @exit_on_usage = true @info_lines = nil set_program_name pr_name @stdout = $stdout @stderr = $stderr @constrain_values = nil = @usage_help_suffix = 'use --help for usage' @usage_values = usage_values @value_names = [] version_context = [:version_context] @version = [:version] || infer_version_(version_context) @specifications << CLASP::Flag.Help(handle: proc { show_usage_ }) unless [:no_help_flag] @specifications << CLASP::Flag.Version(handle: proc { show_version_ }) unless [:no_version_flag] @specifications = @specifications + given_specs if given_specs yield self if block_given? end |
Instance Attribute Details
#constrain_values ⇒ Object
(Integer, Range) Optional constraint on the values that must be provided to the program
542 543 544 |
# File 'lib/libclimate/climate.rb', line 542 def constrain_values @constrain_values end |
#exit_on_missing ⇒ Object
(boolean) Indicates whether exit will be called (with non-zero exit code) when a required command-line option is missing. Defaults to true
514 515 516 |
# File 'lib/libclimate/climate.rb', line 514 def exit_on_missing @exit_on_missing end |
#exit_on_unknown ⇒ Object
(boolean) Indicates whether exit will be called (with non-zero exit code) when an unknown command-line flag or option is encountered. Defaults to true
518 519 520 |
# File 'lib/libclimate/climate.rb', line 518 def exit_on_unknown @exit_on_unknown end |
#exit_on_usage ⇒ Object
(boolean) Indicates whether exit will be called (with zero exit code) when usage/version is requested on the command-line. Defaults to true
520 521 522 |
# File 'lib/libclimate/climate.rb', line 520 def exit_on_usage @exit_on_usage end |
#flags_and_options ⇒ Object
(String) Optional string to describe the flags and options section. Defaults to “[ ... flags and options ... ]”
544 545 546 |
# File 'lib/libclimate/climate.rb', line 544 def end |
#ignore_unknown ⇒ Object
(boolean) Indicates whether unknown flags or options will be ignored. This overrides :exit_on_unknown. Defaults to false
516 517 518 |
# File 'lib/libclimate/climate.rb', line 516 def ignore_unknown @ignore_unknown end |
#info_lines ⇒ Object
([String]) Optional array of string of program-information that will be written before the rest of the usage block when usage is requested on the command-line
522 523 524 |
# File 'lib/libclimate/climate.rb', line 522 def info_lines @info_lines end |
#program_name ⇒ Object
(String) A program name; defaults to the name of the executing script
524 525 526 527 528 529 530 531 532 533 534 |
# File 'lib/libclimate/climate.rb', line 524 def program_name name = @program_name if defined?(Colcon) && @stdout.tty? name = "#{::Colcon::Decorations::Bold}#{name}#{::Colcon::Decorations::Unbold}" end name end |
#specifications ⇒ Object (readonly)
([CLASP::Specification]) An array of specifications attached to the climate instance, whose contents should be modified by adding (or removing) CLASP specifications
510 511 512 |
# File 'lib/libclimate/climate.rb', line 510 def specifications @specifications end |
#stderr ⇒ ::IO
Returns The output stream for contingent output; defaults to $stderr.
540 541 542 |
# File 'lib/libclimate/climate.rb', line 540 def stderr @stderr end |
#stdout ⇒ ::IO
Returns The output stream for normative output; defaults to $stdout.
538 539 540 |
# File 'lib/libclimate/climate.rb', line 538 def stdout @stdout end |
#usage_help_suffix ⇒ Object
(String) The string that is appended to #abort calls made during #run. Defaults to “use –help for usage”
546 547 548 |
# File 'lib/libclimate/climate.rb', line 546 def usage_help_suffix @usage_help_suffix end |
#usage_values ⇒ ::String
Returns Optional string to describe the program values, eg <xyz “[ { <<directory> | <file> } ]”.
548 549 550 |
# File 'lib/libclimate/climate.rb', line 548 def usage_values @usage_values end |
#value_names ⇒ Object
([String]) Zero-based array of names for values to be used when that value is not present (according to the :constrain_values attribute)
550 551 552 |
# File 'lib/libclimate/climate.rb', line 550 def value_names @value_names end |
#version ⇒ Object
(String, [String], [Integer]) A version string or an array of integers/strings representing the version component(s)
552 553 554 |
# File 'lib/libclimate/climate.rb', line 552 def version @version end |
Class Method Details
.load(source, options = (options_defaulted_ = {}), &blk) ⇒ Object
Loads an instance of the class, as specified by source, according to the given parameters
Signature
-
Parameters:
source-
(
Hash,IO) The arguments specification, either as a Hash or an instance of an IO-implementing type containing a YAML specification
options-
An options hash, containing any of the following options
-
Options:
-
:no_help_flag(boolean) Prevents the use of theCLASP::Flag.Helpflag-specification -
:no_version_flag(boolean) Prevents the use of theCLASP::Flag.Versionflag-specification -
:program_name(::String) An explicit program-name, which is inferred from $0 if this isnil -
:version(String, [Integer], [String]) A version specification. If not specified, this is inferred -
:version_contextObject or class that defines a context for searching the version. Ignored if:versionis specified
-
-
Block An optional block that receives the initialising Climate instance, allowing the user to modify the attributes.
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
# File 'lib/libclimate/climate.rb', line 385 def self.load source, = ( = {}), &blk check_parameter , 'options', allow_nil: true, type: ::Hash ||= {} h = nil case source when ::IO h = YAML.load source.read when ::Hash h = source else if source.respond_to?(:to_hash) h = source.to_hash else raise TypeError, "#{self}.#{__method__}() 'source' argument must be a #{::Hash}, or an object implementing #{::IO}, or a type implementing 'to_hash'" end end _libclimate = require_element_(h, Hash, 'libclimate', nil) _exit_on_missing = lookup_element_(_libclimate, :boolean, 'exit_on_missing', 'libclimate') _ignore_unknown = lookup_element_(_libclimate, :boolean, 'ignore_unknown', 'libclimate') _exit_on_unknown = lookup_element_(_libclimate, :boolean, 'exit_on_unknown', 'libclimate') _exit_on_usage = lookup_element_(_libclimate, :boolean, 'exit_on_usage', 'libclimate') _info_lines = lookup_element_(_libclimate, Array, 'info_lines', 'libclimate') _program_name = lookup_element_(_libclimate, String, 'program_name', 'libclimate') _constrain_values = lookup_element_(_libclimate, [ Integer, Range ], 'constrain_values', 'libclimate') = lookup_element_(_libclimate, String, 'flags_and_options', 'libclimate') _usage_values = lookup_element_(_libclimate, String, 'usage_values', 'libclimate') _value_names = lookup_element_(_libclimate, Array, 'value_names', 'libclimate') _version = lookup_element_(_libclimate, [ String, [] ], 'version', 'libclimate') specs = CLASP::Arguments.load_specifications _libclimate, cl = Climate.new(.merge(Climate_Constants_::GIVEN_SPECS_ => specs), &blk) cl.exit_on_missing = _exit_on_missing unless _exit_on_missing.nil? cl.ignore_unknown = _ignore_unknown unless _ignore_unknown.nil? cl.exit_on_unknown = _exit_on_unknown unless _exit_on_unknown.nil? cl.exit_on_usage = _exit_on_usage unless _exit_on_usage.nil? cl.info_lines = _info_lines unless _info_lines.nil? cl.program_name = _program_name unless _program_name.nil? cl.constrain_values = _constrain_values unless _constrain_values.nil? cl. = unless .nil? cl.usage_values = _usage_values unless _usage_values.nil? cl.value_names = _value_names unless _value_names.nil? cl.version = _version unless _version.nil? cl end |
Instance Method Details
#abort(message, options = {}) ⇒ Object
Calls abort() with the given message prefixed by the program_name
Signature
-
Parameters:
-
message(String) The message string -
options(Hash) An option hash, containing any of the following options
-
-
Options:
-
:streamoptional The output stream to use. Defaults to the value of the attributestderr -
:program_name(String) optional Uses the given value rather than theprogram_nameattribute; does not prefix if the empty string -
:exitoptional The exit code. Defaults to 1. Does not exit ifnilspecified explicitly
-
Returns
The combined message string, if exit() not called.
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 |
# File 'lib/libclimate/climate.rb', line 890 def abort , ={} prog_name = [:program_name] prog_name ||= program_name prog_name ||= '' stream = [:stream] stream ||= stderr stream ||= $stderr exit_code = .has_key?(:exit) ? [:exit] : 1 if prog_name.empty? msg = else msg = "#{prog_name}: #{message}" end stream.puts msg exit(exit_code) if exit_code msg end |
#add_alias(name_or_specification, *aliases) ⇒ Object
Adds an alias to specifications
Signature
-
Parameters:
-
name_or_specification(String) The flag/option name or the valued option -
aliases(*[String]) One or more aliases
-
Examples
Specification(s) of a flag (single statement)
climate.add_flag('--mark-missing', alias: '-x')
climate.add_flag('--absolute-path', aliases: [ '-abs', '-p' ])
Specification(s) of a flag (multiple statements)
climate.add_flag('--mark-missing')
climate.add_alias('--mark-missing', '-x')
climate.add_flag('--absolute-path')
climate.add_alias('--absolute-path', '-abs', '-p')
Specification(s) of an option (single statement)
climate.add_option('--add-patterns', alias: '-p')
Specification(s) of an option (multiple statements)
climate.add_option('--add-patterns')
climate.add_alias('--add-patterns', '-p')
Specification of a valued option (which has to be multiple statements)
climate.add_option('--verbosity', values: [ 'succinct', 'verbose' ])
climate.add_alias('--verbosity=succinct', '-s')
climate.add_alias('--verbosity=verbose', '-v')
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 |
# File 'lib/libclimate/climate.rb', line 1019 def add_alias(name_or_specification, *aliases) check_parameter name_or_specification, 'name_or_specification', allow_nil: false, types: [ ::String, ::Symbol, ::CLASP::FlagSpecification, ::CLASP::OptionSpecification ] raise ArgumentError, "must supply at least one alias" if aliases.empty? case name_or_specification when ::CLASP::Flag self.specifications << name_or_specification when ::CLASP::Option self.specifications << name_or_specification else self.specifications << CLASP.Alias(name_or_specification, aliases: aliases) end end |
#add_flag(name_or_flag, options = {}, &blk) ⇒ Object
Adds a flag to specifications
Signature
-
Parameters:
-
name_or_flag(String, ::CLASP::FlagSpecification) The flag name or instance of CLASP::FlagSpecification -
options(Hash) An options hash, containing any of the following options
-
-
Options:
-
:alias(String) A single alias -
:aliases([String]) An array of aliases -
:help(String) Description string used when writing response to “--help” flag -
:required(boolean) Indicates whether the flag is required, causing #run to fail with appropriate message if the flag is not specified in the command-line arguments
-
-
Block An optional block that is invoked when the parsed command-line contains the given flag, receiving the argument and the alias
Examples
Specification(s) of a flag (single statement)
938 939 940 941 942 943 944 945 946 947 948 949 |
# File 'lib/libclimate/climate.rb', line 938 def add_flag(name_or_flag, ={}, &blk) check_parameter name_or_flag, 'name_or_flag', allow_nil: false, types: [ ::String, ::Symbol, ::CLASP::FlagSpecification ] if ::CLASP::Flag === name_or_flag specifications << name_or_flag else specifications << CLASP.Flag(name_or_flag, **, &blk) end end |
#add_option(name_or_option, options = {}, &blk) ⇒ Object
Adds an option to specifications
Signature
-
Parameters:
-
name_or_option(String, CLASP::OptionSpecification) The option name or instance of CLASP::OptionSpecification -
options(Hash) An options hash, containing any of the following options
-
-
Options:
-
:alias(String) A single alias -
:aliases([String]) An array of aliases -
:help(String) Description string used when writing response to “--help” flag -
:values_range([String]) An array of strings representing the valid/expected values used when writing response to “--help” flag. NOTE: the current version does not validate against these values, but a future version may do so -
:default_value(String) The default version used when, say, for the option--my-optthe command-line contain the argument “--my-opt=”
-
-
Block An optional block that is invoked when the parsed command-line contains the given option, receiving the argument and the alias
968 969 970 971 972 973 974 975 976 977 978 979 |
# File 'lib/libclimate/climate.rb', line 968 def add_option(name_or_option, ={}, &blk) check_parameter name_or_option, 'name_or_option', allow_nil: false, types: [ ::String, ::Symbol, ::CLASP::OptionSpecification ] if ::CLASP::Option === name_or_option specifications << name_or_option else specifications << CLASP.Option(name_or_option, **, &blk) end end |
#aliases ⇒ Object
- DEPRECATED
-
Instead, use
specifications
512 |
# File 'lib/libclimate/climate.rb', line 512 def aliases; specifications; end |
#on_flag(name_or_flag, options = {}, &blk) ⇒ Object
Attaches a block to an already-registered flag
Signature
-
Parameters:
-
name_or_flag(String, ::CLASP::FlagSpecification) The flag name or instance of CLASP::FlagSpecification -
options(Hash) An options hash, containing any of the following options. No options are recognised currently
-
-
Options:
-
Block A required block that is invoked when the parsed command-line contains the given flag, receiving the argument and the alias
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 |
# File 'lib/libclimate/climate.rb', line 1049 def on_flag(name_or_flag, ={}, &blk) check_parameter name_or_flag, 'name_or_flag', allow_nil: false, types: [ ::String, ::Symbol, ::CLASP::FlagSpecification ] raise ArgumentError, "on_flag() requires a block to be given" unless block_given? specifications.each do |spec| case spec when CLASP::FlagSpecification if spec == name_or_flag spec.action = blk return true end end end warn "The Climate instance does not contain a FlagSpecification matching '#{name_or_flag}' (#{name_or_flag.class})" false end |
#on_option(name_or_option, options = {}, &blk) ⇒ Object
Attaches a block to an already-registered option
Signature
-
Parameters:
-
name_or_option(String, ::CLASP::OptionSpecification) The option name or instance of CLASP::OptionSpecification -
options(Hash) An options hash, containing any of the following options. No options are recognised currently
-
-
Options:
-
Block A required block that is invoked when the parsed command-line contains the given option, receiving the argument and the alias
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 |
# File 'lib/libclimate/climate.rb', line 1086 def on_option(name_or_option, ={}, &blk) check_parameter name_or_option, 'name_or_option', allow_nil: false, types: [ ::String, ::Symbol, ::CLASP::OptionSpecification ] raise ArgumentError, "on_option() requires a block to be given" unless block_given? specifications.each do |spec| case spec when CLASP::OptionSpecification if spec == name_or_option spec.action = blk return true end end end warn "The Climate instance does not contain an OptionSpecification matching '#{name_or_option}' (#{name_or_option.class})" false end |
#run(argv = ARGV) ⇒ Object
Executes the prepared Climate instance
Signature
-
Parameters:
-
argv([String]) The array of arguments; defaults toARGV
-
Returns
an instance of a type derived from ::Hash with the additional attributes flags, options, values, and argv.
565 566 567 568 569 570 571 572 |
# File 'lib/libclimate/climate.rb', line 565 def run argv = ARGV # :yields: customised +::Hash+ raise ArgumentError, "argv may not be nil" if argv.nil? arguments = CLASP::Arguments.new argv, specifications run_ argv, arguments end |
#set_program_name(name) ⇒ Object
- DEPRECATED
-
This method is now deprecated. Instead use
program_name=
504 505 506 507 |
# File 'lib/libclimate/climate.rb', line 504 def set_program_name name @program_name = name end |