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)


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

def allow_delete?
  Geminabox.allow_delete
end

.allow_upload?Boolean

Returns:

  • (Boolean)


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

def allow_upload?
  Geminabox.allow_upload
end

.dependency_cacheObject



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

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

.disallow_replace?Boolean

Returns:

  • (Boolean)


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

def disallow_replace?
  ! Geminabox.allow_replace
end

.file_classObject

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



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

def file_class
  @file_class ||= File
end

.file_class=(klass) ⇒ Object



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

def file_class=(klass)
  @file_class = klass
end

.fixup_bundler_rubygems!Object



34
35
36
37
38
# File 'lib/geminabox/server.rb', line 34

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



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

def indexer
  Gem::Indexer.new(Geminabox.data)
end

.reindex(force_rebuild = false) ⇒ Object



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

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?
      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



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

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