aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/cli/internal_dump.rb
blob: d1cfe8d632d1190d8e37a7502d136811a1122938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class Hbc::CLI::InternalDump < Hbc::CLI::InternalUseBase
  def self.run(*arguments)
    cask_tokens = cask_tokens_from(arguments)
    raise Hbc::CaskUnspecifiedError if cask_tokens.empty?
    retval = dump_casks(*cask_tokens)
    # retval is ternary: true/false/nil

    raise Hbc::CaskError, "nothing to dump" if retval.nil?
    raise Hbc::CaskError, "dump incomplete" unless retval
  end

  def self.dump_casks(*cask_tokens)
    Hbc.debug = true # Yuck. At the moment this is the only way to make dumps visible
    count = 0
    cask_tokens.each do |cask_token|
      begin
        cask = Hbc.load(cask_token)
        count += 1
        cask.dumpcask
      rescue StandardError => e
        opoo "#{cask_token} was not found or would not load: #{e}"
      end
    end
    count == 0 ? nil : count == cask_tokens.length
  end

  def self.help
    "Dump the given Cask in YAML format"
  end
end