Class: Geminabox::Server

Inherits:
Sinatra::Base
  • Object
show all
Defined in:
lib/geminabox/server.rb

Class Method Summary collapse

Class Method Details

.allow_delete?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/geminabox/server.rb', line 21

def allow_delete?
  Geminabox.allow_delete
end

.allow_upload?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/geminabox/server.rb', line 25

def allow_upload?
  Geminabox.allow_upload
end

.dependency_cacheObject



64
65
66
# File 'lib/geminabox/server.rb', line 64

def dependency_cache
  @dependency_cache ||= Geminabox::DiskCache.new(File.join(Geminabox.data, "_cache"))
end

.disallow_replace?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/geminabox/server.rb', line 17

def disallow_replace?
  ! Geminabox.allow_replace
end

.file_classObject

This method provides a test hook, as stubbing File is painful…



75
76
77
# File 'lib/geminabox/server.rb', line 75

def file_class
  @file_class ||= File
end

.file_class=(klass) ⇒ Object



79
80
81
# File 'lib/geminabox/server.rb', line 79

def file_class=(klass)
  @file_class = klass
end

.fixup_bundler_rubygems!Object



29
30
31
32
33
# File 'lib/geminabox/server.rb', line 29

def fixup_bundler_rubygems!
  return if @post_reset_hook_applied
  Gem.post_reset{ Gem::Specification.all = nil } if defined? Bundler and Gem.respond_to? :post_reset
  @post_reset_hook_applied = true
end

.indexerObject



60
61
62
# File 'lib/geminabox/server.rb', line 60

def indexer
  Gem::Indexer.new(Geminabox.data, :build_legacy => Geminabox.build_legacy)
end

.reindex(force_rebuild = false) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/geminabox/server.rb', line 35

def reindex(force_rebuild = false)
  fixup_bundler_rubygems!
  force_rebuild = true unless Geminabox.incremental_updates
  if force_rebuild
    indexer.generate_index
    dependency_cache.flush
  else
    begin
      require 'geminabox/indexer'
      updated_gemspecs = Geminabox::Indexer.updated_gemspecs(indexer)
      return if updated_gemspecs.empty?
      Geminabox::Indexer.patch_rubygems_update_index_pre_1_8_25(indexer)
      indexer.update_index
      updated_gemspecs.each { |gem| dependency_cache.flush_key(gem.name) }
    rescue Errno::ENOENT
      with_rlock { reindex(:force_rebuild) }
    rescue => e
      puts "#{e.class}:#{e.message}"
      puts e.backtrace.join("\n")
      with_rlock { reindex(:force_rebuild) }
    end
  end
rescue Gem::SystemExitException
end

.with_rlock(&block) ⇒ Object



68
69
70
71
72
# File 'lib/geminabox/server.rb', line 68

def with_rlock(&block)
  file_class.open(Geminabox.lockfile, File::RDWR | File::CREAT) do |f|
    ReentrantFlock.synchronize(f, File::LOCK_EX | File::LOCK_NB, &block)
  end
end