class Bootsnap::LoadPathCache::Cache
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/bootsnap/load_path_cache/cache.rbs class Bootsnap::LoadPathCache::Cache def find: (String feature) -> (String | false) def now: () -> Integer def reinitialize: (?Array[String] path_obj) -> Array[String] def search_index: (String feature) -> String? def search_index: (String feature) -> String? def stale?: () -> false def try_index: (String feature) -> String? def try_index: (String feature) -> String? def try_index: (String feature) -> String? end
def dir_changed?
def dir_changed? @prev_dir ||= Dir.pwd if @prev_dir == Dir.pwd false else @prev_dir = Dir.pwd true end end
def expand_path(feature)
def expand_path(feature) maybe_append_extension(File.expand_path(feature)) end
def find(feature)
Experimental RBS support (using type sampling data from the type_fusion
project).
def find: (String feature) -> (String | false)
This signature was generated using 127 samples from 3 applications.
Try to resolve this feature to an absolute path without traversing the
def find(feature) reinitialize if (@has_relative_paths && dir_changed?) || stale? feature = feature.to_s.freeze return feature if Bootsnap.absolute_path?(feature) if feature.start_with?("./", "../") return expand_path(feature) end @mutex.synchronize do x = search_index(feature) return x if x # Ruby has some built-in features that require lies about. # For example, 'enumerator' is built in. If you require it, ruby # returns false as if it were already loaded; however, there is no # file to find on disk. We've pre-built a list of these, and we # return false if any of them is loaded. return false if BUILTIN_FEATURES.key?(feature) # The feature wasn't found on our preliminary search through the index. # We resolve this differently depending on what the extension was. case File.extname(feature) # If the extension was one of the ones we explicitly cache (.rb and the # native dynamic extension, e.g. .bundle or .so), we know it was a # failure and there's nothing more we can do to find the file. # no extension, .rb, (.bundle or .so) when "", *CACHED_EXTENSIONS nil # Ruby allows specifying native extensions as '.so' even when DLEXT # is '.bundle'. This is where we handle that case. when DOT_SO x = search_index(feature[0..-4] + DLEXT) return x if x if DLEXT2 x = search_index(feature[0..-4] + DLEXT2) return x if x end else # other, unknown extension. For example, `.rake`. Since we haven't # cached these, we legitimately need to run the load path search. return FALLBACK_SCAN end end # In development mode, we don't want to confidently return failures for # cases where the file doesn't appear to be on the load path. We should # be able to detect newly-created files without rebooting the # application. return FALLBACK_SCAN if @development_mode end
def initialize(store, path_obj, development_mode: false)
def initialize(store, path_obj, development_mode: false) @development_mode = development_mode @store = store @mutex = Mutex.new @path_obj = path_obj.map! { |f| PathScanner.os_path(File.exist?(f) ? File.realpath(f) : f.dup) } @has_relative_paths = nil reinitialize end
def load_dir(dir)
e.g. given "/a/b/c/d" exists, and the path is ["/a/b"], load_dir("c/d")
What is the path item that contains the dir as child?
def load_dir(dir) reinitialize if stale? @mutex.synchronize { @dirs[dir] } end
def maybe_append_extension(feature)
def maybe_append_extension(feature) try_ext(feature + DOT_RB) || try_ext(feature + DLEXT) || try_ext(feature + DLEXT2) || feature end
def maybe_append_extension(feature)
def maybe_append_extension(feature) try_ext(feature + DOT_RB) || try_ext(feature + DLEXT) || feature end
def now
Experimental RBS support (using type sampling data from the type_fusion
project).
def now: () -> Integer
This signature was generated using 119 samples from 3 applications.
def now Process.clock_gettime(Process::CLOCK_MONOTONIC).to_i end
def push_paths(sender, *paths)
def push_paths(sender, *paths) return unless sender == @path_obj @mutex.synchronize { push_paths_locked(*paths) } end
def push_paths_locked(*paths)
def push_paths_locked(*paths) @store.transaction do paths.map(&:to_s).each do |path| p = Path.new(path) @has_relative_paths = true if p.relative? next if p.non_directory? p = p.to_realpath expanded_path = p.expanded_path entries, dirs = p.entries_and_dirs(@store) # push -> low precedence -> set only if unset dirs.each { |dir| @dirs[dir] ||= path } entries.each { |rel| @index[rel] ||= expanded_path } end end end
def reinitialize(path_obj = @path_obj)
Experimental RBS support (using type sampling data from the type_fusion
project).
def reinitialize: (?String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String path_obj) -> String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String | String
This signature was generated using 1 sample from 1 application.
def reinitialize(path_obj = @path_obj) @mutex.synchronize do @path_obj = path_obj ChangeObserver.register(@path_obj, self) @index = {} @dirs = {} @generated_at = now push_paths_locked(*@path_obj) end end
def search_index(feature)
Experimental RBS support (using type sampling data from the type_fusion
project).
def search_index: (String feature) -> String?
This signature was generated using 86 samples from 3 applications.
def search_index(feature) try_index(feature + DOT_RB) || try_index(feature + DLEXT) || try_index(feature + DLEXT2) || try_index(feature) end
def search_index(feature)
Experimental RBS support (using type sampling data from the type_fusion
project).
def search_index: (String feature) -> String?
This signature was generated using 86 samples from 3 applications.
def search_index(feature) try_index(feature + DOT_RB) || try_index(feature + DLEXT) || try_index(feature) end
def stale?
Experimental RBS support (using type sampling data from the type_fusion
project).
def stale?: () -> false
This signature was generated using 116 samples from 3 applications.
def stale? @development_mode && @generated_at + AGE_THRESHOLD < now end
def try_ext(feature)
def try_ext(feature) feature if File.exist?(feature) end
def try_index(feature)
Experimental RBS support (using type sampling data from the type_fusion
project).
def try_index: (String feature) -> String?
This signature was generated using 88 samples from 3 applications.
def try_index(feature) if (path = @index[feature]) -File.join(path, feature).freeze end end
def try_index(feature)
Experimental RBS support (using type sampling data from the type_fusion
project).
def try_index: (String feature) -> String?
This signature was generated using 88 samples from 3 applications.
def try_index(feature) if (path = @index[feature]) -File.join(path, feature).untaint end end
def try_index(feature)
Experimental RBS support (using type sampling data from the type_fusion
project).
def try_index: (String feature) -> String?
This signature was generated using 88 samples from 3 applications.
def try_index(feature) if (path = @index[feature]) File.join(path, feature) end end
def unshift_paths(sender, *paths)
def unshift_paths(sender, *paths) return unless sender == @path_obj @mutex.synchronize { unshift_paths_locked(*paths) } end
def unshift_paths_locked(*paths)
def unshift_paths_locked(*paths) @store.transaction do paths.map(&:to_s).reverse_each do |path| p = Path.new(path) next if p.non_directory? p = p.to_realpath expanded_path = p.expanded_path entries, dirs = p.entries_and_dirs(@store) # unshift -> high precedence -> unconditional set dirs.each { |dir| @dirs[dir] = path } entries.each { |rel| @index[rel] = expanded_path } end end end