# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
require 'samovar'
require 'set'
module Bake
module Command
# List all available commands.
class List < Samovar::Command
self.description = "List all available commands."
one :pattern, "The pattern to filter tasks by."
def format_parameters(parameters, terminal)
parameters.each do |type, name|
case type
when :key
name = "#{name}="
when :keyreq
name = "#{name}="
when :keyrest
name = "**#{name}"
else
name = name.to_s
end
terminal.print(:reset, " ")
terminal.print(type, name)
end
end
def format_recipe(recipe, terminal)
terminal.print(:command, recipe.command)
if parameters = recipe.parameters
format_parameters(parameters, terminal)
end
end
def print_scope(terminal, scope, printed: false)
format_recipe = self.method(:format_recipe).curry
scope.recipes.sort.each do |recipe|
if @pattern and !recipe.command.include?(pattern)
next
end
unless printed
yield
printed = true
end
terminal.print_line
terminal.print_line("\t", format_recipe[recipe])
documentation = recipe.documentation
documentation.description do |line|
terminal.print_line("\t\t", :description, line)
end
documentation.parameters do |parameter|
terminal.print_line("\t\t",
:parameter, parameter[:name], :reset, " [",
:type, parameter[:type], :reset, "] ",
:description, parameter[:details]
)
end
end
return printed
end
def call
first = true
terminal = @parent.terminal
context = @parent.context
if scope = context.scope
printed = print_scope(terminal, context.scope) do
terminal.print_line(:context, context)
end
if printed
terminal.print_line
end
end
context.loaders.each do |loader|
printed = false
loader.each do |path|
if scope = loader.scope_for(path)
print_scope(terminal, scope, printed: printed) do
terminal.print_line(:loader, loader)
printed = true
end
end
end
if printed
terminal.print_line
end
end
end
end
end
end