Class: GitFastClone::Runner

Inherits:
Object
  • Object
show all
Includes:
UrlHelper
Defined in:
lib/git-fastclone.rb

Overview

Spawns one thread per submodule, and updates them in parallel. They will be cached in the reference directory (see DEFAULT_REFERENCE_REPO_DIR), and their index will be incrementally updated. This prevents a large amount of data copying.

Constant Summary collapse

DEFAULT_REFERENCE_REPO_DIR =
'/var/tmp/git-fastclone/reference'.freeze
DEFAULT_GIT_ALLOW_PROTOCOL =
'file:git:http:https:ssh'.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from UrlHelper

parse_update_info, path_from_git_url, reference_repo_dir, reference_repo_lock_file, reference_repo_name, reference_repo_submodule_file

Constructor Details

#initializeRunner

Returns a new instance of Runner.



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/git-fastclone.rb', line 80

def initialize
  # Prefetch reference repos for submodules we've seen before
  # Keep our own reference accounting of module dependencies.
  self.prefetch_submodules = true

  # Thread-level locking for reference repos
  # TODO: Add flock-based locking if we want to avoid conflicting with
  # ourselves.
  self.reference_mutex = Hash.new { |hash, key| hash[key] = Mutex.new }

  # Only update each reference repo once per run.
  # TODO: May want to update this so we don't duplicate work with other copies
  # of ourself. Perhaps a last-updated-time and a timeout per reference repo.
  self.reference_updated = Hash.new { |hash, key| hash[key] = false }

  self.options = {}

  self.logger = nil # Only set in verbose mode

  self.abs_clone_path = Dir.pwd

  self.using_local_repo = false

  self.verbose = false

  self.color = false

  self.flock_timeout_secs = 0
end

Instance Attribute Details

#abs_clone_pathObject

Returns the value of attribute abs_clone_path.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def abs_clone_path
  @abs_clone_path
end

#colorObject

Returns the value of attribute color.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def color
  @color
end

#flock_timeout_secsObject

Returns the value of attribute flock_timeout_secs.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def flock_timeout_secs
  @flock_timeout_secs
end

#loggerObject

Returns the value of attribute logger.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def logger
  @logger
end

#optionsObject

Returns the value of attribute options.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def options
  @options
end

#prefetch_submodulesObject

Returns the value of attribute prefetch_submodules.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def prefetch_submodules
  @prefetch_submodules
end

#reference_dirObject

Returns the value of attribute reference_dir.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def reference_dir
  @reference_dir
end

#reference_mutexObject

Returns the value of attribute reference_mutex.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def reference_mutex
  @reference_mutex
end

#reference_updatedObject

Returns the value of attribute reference_updated.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def reference_updated
  @reference_updated
end

#using_local_repoObject

Returns the value of attribute using_local_repo.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def using_local_repo
  @using_local_repo
end

#verboseObject

Returns the value of attribute verbose.



76
77
78
# File 'lib/git-fastclone.rb', line 76

def verbose
  @verbose
end

Instance Method Details

#clone(url, rev, src_dir) ⇒ Object

Checkout to SOURCE_DIR. Update all submodules recursively. Use reference repos everywhere for speed.



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/git-fastclone.rb', line 190

def clone(url, rev, src_dir)
  initial_time = Time.now

  with_git_mirror(url) do |mirror|
    Terrapin::CommandLine.new('git clone', '--quiet --reference :mirror :url :path')
                         .run(mirror: mirror.to_s,
                              url: url.to_s,
                              path: File.join(abs_clone_path, src_dir).to_s)
  end

  # Only checkout if we're changing branches to a non-default branch
  if rev
    Dir.chdir(File.join(abs_clone_path, src_dir)) do
      Terrapin::CommandLine.new('git checkout', '--quiet :rev').run(rev: rev.to_s)
    end
  end

  update_submodules(src_dir, url)

  final_time = Time.now

  msg = "Checkout of #{src_dir} took #{final_time - initial_time}s"
  if color
    puts msg.green
  else
    puts msg
  end
end

#parse_inputsObject



158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/git-fastclone.rb', line 158

def parse_inputs
  parse_options

  unless ARGV[0]
    STDERR.puts usage
    exit(129)
  end

  if Dir.exist?(ARGV[0])
    url = File.expand_path ARGV[0]
    self.using_local_repo = true
  else
    url = ARGV[0]
  end

  path = ARGV[1] || path_from_git_url(url)

  if Dir.exist?(path)
    msg = "Clone destination #{File.join(abs_clone_path, path)} already exists!"
    raise msg.red if color

    raise msg
  end

  self.reference_dir = ENV['REFERENCE_REPO_DIR'] || DEFAULT_REFERENCE_REPO_DIR
  FileUtils.mkdir_p(reference_dir)

  [url, path, options]
