Skip to content

Commit 3e135ec

Browse files
committed
Switch directory ownership to git ls-files
This switches away from using a glob match on '**' within `DirectoryOwnership` matcher in favour of using `git ls-files`. This provides a significant speed improvement for large repositories for a few reasons. The primary reason is that we're only searching through tracked files and avoiding potentially large directores, such as `node_modules`. The major intended side effect of this is that it only is dealing with tracked files rather than all files. I'm opening the PR for further discussion and refinement to see if this is worth considering. Speed comparison for me locally: Before: ``` ❯ time bin/codeownership validate ________________________________________________________ Executed in 16.72 secs fish external usr time 3.08 secs 0.10 millis 3.08 secs sys time 10.70 secs 1.59 millis 10.70 secs ``` After: ``` ❯ time bin/codeownership validate ________________________________________________________ Executed in 10.67 secs fish external usr time 2.90 secs 111.00 micros 2.90 secs sys time 8.65 secs 741.00 micros 8.65 secs ```
1 parent 2407ddb commit 3e135ec

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

lib/code_ownership/private/ownership_mappers/directory_ownership.rb

+4-6
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,10 @@ def update_cache(cache, files)
4141
returns(T::Hash[String, ::CodeTeams::Team])
4242
end
4343
def globs_to_owner(files)
44-
# The T.unsafe is because the upstream RBI is wrong for Pathname.glob
45-
T
46-
.unsafe(Pathname)
47-
.glob(File.join('**/', CODEOWNERS_DIRECTORY_FILE_NAME))
48-
.map(&:cleanpath)
49-
.each_with_object({}) do |pathname, res|
44+
`git ls-files **/#{CODEOWNERS_DIRECTORY_FILE_NAME}`
45+
.each_line
46+
.each_with_object({}) do |fname, res|
47+
pathname = Pathname.new(fname.strip).cleanpath
5048
owner = owner_for_codeowners_file(pathname)
5149
res[pathname.dirname.cleanpath.join('**/**').to_s] = owner
5250
end

0 commit comments

Comments
 (0)