Files
chromebrew/lib/convenience_functions.rb
SupeChicken666 c4c437f2bb crew: Fix .blank? call for proc blocks (#12083)
* crew: Fix .blank? call to proc blocks

Signed-off-by: SupeChicken666 <me@supechicken666.dev>

* Fix rubocop

Signed-off-by: SupeChicken666 <me@supechicken666.dev>

---------

Signed-off-by: SupeChicken666 <me@supechicken666.dev>
2025-06-20 09:41:22 +00:00

157 lines
5.9 KiB
Ruby

# lib/convenience_functions.rb
# Extracted bits of crew-specific code that we use frequently enough that it makes sense to split them out to here.
require 'json'
require_relative 'color'
require_relative 'const'
require_relative 'crewlog'
require_relative 'downloader'
# Reimplementation of .blank? method from ActiveSupport
class NilClass; def blank? = true; end
class Numeric; def blank? = false; end
class Proc; def blank? = false; end
class Array; def blank? = empty?; end
class Hash; def blank? = empty?; end
class Symbol; def blank? = empty?; end
class String; def blank? = strip.empty?; end
class ConvenienceFunctions
def self.determine_conflicts(pkg_name, filelist = File.join(CREW_META_PATH, "#{pkg_name}.filelist"), exclude_suffix = nil, verbose: false)
conflicts = {}
target_filelist = File.readlines(filelist, chomp: true)
puts 'Checking for conflicts with files from installed packages...'.orange if verbose
Dir[File.join(CREW_META_PATH, '*.filelist')].each do |filelist|
filelist_name = File.basename(filelist, '.filelist')
# skip filelist belongs to the same package/explicitly excluded
next if pkg_name == filelist_name || (exclude_suffix && filelist_name.end_with?(exclude_suffix))
# find out identical file paths with intersection
conflict = (target_filelist & File.readlines(filelist, chomp: true)).reject(&:empty?)
conflicts[filelist_name] = conflict if conflict.any?
end
return conflicts
end
def self.load_symbolized_json
return JSON.load_file(File.join(CREW_CONFIG_PATH, 'device.json'), symbolize_names: true).transform_values! { |val| val.is_a?(String) ? val.to_sym : val }
end
def self.save_json(json_object)
crewlog 'Saving device.json...'
begin
File.write File.join(CREW_CONFIG_PATH, 'device.json.tmp'), JSON.pretty_generate(JSON.parse(json_object.to_json))
# rubocop:disable Lint/UselessAssignment
rescue StandardError => e
# rubocop:enable Lint/UselessAssignment
puts "Error writing updated packages json file!\n{e.message}".lightred
abort
end
# Copy over original if the write to the tmp file succeeds.
FileUtils.cp("#{CREW_CONFIG_PATH}/device.json.tmp", File.join(CREW_CONFIG_PATH, 'device.json')) && FileUtils.rm("#{CREW_CONFIG_PATH}/device.json.tmp")
end
def self.libtoolize(library, lib_pkg_name = nil)
lib_pkg_name = library if lib_pkg_name.nil?
libname = library.to_s.start_with?('lib') ? library.downcase : "lib#{library.downcase}"
puts "Generating libtool file for #{lib_pkg_name}".orange
puts "grep \"#{CREW_LIB_PREFIX}/#{libname}.so\\\|#{CREW_DEST_LIB_PREFIX}/#{libname}-*.so\" #{CREW_META_PATH}/#{lib_pkg_name}.filelist" if CREW_VERBOSE
libnames = `grep "#{CREW_LIB_PREFIX}/#{libname}.so\\\|#{CREW_DEST_LIB_PREFIX}/#{libname}-*.so*" #{CREW_META_PATH}/#{lib_pkg_name}.filelist`.chomp.split(/$/).map(&:strip)
libnames.each do |s|
s.gsub!("#{CREW_LIB_PREFIX}/", '')
end
return if libnames.empty?
dlname = libnames.grep(/.so./).first
libname = dlname.gsub(/.so.\d+/, '')
longest_libname = libnames.max_by(&:length)
libvars = longest_libname.rpartition('.so.')[2].split('.')
libtool_file = <<~LIBTOOLEOF
# #{libname}.la - a libtool library file
# Generated by libtool (GNU libtool) (Created by Chromebrew)
#
# Please DO NOT delete this file!
# It is necessary for linking the library.
# The name that we can dlopen(3).
dlname='#{dlname}'
# Names of this library.
library_names='#{libnames.reverse.join(' ')}'
# The name of the static archive.
old_library='#{libname}.a'
# Linker flags that cannot go in dependency_libs.
inherited_linker_flags=''
# Libraries that this one depends upon.
dependency_libs=''
# Names of additional weak libraries provided by this library
weak_library_names=''
# Version information for #{library}.
current=#{libvars[1]}
age=#{libvars[1]}
revision=#{libvars[2]}
# Is this an already installed library?
installed=yes
# Should we warn about portability when linking against -modules?
shouldnotlink=no
# Files to dlopen/dlpreopen
dlopen=''
dlpreopen=''
# Directory that this library needs to be installed in:
libdir='#{CREW_LIB_PREFIX}'
LIBTOOLEOF
File.write("#{CREW_LIB_PREFIX}/#{libname}.la", libtool_file)
puts "Generated #{CREW_LIB_PREFIX}/#{libname}.la..."
end
def self.patch(patch_array = [])
return if patch_array.empty?
patch_array.each do |patch_item|
abort 'Patch array is not valid!'.lightred unless patch_item[0]
abort 'Patch sha256sum does not exist!'.lightred unless patch_item[1]
patch_file = File.basename(patch_item[0])
puts "downloader #{patch_item[0]}, #{patch_item[1]}" if CREW_VERBOSE
downloader patch_item[0], patch_item[1]
puts "patch -Np1 -i #{patch_file}" if CREW_VERBOSE
system "patch -Np1 -i #{patch_file}"
end
end
def self.set_default_browser(browser_name, browser_binary)
print "\nSet #{browser_name} as your default browser? [Y/n]: "
case $stdin.gets.chomp.downcase
when '', 'y', 'yes'
Dir.chdir("#{CREW_PREFIX}/bin") do
FileUtils.ln_sf browser_binary, 'x-www-browser'
end
puts "#{browser_name} is now your default browser.".lightgreen
else
puts 'No change has been made.'.orange
end
ExitMessage.add "\nType '#{browser_binary}' to get started.\n"
end
def self.unset_default_browser(browser_name, browser_binary)
Dir.chdir("#{CREW_PREFIX}/bin") do
if File.exist?('x-www-browser') && File.symlink?('x-www-browser') &&
["#{CREW_PREFIX}/share/#{browser_name.downcase}/#{browser_binary}",
"#{CREW_PREFIX}/bin/#{browser_binary}"].include?(File.realpath('x-www-browser'))
FileUtils.rm "#{CREW_PREFIX}/bin/x-www-browser"
end
end
end
end