end

#parse_optionsObject



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/git-fastclone.rb', line 127

def parse_options
  # One option --branch=<branch>  We're not as brittle as clone. That branch
  # can be a sha or tag and we're still okay.
  OptionParser.new do |opts|
    opts.banner = usage
    options[:branch] = nil

    opts.on('-b', '--branch BRANCH', 'Checkout this branch rather than the default') do |branch|
      options[:branch] = branch
    end

    opts.on('-v', '--verbose', 'Verbose mode') do
      self.verbose = true
      self.logger = Logger.new(STDOUT)
      logger.formatter = proc do |_severity, _datetime, _progname, msg|
        "#{msg}\n"
      end
      Terrapin::CommandLine.logger = logger
    end

    opts.on('-c', '--color', 'Display colored output') do
      self.color = true
    end

    opts.on('--lock-timeout N', 'Timeout in seconds to acquire a lock on any reference repo.
            Default is 0 which waits indefinitely.') do |timeout_secs|
      self.flock_timeout_secs = timeout_secs
    end
  end.parse!
end

#prefetch(submodule_file) ⇒ Object

Grab the children in the event of a prefetch



308
309
310
311
312
313
# File 'lib/git-fastclone.rb', line 308

def prefetch(submodule_file)
  File.readlines(submodule_file).each do |line|
    # We don't join these threads explicitly
    Thread.new { update_reference_repo(line.strip, false) }
  end
end

#runObject



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/git-fastclone.rb', line 110

def run
  url, path, options = parse_inputs

  require_relative './git-fastclone/version'
  msg = "git-fastclone #{GitFastCloneVersion::VERSION}"
  if color
    puts msg.yellow
  else
    puts msg
  end

  puts "Cloning #{path_from_git_url(url)} to #{File.join(abs_clone_path, path)}"
  Terrapin::CommandLine.environment['GIT_ALLOW_PROTOCOL'] =
    ENV['GIT_ALLOW_PROTOCOL'] || DEFAULT_GIT_ALLOW_PROTOCOL
  clone(url, options[:branch], path)
end

#store_updated_repo(url, mirror, repo_name, fail_hard) ⇒ Object

Creates or updates the mirror repo then stores an indication that this repo has been updated on this run of fastclone



317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# File 'lib/git-fastclone.rb', line 317

def store_updated_repo(url, mirror, repo_name, fail_hard)
  unless Dir.exist?(mirror)
    Terrapin::CommandLine.new('git clone', '--mirror :url :mirror')
                         .run(url: url.to_s, mirror: mirror.to_s)
  end

  Terrapin::CommandLine.new('cd', ':path; git remote update --prune').run(path: mirror)

  reference_updated[repo_name] = true
rescue Terrapin::ExitStatusError => e
  # To avoid corruption of the cache, if we failed to update or check out we remove
  # the cache directory entirely. This may cause the current clone to fail, but if the
  # underlying error from git is transient it will not affect future clones.
  FileUtils.remove_entry_secure(mirror, force: true)
  raise e if fail_hard
end

#thread_update_submodule(submodule_url, submodule_path, threads, pwd) ⇒ Object



239
240
241
242
243
244
245
246
247
248
249
250
# File 'lib/git-fastclone.rb', line 239

def thread_update_submodule(submodule_url, submodule_path, threads, pwd)
  threads << Thread.new do
    with_git_mirror(submodule_url) do |mirror|
      Terrapin::CommandLine.new('cd', ':dir; git submodule update --quiet --reference :mirror :path')
                           .run(dir: File.join(abs_clone_path, pwd).to_s,
                                mirror: mirror.to_s,
                                path: submodule_path.to_s)
    end

    update_submodules(File.join(pwd, submodule_path), submodule_url)
  end
end

#update_reference_repo(url, fail_hard) ⇒ Object

Fail_hard indicates whether the update is considered a failure of the overall checkout or not. When we pre-fetch based off of cached information, fail_hard is false. When we fetch based off info in a repository directly, fail_hard is true.



291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
# File 'lib/git-fastclone.rb', line 291

def update_reference_repo(url, fail_hard)
  repo_name = reference_repo_name(url)
  mirror = reference_repo_dir(url, reference_dir, using_local_repo)

  with_reference_repo_lock(url) do
    # we've created this to track submodules' history
    submodule_file = reference_repo_submodule_file(url, reference_dir, using_local_repo)

    # if prefetch is on, then grab children immediately to frontload network requests
    prefetch(submodule_file) if File.exist?(submodule_file) && prefetch_submodules

    # Store the fact that our repo has been updated if necessary
    store_updated_repo(url, mirror, repo_name, fail_hard) unless reference_updated[repo_name]
  end
end

#update_submodule_reference(url, submodule_url_list) ⇒ Object



276
277
278
279
280
281
282
283
284
285
# File 'lib/git-fastclone.rb', line 276

def update_submodule_reference(url, submodule_url_list)
  return if submodule_url_list.empty? || prefetch_submodules.nil?

  with_reference_repo_lock(url) do
    # Write the dependency file using submodule list
    File.open(reference_repo_submodule_file(url, reference_dir, using_local_repo), 'w') do |f|
      submodule_url_list.each { |submodule_url| f.write("#{submodule_url}\n") }
    end
  end
end

#update_submodules(pwd, url) ⇒ Object



219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/git-fastclone.rb', line 219

def update_submodules(pwd, url)
  return unless File.exist?(File.join(abs_clone_path, pwd, '.gitmodules'))

  puts 'Updating submodules...' if verbose

  threads = []
  submodule_url_list = []

  Terrapin::CommandLine.new('cd', ':path; git submodule init 2>&1')
                       .run(path: File.join(abs_clone_path, pwd)).split("\n").each do |line|
    submodule_path, submodule_url = parse_update_info(line)
    submodule_url_list << submodule_url

    thread_update_submodule(submodule_url, submodule_path, threads, pwd)
  end

  update_submodule_reference(url, submodule_url_list)
  threads.each(&:join)
end

#usageObject



380
381
382
# File 'lib/git-fastclone.rb', line 380

def usage
  'Usage: git fastclone [options] <git-url> [path]'
end

#with_git_mirror(url) ⇒ Object

This command will create and bring the mirror up-to-date on-demand, blocking any code passed in while the mirror is brought up-to-date

In future we may need to synchronize with flock here if we run multiple builds at once against the same reference repos. One build per slave at the moment means we only need to synchronize our own threads in case a single submodule url is included twice via multiple dependency paths



341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
# File 'lib/git-fastclone.rb', line 341

def with_git_mirror(url)
  update_reference_repo(url, true)

  # Sometimes remote updates involve re-packing objects on a different thread
  # We grab the reference repo lock here just to make sure whatever thread
  # ended up doing the update is done with its housekeeping.
  # This makes sure we have control and unlock when the block returns:
  with_reference_repo_lock(url) do
    dir = reference_repo_dir(url, reference_dir, using_local_repo)
    retries_left = 1

    begin
      yield dir
    rescue Terrapin::ExitStatusError => e
      error_strings = [
        'fatal: missing blob object',
        'fatal: remote did not send all necessary objects',
        /fatal: packed object [a-z0-9]+ \(stored in .*?\) is corrupt/,
        /fatal: pack has \d+ unresolved delta/,
        'error: unable to read sha1 file of ',
        'fatal: did not receive expected object',
        /^fatal: unable to read tree [a-z0-9]+\n^warning: Clone succeeded, but checkout failed/
      ]
      if e.to_s =~ /^STDERR:\n.+^#{Regexp.union(error_strings)}/m
        # To avoid corruption of the cache, if we failed to update or check out we remove
        # the cache directory entirely. This may cause the current clone to fail, but if the
        # underlying error from git is transient it will not affect future clones.
        FileUtils.remove_entry_secure(dir, force: true)
        if retries_left > 0
          retries_left -= 1
          retry
        end
      end

      raise
    end
  end
end

#with_reference_repo_lock(url, &block) ⇒ Object



252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/git-fastclone.rb', line 252

def with_reference_repo_lock(url, &block)
  # Sane POSIX implementations remove exclusive flocks when a process is terminated or killed
  # We block here indefinitely. Waiting for other git-fastclone processes to release the lock.
  # With the default timeout of 0 we will wait forever, this can be overridden on the command line.
  lockfile = reference_repo_lock_file(url, reference_dir, using_local_repo)
  Timeout.timeout(flock_timeout_secs) { lockfile.flock(File::LOCK_EX) }
  with_reference_repo_thread_lock(url, &block)
ensure
  # Not strictly necessary to do this unlock as an ensure. If ever exception is caught outside this
  # primitive, ensure protection may come in handy.
  lockfile.flock(File::LOCK_UN)
  lockfile.close
end

#with_reference_repo_thread_lock(url) ⇒ Object



266
267
268
269
270
271
272
273
274
# File 'lib/git-fastclone.rb', line 266

def with_reference_repo_thread_lock(url)
  # We also need thread level locking because pre-fetch means multiple threads can
  # attempt to update the same repository from a single git-fastclone process
  # file locks in posix are tracked per process, not per userland thread.
  # This gives us the equivalent of pthread_mutex around these accesses.
  reference_mutex[reference_repo_name(url)].synchronize do
    yield
  end
end