-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
/
Copy pathinstaller.rb
351 lines (316 loc) · 11.4 KB
/
installer.rb
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
require 'rubygems'
require 'hbc/cask_dependencies'
require 'hbc/staged'
class Hbc::Installer
# todo: it is unwise for Hbc::Staged to be a module, when we are
# dealing with both staged and unstaged Casks here. This should
# either be a class which is only sometimes instantiated, or there
# should be explicit checks on whether staged state is valid in
# every method.
include Hbc::Staged
PERSISTENT_METADATA_SUBDIRS = [ 'gpg' ]
def initialize(cask, command=Hbc::SystemCommand)
@cask = cask
@command = command
end
def self.print_caveats(cask)
odebug "Printing caveats"
unless cask.caveats.empty?
output = capture_output do
cask.caveats.each do |caveat|
if caveat.respond_to?(:eval_and_print)
caveat.eval_and_print(cask)
else
puts caveat
end
end
end
unless output.empty?
ohai "Caveats"
puts output
end
end
end
def self.capture_output(&block)
old_stdout = $stdout
$stdout = Buffer.new($stdout.tty?)
block.call
output = $stdout.string
$stdout = old_stdout
output
end
def install(force=false, skip_cask_deps=false)
odebug "Hbc::Installer.install"
if @cask.installed? && !force
raise Hbc::CaskAlreadyInstalledError.new(@cask)
end
print_caveats
begin
satisfy_dependencies(skip_cask_deps)
download
extract_primary_container
install_artifacts
save_caskfile force
enable_accessibility_access
rescue StandardError => e
purge_versioned_files
raise e
end
puts summary
end
def summary
s = if MacOS.release >= :lion and not ENV['HOMEBREW_NO_EMOJI']
(ENV['HOMEBREW_INSTALL_BADGE'] || "\xf0\x9f\x8d\xba") + ' '
else
"#{Tty.blue.bold}==>#{Tty.white} Success!#{Tty.reset} "
end
s << "#{@cask} staged at '#{@cask.staged_path}' (#{Hbc::Utils.cabv(@cask.staged_path)})"
end
def download
odebug "Downloading"
download = Hbc::Download.new(@cask)
@downloaded_path = download.perform
odebug "Downloaded to -> #{@downloaded_path}"
@downloaded_path
end
def extract_primary_container
odebug "Extracting primary container"
FileUtils.mkdir_p @cask.staged_path
container = if @cask.container and @cask.container.type
Hbc::Container.from_type(@cask.container.type)
else
Hbc::Container.for_path(@downloaded_path, @command)
end
unless container
raise Hbc::CaskError.new "Uh oh, could not identify primary container for '#{@downloaded_path}'"
end
odebug "Using container class #{container} for #{@downloaded_path}"
container.new(@cask, @downloaded_path, @command).extract
end
def install_artifacts
odebug "Installing artifacts"
artifacts = Hbc::Artifact.for_cask(@cask)
odebug "#{artifacts.length} artifact/s defined", artifacts
artifacts.each do |artifact|
odebug "Installing artifact of class #{artifact}"
artifact.new(@cask, @command).install_phase
end
end
# todo move dependencies to a separate class
# dependencies should also apply for "brew cask stage"
# override dependencies with --force or perhaps --force-deps
def satisfy_dependencies(skip_cask_deps=false)
if @cask.depends_on
ohai 'Satisfying dependencies'
macos_dependencies
arch_dependencies
x11_dependencies
formula_dependencies
cask_dependencies unless skip_cask_deps
puts 'complete'
end
end
def macos_dependencies
return unless @cask.depends_on.macos
if @cask.depends_on.macos.first.is_a?(Array)
operator, release = @cask.depends_on.macos.first
unless MacOS.release.send(operator, release)
raise Hbc::CaskError.new "Cask #{@cask} depends on OS X release #{operator} #{release}, but you are running release #{MacOS.release}."
end
elsif @cask.depends_on.macos.length > 1
unless @cask.depends_on.macos.include?(Gem::Version.new(MacOS.release.to_s))
raise Hbc::CaskError.new "Cask #{@cask} depends on OS X release being one of: #{@cask.depends_on.macos(&:to_s).inspect}, but you are running release #{MacOS.release}."
end
else
unless MacOS.release == @cask.depends_on.macos.first
raise Hbc::CaskError.new "Cask #{@cask} depends on OS X release #{@cask.depends_on.macos.first}, but you are running release #{MacOS.release}."
end
end
end
def arch_dependencies
return unless @cask.depends_on.arch
@current_arch ||= [
Hardware::CPU.type,
Hardware::CPU.is_32_bit? ?
(Hardware::CPU.intel? ? :i386 : :ppc_7400) :
(Hardware::CPU.intel? ? :x86_64 : :ppc_64)
]
return unless Array(@cask.depends_on.arch & @current_arch).empty?
raise Hbc::CaskError.new "Cask #{@cask} depends on hardware architecture being one of #{@cask.depends_on.arch.inspect}, but you are running #{@current_arch.inspect}"
end
def x11_dependencies
return unless @cask.depends_on.x11
if Hbc.x11_libpng.select(&:exist?).empty?
raise Hbc::CaskX11DependencyError.new(@cask.token)
end
end
def formula_dependencies
return unless @cask.depends_on.formula and not @cask.depends_on.formula.empty?
ohai 'Installing Formula dependencies from Homebrew'
@cask.depends_on.formula.each do |dep_name|
print "#{dep_name} ... "
installed = @command.run(Hbc.homebrew_executable,
:args => ['list', '--versions', dep_name],
:print_stderr => false).stdout.include?(dep_name)
if installed
puts "already installed"
else
@command.run!(Hbc.homebrew_executable,
:args => ['install', dep_name])
puts "done"
end
end
end
def cask_dependencies
return unless @cask.depends_on.cask and not @cask.depends_on.cask.empty?
ohai "Installing Cask dependencies: #{@cask.depends_on.cask.join(', ')}"
deps = Hbc::CaskDependencies.new(@cask)
deps.sorted.each do |dep_token|
puts "#{dep_token} ..."
dep = Hbc.load(dep_token)
if dep.installed?
puts "already installed"
else
Hbc::Installer.new(dep).install(false, true)
puts "done"
end
end
end
def print_caveats
self.class.print_caveats(@cask)
end
# todo: logically could be in a separate class
def enable_accessibility_access
return unless @cask.accessibility_access
ohai 'Enabling accessibility access'
if MacOS.release >= :mavericks
@command.run!('/usr/bin/sqlite3',
:args => [
Hbc.tcc_db,
"INSERT INTO access VALUES('kTCCServiceAccessibility','#{bundle_identifier}',0,1,1,NULL);",
],
:sudo => true)
else
@command.run!('/usr/bin/touch',
:args => [Hbc.pre_mavericks_accessibility_dotfile],
:sudo => true)
end
end
def disable_accessibility_access
return unless @cask.accessibility_access
if MacOS.release >= :mavericks
ohai 'Disabling accessibility access'
@command.run!('/usr/bin/sqlite3',
:args => [
Hbc.tcc_db,
"DELETE FROM access WHERE client='#{bundle_identifier}';",
],
:sudo => true)
else
opoo <<-EOS.undent
Accessibility access was enabled for #{@cask}, but it is not safe to disable
automatically on this version of OS X. See System Preferences.
EOS
end
end
def save_caskfile(force=false)
timestamp = :now
create = true
savedir = @cask.metadata_subdir('Casks', timestamp, create)
if Dir.entries(savedir).size > 2
# should not happen
if force
savedir.rmtree
FileUtils.mkdir_p savedir
else
raise Hbc::CaskAlreadyInstalledError.new(@cask)
end
end
FileUtils.copy(@cask.sourcefile_path, savedir) if @cask.sourcefile_path
end
def uninstall(force=false)
odebug "Hbc::Installer.uninstall"
disable_accessibility_access
uninstall_artifacts
purge_versioned_files
purge_caskroom_path if force
end
def uninstall_artifacts
odebug "Un-installing artifacts"
artifacts = Hbc::Artifact.for_cask(@cask)
odebug "#{artifacts.length} artifact/s defined", artifacts
artifacts.each do |artifact|
odebug "Un-installing artifact of class #{artifact}"
artifact.new(@cask, @command).uninstall_phase
end
end
def zap
ohai %Q{Implied "brew cask uninstall #{@cask}"}
uninstall_artifacts
if Hbc::Artifact::Zap.me?(@cask)
ohai "Dispatching zap stanza"
Hbc::Artifact::Zap.new(@cask, @command).zap_phase
else
opoo "No zap stanza present for Cask '#{@cask}'"
end
ohai %Q{Removing all staged versions of Cask '#{@cask}'}
purge_caskroom_path
end
# this feels like a class method, but uses @command
def permissions_rmtree(path)
if path.respond_to?(:rmtree) and path.exist?
tried_permissions = false
tried_ownership = false
begin
path.rmtree
rescue StandardError => e
# in case of permissions problems
if path.exist? and !tried_permissions
begin
# todo Better handling for the case where path is a symlink.
# The -h and -R flags cannot be combined, and behavior is
# dependent on whether the file argument has a trailing
# slash. This should do the right thing, but is fragile.
@command.run!('/usr/bin/chflags', :args => ['-R', '--', '000', path])
@command.run!('/bin/chmod', :args => ['-R', '--', 'u+rwx', path])
@command.run!('/bin/chmod', :args => ['-R', '-N', path])
rescue StandardError => e
unless tried_ownership
# in case of ownership problems
# todo Further examine files to see if ownership is the problem
# before using sudo+chown
ohai "Using sudo to gain ownership of path '#{path}'"
current_user = Etc.getpwuid(Process.euid).name
@command.run('/usr/sbin/chown', :args => ['-R', '--', current_user, path],
:sudo => true)
tried_ownership = true
retry # permissions
end
end
tried_permissions = true
retry # rmtree
end
end
end
end
def purge_versioned_files
odebug "Purging files for version #{@cask.version} of Cask #{@cask}"
# versioned staged distribution
permissions_rmtree(@cask.staged_path)
# Homebrew-cask metadata
if @cask.metadata_versioned_container_path.respond_to?(:children) and
@cask.metadata_versioned_container_path.exist?
@cask.metadata_versioned_container_path.children.each do |subdir|
permissions_rmtree subdir unless PERSISTENT_METADATA_SUBDIRS.include?(subdir.basename)
end
end
Hbc::Utils.rmdir_if_possible(@cask.metadata_versioned_container_path)
Hbc::Utils.rmdir_if_possible(@cask.metadata_master_container_path)
# toplevel staged distribution
Hbc::Utils.rmdir_if_possible(@cask.caskroom_path)
end
def purge_caskroom_path
odebug "Purging all staged versions of Cask #{@cask}"
permissions_rmtree(@cask.caskroom_path)
end
end