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)


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

def allow_delete?
  Geminabox.allow_delete
end

.allow_upload?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/geminabox/server.rb', line 28

def allow_upload?
  Geminabox.allow_upload
end

.dependency_cacheObject



67
68
69
# File 'lib/geminabox/server.rb', line 67

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

.disallow_replace?Boolean

Returns:

  • (Boolean)


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

def disallow_replace?
  ! Geminabox.allow_replace
end

.file_classObject

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



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

def file_class
  @file_class ||= File
end

.file_class=(klass) ⇒ Object



82
83
84
# File 'lib/geminabox/server.rb', line 82

def file_class=(klass)
  @file_class = klass
end

.fixup_bundler_rubygems!Object



32
33
34
35
36
# File 'lib/geminabox/server.rb', line 32

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



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

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

.reindex(force_rebuild = false) ⇒ Object



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

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



71
72
73
74
75
# File 'lib/geminabox/server.rb', line 71

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