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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
  | 
module Hbc
  class CaskError < RuntimeError; end
  class AbstractCaskErrorWithToken < CaskError
    attr_reader :token
    def initialize(token)
      @token = token
    end
  end
  class CaskNotInstalledError < AbstractCaskErrorWithToken
    def to_s
      "#{token} is not installed"
    end
  end
  class CaskUnavailableError < AbstractCaskErrorWithToken
    def to_s
      "No available Cask for #{token}"
    end
  end
  class CaskAlreadyCreatedError < AbstractCaskErrorWithToken
    def to_s
      %Q{A Cask for #{token} already exists. Run "brew cask cat #{token}" to see it.}
    end
  end
  class CaskAlreadyInstalledError < AbstractCaskErrorWithToken
    def to_s
      s = <<-EOS.undent
        A Cask for #{token} is already installed.
      EOS
      s.concat("\n").concat(reinstall_message)
    end
    private
    def reinstall_message
      <<-EOS.undent
        To re-install #{token}, run:
          brew cask uninstall --force #{token} && brew cask install #{token}
      EOS
    end
  end
  class CaskAlreadyInstalledAutoUpdatesError < CaskAlreadyInstalledError
    def to_s
      s = <<-EOS.undent
        A Cask for #{token} is already installed and using auto-updates.
      EOS
      s.concat("\n").concat(reinstall_message)
    end
  end
  class CaskCommandFailedError < CaskError
    def initialize(cmd, stdout, stderr, status)
      @cmd = cmd
      @stdout = stdout
      @stderr = stderr
      @status = status
    end
    def to_s
      s = "Command failed to execute!\n"
      s.concat("\n")
      s.concat("==> Failed command:\n")
      s.concat(@cmd).concat("\n")
      s.concat("\n")
      s.concat("==> Standard Output of failed command:\n")
      s.concat(@stdout).concat("\n")
      s.concat("\n")
      s.concat("==> Standard Error of failed command:\n")
      s.concat(@stderr).concat("\n")
      s.concat("\n")
      s.concat("==> Exit status of failed command:\n")
      s.concat(@status.inspect).concat("\n")
    end
  end
  class CaskX11DependencyError < AbstractCaskErrorWithToken
    def to_s
      <<-EOS.undent
        #{token} requires XQuartz/X11, which can be installed via homebrew-cask by
          brew cask install xquartz
        or manually, by downloading the package from
          https://www.xquartz.org/
      EOS
    end
  end
  class CaskCyclicCaskDependencyError < AbstractCaskErrorWithToken
    def to_s
      "Cask '#{token}' includes cyclic dependencies on other Casks and could not be installed."
    end
  end
  class CaskUnspecifiedError < CaskError
    def to_s
      "This command requires a Cask token"
    end
  end
  class CaskInvalidError < AbstractCaskErrorWithToken
    attr_reader :submsg
    def initialize(token, *submsg)
      super(token)
      @submsg = submsg.join(" ")
    end
    def to_s
      "Cask '#{token}' definition is invalid" + (!submsg.empty? ? ": #{submsg}" : "")
    end
  end
  class CaskTokenDoesNotMatchError < CaskInvalidError
    def initialize(token, header_token)
      super(token, "Bad header line: '#{header_token}' does not match file name")
    end
  end
  class CaskSha256MissingError < ArgumentError
  end
  class CaskSha256MismatchError < RuntimeError
    attr_reader :path, :expected, :actual
    def initialize(path, expected, actual)
      @path = path
      @expected = expected
      @actual = actual
    end
    def to_s
      <<-EOS.undent
        sha256 mismatch
        Expected: #{expected}
        Actual: #{actual}
        File: #{path}
        To retry an incomplete download, remove the file above.
      EOS
    end
  end
  class CaskNoShasumError < CaskError
    attr_reader :token
    def initialize(token)
      @token = token
    end
    def to_s
      <<-EOS.undent
        Cask '#{token}' does not have a sha256 checksum defined and was not installed.
        This means you have the "--require-sha" option set, perhaps in your HOMEBREW_CASK_OPTS.
      EOS
    end
  end
end
  |