Class: Avm::Launcher::Paths::Logical

Inherits:
Object
  • Object
show all
Includes:
EacRubyUtils::SimpleCache
Defined in:
lib/avm/launcher/paths/logical.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context, parent_path, real, logical) ⇒ Logical

Returns a new instance of Logical.



21
22
23
24
25
26
# File 'lib/avm/launcher/paths/logical.rb', line 21

def initialize(context, parent_path, real, logical)
  @context = context
  @parent_path = parent_path
  @real = ::Avm::Launcher::Paths::Real.new(real)
  @logical = logical
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



19
20
21
# File 'lib/avm/launcher/paths/logical.rb', line 19

def context
  @context
end

#logicalObject (readonly)

Returns the value of attribute logical.



19
20
21
# File 'lib/avm/launcher/paths/logical.rb', line 19

def logical
  @logical
end

#parent_pathObject (readonly)

Returns the value of attribute parent_path.



19
20
21
# File 'lib/avm/launcher/paths/logical.rb', line 19

def parent_path
  @parent_path
end

#realObject (readonly)

Returns the value of attribute real.



19
20
21
# File 'lib/avm/launcher/paths/logical.rb', line 19

def real
  @real
end

Class Method Details

.from_h(context, hash) ⇒ Object



13
14
15
16
# File 'lib/avm/launcher/paths/logical.rb', line 13

def from_h(context, hash)
  parent_path = hash[:parent_path] ? from_h(context, hash[:parent_path]) : nil
  new(context, parent_path, hash[:real], hash[:logical])
end

Instance Method Details

#childrenObject



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/avm/launcher/paths/logical.rb', line 40

def children
  r = []
  Dir.entries(warped).each do |c|
    c_path = ::File.join(warped, c)
    next unless ::File.directory?(c_path)
    next if c.start_with?('.')

    r << build_child(c)
  end
  r
end

#included?Boolean

Returns:

  • (Boolean)


52
53
54
# File 'lib/avm/launcher/paths/logical.rb', line 52

def included?
  !context.settings.excluded_paths.include?(logical)
end

#project?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/avm/launcher/paths/logical.rb', line 36

def project?
  stereotypes.any?
end

#to_hObject



32
33
34
# File 'lib/avm/launcher/paths/logical.rb', line 32

def to_h
  { logical: logical, real: real.to_s, parent_path: parent_path ? parent_path.to_h : nil }
end

#to_sObject



28
29
30
# File 'lib/avm/launcher/paths/logical.rb', line 28

def to_s
  logical
end