Class: Pairtree::Path

Inherits:
Object
  • Object
show all
Defined in:
lib/pairtree/path.rb

Constant Summary collapse

@@leaf_proc =
lambda { |id| id }

Class Method Summary collapse

Class Method Details

.id_to_path(id) ⇒ Object



25
26
27
28
# File 'lib/pairtree/path.rb', line 25

def self.id_to_path id
  path = File.join(Pairtree::Identifier.encode(id).scan(/..?/),self.leaf(id))
  path.sub(%r{#{File::SEPARATOR}+$},'')
end

.leaf(id) ⇒ Object



17
18
19
20
21
22
23
# File 'lib/pairtree/path.rb', line 17

def self.leaf id
  if @@leaf_proc
    Pairtree::Identifier.encode(@@leaf_proc.call(id))
  else
    ''
  end
end

.path_to_id(ppath) ⇒ Object



30
31
32
33
34
# File 'lib/pairtree/path.rb', line 30

def self.path_to_id ppath
  parts = ppath.split(File::SEPARATOR)
  parts.pop if @@leaf_proc and parts.last.length > Root::SHORTY_LENGTH
  Pairtree::Identifier.decode(parts.join)
end

.remove!(path) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/pairtree/path.rb', line 36

def self.remove! path
  FileUtils.remove_dir(path, true)
  parts = path.split(File::SEPARATOR)
  parts.pop
  while parts.length > 0 and parts.last != 'pairtree_root'
    begin
      FileUtils.rmdir(parts.join(File::SEPARATOR))
      parts.pop
    rescue SystemCallError
      break
    end
  end
end

.set_leaf(value = nil, &block) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/pairtree/path.rb', line 5

def self.set_leaf value = nil, &block
  if value.nil?
    @@leaf_proc = block
  else
    if value.is_a?(Proc)
      @@leaf_proc = value
    else
      @@leaf_proc = lambda { |id| value }
    end
  end
end