Module: Coglius::App

Includes:
Cog::Generator, AppSupport, CopyOptionsToAliases, DSL
Included in:
Coglius
Defined in:
lib/coglius/app.rb

Overview

A means to define and parse a command line interface that works as Git’s does, in that you specify global options, a command name, command specific options, and then command arguments.

Instance Method Summary collapse

Methods included from AppSupport

#accepts, #around_blocks, #clear_nexts, #commands, #commands_declaration_order, #config_file_name, #context_description, #copy_options_to_aliased_versions, #error_device=, #flags, #get_default_command, #help_sort_type, #help_text_wrap_type, included, #override_command_defaults, #override_default, #override_defaults_based_on_config, #parse_config, #post_block, #pre_block, #reset, #run, #stderr, #switches, #version_string

Methods included from DSL

#arg_name, #clear_nexts, #command, #default_value, #desc, #flag, #flags_declaration_order, #long_desc, #switch, #switches_declaration_order

Methods included from CopyOptionsToAliases

#copy_options_to_aliases

Instance Method Details

#accept(object, &block) ⇒ Object

Configure a type conversion not already provided by the underlying OptionParser. This works more or less like the OptionParser version.

object

the class (or whatever) that triggers the type conversion

block

the block that will be given the string argument and is expected to return the converted value

Example

accept(Hash) do |value|
  result = {}
  value.split(/,/) do |pair|
    k,v = pair.split(/:/)
    result[k] = v
  end
  result
end

flag :properties, :type => Hash


175
176
177
# File 'lib/coglius/app.rb', line 175

def accept(object,&block)
  accepts[object] = block
end

#around(&a_proc) ⇒ Object

This inverts the pre/post concept. This is useful when you have a global shared resource that is governed by a block instead of separate open/close methods. The block you pass here will be given four parameters:

global options

the parsed global options

command

The Coglius::Command that the user is going to invoke

options

the command specific options

args

unparsed command-line args

code

a block that you must call to execute the command.

#help_now! and #exit_now! work as expected; you can abort the command call by simply not calling it.

You can declare as many #around blocks as you want. They will be called in the order in which they are defined.

Note that if you declare #around blocks, #pre and #post blocks will still work. The #pre is called first, followed by the around, followed by the #post.

Call #skips_around before a command that should not have this hook fired



111
112
113
114
# File 'lib/coglius/app.rb', line 111

def around(&a_proc)
  @around_blocks ||= []
  @around_blocks << a_proc
end

#config_file(filename) ⇒ Object

Sets that this app uses a config file as well as the name of the config file.

filename

A String representing the path to the file to use for the config file. If it’s an absolute path, this is treated as the path to the file. If it’s not, it’s treated as relative to the user’s home directory as produced by File.expand_path('~').



66
67
68
69
70
71
72
73
74
75
# File 'lib/coglius/app.rb', line 66

def config_file(filename)
  @config_file = if filename =~ /^\//
    filename
  else
    File.join(File.expand_path(ENV['HOME']),filename)
  end
  commands[:initconfig] = InitConfig.new(@config_file,commands,flags,switches)
  @commands_declaration_order << commands[:initconfig]
  @config_file
end

#default_command(command) ⇒ Object

Sets a default command to run when none is specified on the command line. Note that if you use this, you won’t be able to pass arguments, flags, or switches to the command when run in default mode. All flags and switches are treated as global, and any argument will be interpretted as the command name and likely fail.

command

Command as a Symbol to run as default



233
234
235
# File 'lib/coglius/app.rb', line 233

def default_command(command)
  @default_command = command.to_sym
end

#exit_now!(message, exit_code = 1) ⇒ Object

Simpler means of exiting with a custom exit code. This will raise a CustomExit with the given message and exit code, which will ultimatley cause your application to exit with the given exit_code as its exit status Use #help_now! if you want to show the help in addition to the error message

message

message to show the user

exit_code

exit code to exit as, defaults to 1

Raises:



186
187
188
# File 'lib/coglius/app.rb', line 186

def exit_now!(message,exit_code=1)
  raise CustomExit.new(message,exit_code)
end

#help_now!(message = nil) ⇒ Object

Exit now, showing the user help for the command they executed. Use #exit_now! to just show the error message

message

message to indicate how the user has messed up the CLI invocation or nil to just simply show help



193
194
195
196
197
198
199
# File 'lib/coglius/app.rb', line 193

def help_now!(message=nil)
  exception = OptionParser::ParseError.new(message)
  class << exception
    def exit_code; 64; end
  end
  raise exception
end

#on_error(&a_proc) ⇒ Object

Define a block to run if an error occurs. The block will receive any Exception that was caught. It should evaluate to false to avoid the built-in error handling (which basically just prints out a message). Coglius uses a variety of exceptions that you can use to find out what errors might’ve occurred during command-line parsing:

  • Coglius::CustomExit

  • Coglius::UnknownCommandArgument

  • Coglius::UnknownGlobalArgument

  • Coglius::UnknownCommand

  • Coglius::BadCommandLine



