Class: Fig::Package

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/fig/package.rb

Overview

The parsed representation of a configuration file for a specific version. Contains the statement objects.

Unique identifier for this object: name and version. A different version of the same package will be a separate instance of this class.

Constant Summary collapse

DEFAULT_CONFIG =
'default'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, version, description, runtime_directory, include_file_base_directory, statements, synthetic) ⇒ Package

Returns a new instance of Package.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/fig/package.rb', line 30

def initialize(
  name,
  version,
  description,
  runtime_directory,
  include_file_base_directory,
  statements,
  synthetic
)
  @name                         = name
  @version                      = version
  @description                  = description
  @runtime_directory            = runtime_directory
  @include_file_base_directory  = include_file_base_directory
  @statements                   = statements
  @synthetic                    = synthetic
  @applied_config_names         = []
  @backtrace                    = nil
end

Instance Attribute Details

#backtraceObject

Returns the value of attribute backtrace.



27
28
29
# File 'lib/fig/package.rb', line 27

def backtrace
  @backtrace
end

#descriptionObject (readonly)

Returns the value of attribute description.



23
24
25
# File 'lib/fig/package.rb', line 23

def description
  @description
end

#include_file_base_directoryObject (readonly)

Returns the value of attribute include_file_base_directory.



25
26
27
# File 'lib/fig/package.rb', line 25

def include_file_base_directory
  @include_file_base_directory
end

#nameObject (readonly)

Returns the value of attribute name.



21
22
23
# File 'lib/fig/package.rb', line 21

def name
  @name
end

#runtime_directoryObject (readonly)

Returns the value of attribute runtime_directory.



24
25
26
# File 'lib/fig/package.rb', line 24

def runtime_directory
  @runtime_directory
end

#statementsObject (readonly)

Returns the value of attribute statements.



26
27
28
# File 'lib/fig/package.rb', line 26

def statements
  @statements
end

#unparsed_textObject

Returns the value of attribute unparsed_text.



28
29
30
# File 'lib/fig/package.rb', line 28

def unparsed_text
  @unparsed_text
end

#versionObject (readonly)

Returns the value of attribute version.



22
23
24
# File 'lib/fig/package.rb', line 22

def version
  @version
end

Instance Method Details

#<=>(other) ⇒ Object



88
89
90
91
92
93
# File 'lib/fig/package.rb', line 88

def <=>(other)
  compared = compare_components(name, other.name)
  return compared if compared != 0

  return compare_components(version, other.version)
end

#[](config_name) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/fig/package.rb', line 68

def [](config_name)
  @statements.each do |stmt|
    return stmt if stmt.is_a?(Fig::Statement::Configuration) && stmt.name == config_name
  end

  descriptor = Fig::PackageDescriptor.new(
    @name, @version, config_name, :description => @description
  )
  config_description = nil
  if @name.nil? and @version.nil?
    config_description = config_name
  else
    config_description = descriptor.to_string(:use_default_config)
  end

  message = %Q<There is no "#{config_description}" config.>

  raise Fig::NoSuchPackageConfigError.new(message, descriptor, self)
end

#add_applied_config_name(name) ⇒ Object



123
124
125
# File 'lib/fig/package.rb', line 123

def add_applied_config_name(name)
  @applied_config_names << name
end

#applied_config_namesObject



119
120
121
# File 'lib/fig/package.rb', line 119

def applied_config_names()
  return @applied_config_names.clone
end

#archive_locationsObject



107
108
109
110
111
# File 'lib/fig/package.rb', line 107

def archive_locations
  return @statements.
    select{|s| s.is_a?(Fig::Statement::Archive)}.
    map{|s| s.location}
end

#base?Boolean

Is this the base package?

Returns:

  • (Boolean)


58
59
60
# File 'lib/fig/package.rb', line 58

def base?()
  return @base
end

#config_namesObject



99
100
101
# File 'lib/fig/package.rb', line 99

def config_names
  return configs.collect { |statement| statement.name }
end

#configsObject



95
96
97
# File 'lib/fig/package.rb', line 95

def configs
  return @statements.select { |statement| statement.is_a?(Fig::Statement::Configuration) }
end

#package_dependencies(config_name, backtrace) ⇒ Object

Returns an array of PackageDescriptors



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/fig/package.rb', line 132

def package_dependencies(config_name, backtrace)
  descriptors = []

  self[config_name || DEFAULT_CONFIG].walk_statements do
    |statement|

    if statement.is_a?(Fig::Statement::Include)
      descriptors << statement.resolved_dependency_descriptor(self, backtrace)
    elsif statement.is_a?(Fig::Statement::Override)
      backtrace.add_override(statement)
    end
  end

  return descriptors
end

#primary_config_nameObject



127
128
129
# File 'lib/fig/package.rb', line 127

def primary_config_name()
  return @applied_config_names.first
end

#resource_locationsObject



113
114
115
116
117
# File 'lib/fig/package.rb', line 113

def resource_locations
  return @statements.
    select{|s| s.is_a?(Fig::Statement::Resource)}.
    map{|s| s.location}
end

#retrievesObject



103
104
105
# File 'lib/fig/package.rb', line 103

def retrieves
  return @statements.select { |statement| statement.is_a?(Fig::Statement::Retrieve) }
end

#set_base(yea_or_nay) ⇒ Object



62
63
64
65
66
# File 'lib/fig/package.rb', line 62

def set_base(yea_or_nay)
  @base = yea_or_nay

  return
end

#synthetic?Boolean

Was this package (supposedly) created from something other than usual parsing? (Note that some tests artificially create “non-synthetic” instances.)

Returns:

  • (Boolean)


53
54
55
# File 'lib/fig/package.rb', line 53

def synthetic?
  return @synthetic
end

#to_descriptive_string_with_config(config_name) ⇒ Object

Useful for debugging; should not be used for regular output.



172
173
174
175
176
# File 'lib/fig/package.rb', line 172

def to_descriptive_string_with_config(config_name)
  return Fig::PackageDescriptor.format(
    name, version, config_name, :use_default_config, description
  )
end

#to_sObject



158
159
160
161
162
# File 'lib/fig/package.rb', line 158

def to_s
  name    = @name || UNPUBLISHED
  version = @version || '<empty>'
  return Fig::PackageDescriptor.format(name, version, nil)
end

#to_s_with_config(config_name) ⇒ Object



164
165
166
167
168
169
# File 'lib/fig/package.rb', line 164

def to_s_with_config(config_name)
  displayed_config = config_name == DEFAULT_CONFIG ? nil : config_name
  return Fig::PackageDescriptor.format(
    name || UNPUBLISHED, version, displayed_config
  )
end

#walk_statements(&block) ⇒ Object

Block will receive a Statement.



149
150
151
152
153
154
155
156
# File 'lib/fig/package.rb', line 149

def walk_statements(&block)
  @statements.each do |statement|
    yield statement
    statement.walk_statements(&block)
  end

  return
end