class VagrantPlugins::Cachier::Bucket
Public Class Methods
Source
# File lib/vagrant-cachier/bucket.rb, line 9 def self.auto_detect(env) @buckets.each do |bucket| if bucket.respond_to?(:capability) && env[:machine].guest.capability?(bucket.capability) env[:machine].config.cache.enable bucket.bucket_name end end end
Source
# File lib/vagrant-cachier/bucket.rb, line 17 def self.bucket_name class_name = self.name.split('::').last class_name.scan(/[A-Z][a-z]*/).map{|x| x.downcase}.join("_") end
Source
# File lib/vagrant-cachier/bucket.rb, line 4 def self.inherited(base) @buckets ||= [] @buckets << base end
Source
# File lib/vagrant-cachier/bucket.rb, line 22 def self.install(name, env, configs) bucket = const_get(name.to_s.split("_").map{|x| x.capitalize}.join("")) bucket.new(name, env, configs).install end
Source
# File lib/vagrant-cachier/bucket.rb, line 27 def initialize(name, env, configs) @name = name @env = env @configs = configs end
Public Instance Methods
Source
# File lib/vagrant-cachier/bucket.rb, line 79 def empty_dir?(path) not comm.test("test \"$(ls -A #{path} 2>/dev/null)\"") end
Source
# File lib/vagrant-cachier/bucket.rb, line 46 def symlink(guest_path, bucket_path = "/tmp/vagrant-cache/#{@name}") return if @env[:cache_dirs].include?(guest_path) @env[:cache_dirs] << guest_path comm.execute("mkdir -p #{bucket_path}") unless symlink?(guest_path) comm.sudo("mkdir -p `dirname #{guest_path}`") if empty_dir?(bucket_path) && !empty_dir?(guest_path) # Warm up cache with guest machine data comm.sudo("shopt -s dotglob && mv #{guest_path}/* #{bucket_path}") end comm.sudo("rm -rf #{guest_path}") comm.sudo("ln -s #{bucket_path} #{guest_path}") end end
TODO: “merge” symlink and user_symlink
methods
Source
# File lib/vagrant-cachier/bucket.rb, line 83 def symlink?(path) comm.test("test -L #{path}") end
Source
# File lib/vagrant-cachier/bucket.rb, line 62 def user_symlink(guest_path) return if @env[:cache_dirs].include?(guest_path) @env[:cache_dirs] << guest_path bucket_path = "/tmp/vagrant-cache/#{@name}" comm.execute("mkdir -p #{bucket_path}") unless symlink?(guest_path) comm.execute("mkdir -p `dirname #{guest_path}`") if empty_dir?(bucket_path) && !empty_dir?(guest_path) # Warm up cache with guest machine data comm.execute("shopt -s dotglob && mv #{guest_path}/* #{bucket_path}") end comm.execute("rm -rf #{guest_path}") comm.execute("ln -s #{bucket_path} #{guest_path}") end end