Revert "Revert "bundle: handle simultaneous exec --services better""

This reverts commit 94db0b2f3408280e20ca3888ed5c91672ab4fca2.
This commit is contained in:
Bo Anderson 2025-04-07 14:10:42 +01:00
parent 52a7b67ba5
commit f2513965e8
No known key found for this signature in database
2 changed files with 13 additions and 4 deletions

View File

@ -179,6 +179,7 @@ module Homebrew
params(
entries: T::Array[Homebrew::Bundle::Dsl::Entry],
_block: T.proc.params(
entry: Homebrew::Bundle::Dsl::Entry,
info: T::Hash[String, T.anything],
service_file: Pathname,
conflicting_services: T::Array[T::Hash[String, T.anything]],
@ -245,15 +246,20 @@ module Homebrew
raise "Failed to get service info for #{entry.name}" if info.nil?
yield info, service_file, conflicting_services
yield entry, info, service_file, conflicting_services
end
end
sig { params(entries: T::Array[Homebrew::Bundle::Dsl::Entry], _block: T.nilable(T.proc.void)).void }
private_class_method def self.run_services(entries, &_block)
entries_to_stop = []
services_to_restart = []
map_service_info(entries) do |info, service_file, conflicting_services|
map_service_info(entries) do |entry, info, service_file, conflicting_services|
# Don't restart if already running this version
loaded_file = Pathname.new(info["loaded_file"].to_s)
next if info["running"] && loaded_file&.file? && loaded_file&.realpath == service_file.realpath
if info["running"] && !Bundle::BrewServices.stop(info["name"], keep: true)
opoo "Failed to stop #{info["name"]} service"
end
@ -269,6 +275,8 @@ module Homebrew
unless Bundle::BrewServices.run(info["name"], file: service_file)
opoo "Failed to start #{info["name"]} service"
end
entries_to_stop << entry
end
return unless block_given?
@ -277,7 +285,7 @@ module Homebrew
yield
ensure
# Do a full re-evaluation of services instead state has changed
stop_services(entries)
stop_services(entries_to_stop)
services_to_restart.each do |service|
next if Bundle::BrewServices.run(service)
@ -289,7 +297,7 @@ module Homebrew
sig { params(entries: T::Array[Homebrew::Bundle::Dsl::Entry]).void }
private_class_method def self.stop_services(entries)
map_service_info(entries) do |info, _, _|
map_service_info(entries) do |_, info, _, _|
next unless info["loaded"]
# Try avoid services not started by `brew bundle services`

View File

@ -185,6 +185,7 @@ RSpec.describe Homebrew::Bundle::Commands::Exec do
allow(pkgconf).to receive(:any_version_installed?).and_return(false)
allow_any_instance_of(Pathname).to receive(:file?).and_return(true)
allow_any_instance_of(Pathname).to receive(:realpath) { |path| path }
allow(described_class).to receive(:exit!).and_return(nil)
end