File size: 3,663 Bytes
d5bfab8 |
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 |
require 'toml'
require 'singleton'
require 'pathname'
class Config
include Singleton
attr_reader :dot_loda_rust
attr_reader :analytics_dir
attr_reader :loda_programs_repository
attr_reader :loda_rust_executable
attr_reader :loda_cpp_executable
attr_reader :oeis_stripped_file
attr_reader :oeis_names_file
attr_reader :loda_outlier_programs_repository
attr_reader :loda_submitted_by
attr_reader :arc_repository_data
def initialize
rust_project_default_config = Config.pathname_to_default_config_toml_inside_rust_project
name_dot_loda_rust = '.loda-rust'
homedir = ENV['HOME']
dot_loda_rust = File.join(homedir, name_dot_loda_rust)
path = File.join(dot_loda_rust, 'config.toml')
dict_custom = TOML.load_file(path)
dict_fallback = TOML.load_file(rust_project_default_config)
dict = dict_fallback.merge(dict_custom)
@dot_loda_rust = dot_loda_rust
@analytics_dir = File.join(dot_loda_rust, 'analytics-oeis')
@loda_programs_repository = Config.resolve_path(dict, 'loda_programs_repository', homedir)
@loda_rust_executable = Config.resolve_path(dict, 'loda_rust_executable', homedir)
@loda_cpp_executable = Config.resolve_path(dict, 'loda_cpp_executable', homedir)
@oeis_stripped_file = Config.resolve_path(dict, 'oeis_stripped_file', homedir)
@oeis_names_file = Config.resolve_path(dict, 'oeis_names_file', homedir)
@loda_submitted_by = dict['loda_submitted_by']
@loda_outlier_programs_repository = Config.resolve_path(dict, 'loda_outlier_programs_repository', homedir)
@arc_repository_data = Config.resolve_path(dict, 'arc_repository_data', homedir)
end
def self.pathname_to_default_config_toml_inside_rust_project
path_from_root_to_default_config_toml = "rust_project/loda-rust-cli/src/config/default_config.toml"
pathname = pathname_to_loda_rust_dir + path_from_root_to_default_config_toml
unless pathname.file?
raise "Unable to find #{pathname.inspect}"
end
pathname
end
def self.pathname_to_loda_rust_dir
pn = Pathname.new(__FILE__)
100.times do
name = pn.basename.to_s
if name == 'loda-rust'
return pn
end
pn = pn.parent
if pn == nil || pn.to_s == "/"
raise "Unable to find root dir of loda-rust repo"
end
end
raise "Too many attempts. Unable to find loda-rust repo"
end
def self.resolve_path(dict, key, homedir)
path = dict[key]
raise "config file has no path for key #{key.inspect}" if path == nil
path2 = path.gsub(/^[$]HOME\//, '')
if path2.length < path.length
return File.join(homedir, path2)
end
return path
end
def loda_programs_oeis
File.join(@loda_programs_repository, 'oeis')
end
def dot_loda_rust_mine_event
File.join(@dot_loda_rust, 'mine-event')
end
def analytics_dir_dont_mine_file
File.join(@analytics_dir, 'dont_mine.csv')
end
def analytics_dir_dependencies_file
File.join(@analytics_dir, 'dependencies.csv')
end
def analytics_dir_programs_invalid_file
File.join(@analytics_dir, 'programs_invalid.csv')
end
def analytics_dir_program_rank_file
File.join(@analytics_dir, 'program_rank.csv')
end
def loda_outlier_programs_repository_oeis_divergent
File.join(@loda_outlier_programs_repository, 'oeis_divergent')
end
end
|