126
127
128
# File 'lib/coglius/app.rb', line 126

def on_error(&a_proc)
  @error_block = a_proc
end

#post(&a_proc) ⇒ Object

Define a block to run after the command was executed, only if there was not an error. The block will receive the global-options,command,options, and arguments



90
91
92
# File 'lib/coglius/app.rb', line 90

def post(&a_proc)
  @post_block = a_proc
end

#pre(&a_proc) ⇒ Object

Define a block to run after command line arguments are parsed but before any command is run. If this block raises an exception the command specified will not be executed. The block will receive the global-options,command,options, and arguments If this block evaluates to true, the program will proceed; otherwise the program will end immediately



83
84
85
# File 'lib/coglius/app.rb', line 83

def pre(&a_proc)
  @pre_block = a_proc
end

#preserve_argv(preserve = true) ⇒ Object

By default, Coglius mutates the argument passed to it. This is consistent with OptionParser, but be less than ideal. Since that value, for scaffolded apps, is ARGV, you might want to refer to the entire command-line via ARGV and thus not want it mutated.



142
143
144
# File 'lib/coglius/app.rb', line 142

def preserve_argv(preserve=true)
  @preserve_argv = preserve
end

#program_desc(description = nil) ⇒ Object

Describe the overall application/programm. This should be a one-sentence summary of what your program does that will appear in the help output.

description

A String of the short description of your program’s purpose



26
27
28
29
# File 'lib/coglius/app.rb', line 26

def program_desc(description=nil)
  @program_desc = description if description
  @program_desc
end

#program_long_desc(description = nil) ⇒ Object

Provide a longer description of the program. This can be as long as needed, and use double-newlines for paragraphs. This will show up in the help output.

description

A String for the description



35
36
37
38
# File 'lib/coglius/app.rb', line 35

def program_long_desc(description=nil)
  @program_long_desc = description if description
  @program_long_desc
end

#program_name(override = nil) ⇒ Object

:nodoc:



222
223
224
# File 'lib/coglius/app.rb', line 222

def program_name(override=nil) #:nodoc:
  warn "#program_name has been deprecated"
end

#skips_aroundObject

Use this if the following command should not have the around block executed. By default, the around block is executed, but for commands that might not want the setup to happen, this can be handy



57
58
59
# File 'lib/coglius/app.rb', line 57

def skips_around
  @skips_around = true
end

#skips_postObject

Use this if the following command should not have the post block executed. By default, the post block is executed after each command. Using this will avoid that behavior for the following command



50
51
52
# File 'lib/coglius/app.rb', line 50

def skips_post
  @skips_post = true
end

#skips_preObject

Use this if the following command should not have the pre block executed. By default, the pre block is executed before each command and can result in aborting the call. Using this will avoid that behavior for the following command



43
44
45
# File 'lib/coglius/app.rb', line 43

def skips_pre
  @skips_pre = true
end

#sort_help(sort_type) ⇒ Object

Control how commands and options are sorted in help output. By default, they are sorted alphabetically.

sort_type

How you want help commands/options sorted:

:manually

help commands/options are ordered in the order declared.

:alpha

sort alphabetically (default)



206
207
208
# File 'lib/coglius/app.rb', line 206

def sort_help(sort_type)
  @help_sort_type = sort_type
end

#stamp_appObject

Generate the command-line interface in the target language



18
19
20
# File 'lib/coglius/app.rb', line 18

def stamp_app
  # TODO: write this
end

#use_openstruct(use_openstruct) ⇒ Object

Call this with true will cause the global_options and options passed to your code to be wrapped in Options, which is a subclass of OpenStruct that adds [] and []= methods.

use_openstruct

a Boolean indicating if we should use OpenStruct instead of Hashes



152
153
154
# File 'lib/coglius/app.rb', line 152

def use_openstruct(use_openstruct)
  @use_openstruct = use_openstruct
end

#version(version) ⇒ Object

Indicate the version of your application

version

String containing the version of your application.



133
134
135
136
# File 'lib/coglius/app.rb', line 133

def version(version)
  @version = version
  switch :version, :negatable => false
end

#wrap_help_text(wrap_type) ⇒ Object

Set how help text is wrapped.

wrap_type

Symbol indicating how you’d like text wrapped:

:to_terminal

Wrap text based on the width of the terminal (default)

:verbatim

Format text exactly as it was given to the various methods. This is useful if your output has formatted output, e.g. ascii tables and you don’t want it messed with.

:one_line

Do not wrap text at all. This will bring all help content onto one line, removing any newlines

:tty_only

Wrap like :to_terminal if this output is going to a TTY, otherwise don’t wrap (like :one_line)



218
219
220
# File 'lib/coglius/app.rb', line 218

def wrap_help_text(wrap_type)
  @help_text_wrap_type = wrap_type
end