Class: R10K::Environment::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/r10k/environment/base.rb

Overview

This class defines a common interface for environment implementations.

Since:

  • 1.3.0

Direct Known Subclasses

Git, SVN

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, basedir, dirname, options = {}) ⇒ Base

Initialize the given environment.

Parameters:

  • name (String)

    The unique name describing this environment.

  • basedir (String)

    The base directory where this environment will be created.

  • dirname (String)

    The directory name for this environment.

  • options (Hash) (defaults to: {})

    An additional set of options for this environment. The semantics of this environment may depend on the environment implementation.

Since:

  • 1.3.0



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/r10k/environment/base.rb', line 34

def initialize(name, basedir, dirname, options = {})
  @name    = name
  @basedir = basedir
  @dirname = dirname
  @options = options

  @full_path = File.join(@basedir, @dirname)
  @path = Pathname.new(File.join(@basedir, @dirname))

  @puppetfile  = R10K::Puppetfile.new(@full_path)
  @puppetfile.environment = self
end

Instance Attribute Details

#basedirObject (readonly)

Since:

  • 1.3.0



12
13
14
# File 'lib/r10k/environment/base.rb', line 12

def basedir
  @basedir
end

#dirnameObject (readonly)

Since:

  • 1.3.0



16
17
18
# File 'lib/r10k/environment/base.rb', line 16

def dirname
  @dirname
end

#nameObject (readonly)

Since:

  • 1.3.0



8
9
10
# File 'lib/r10k/environment/base.rb', line 8

def name
  @name
end

#pathObject (readonly)

Since:

  • 1.3.0



20
21
22
# File 'lib/r10k/environment/base.rb', line 20

def path
  @path
end

#puppetfileObject (readonly)

Since:

  • 1.3.0



25
26
27
# File 'lib/r10k/environment/base.rb', line 25

def puppetfile
  @puppetfile
end

Instance Method Details

#accept(visitor) ⇒ Object

Since:

  • 1.3.0



98
99
100
101
102
# File 'lib/r10k/environment/base.rb', line 98

def accept(visitor)
  visitor.visit(:environment, self) do
    puppetfile.accept(visitor)
  end
end

#infoHash

Returns a hash describing the current state of the environment.

Returns:

  • (Hash)

Since:

  • 1.3.0



84
85
86
87
88
89
# File 'lib/r10k/environment/base.rb', line 84

def info
  {
    :name => self.name,
    :signature => self.signature,
  }
end

#modulesArray<R10K::Module::Base>

Returns All modules defined in the Puppetfile associated with this environment.

Returns:

  • (Array<R10K::Module::Base>)

    All modules defined in the Puppetfile associated with this environment.

Since:

  • 1.3.0



93
94
95
96
# File 'lib/r10k/environment/base.rb', line 93

def modules
  @puppetfile.load
  @puppetfile.modules
end

#purge_exclusionsObject

Since:

  • 1.3.0



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/r10k/environment/base.rb', line 108

def purge_exclusions
  list = [File.join(@full_path, '.r10k-deploy.json')].to_set

  list += @puppetfile.managed_directories

  list += @puppetfile.desired_contents.flat_map do |item|
    desired_tree = []

    if File.directory?(item)
      desired_tree << File.join(item, '**', '*')
    end

    Pathname.new(item).ascend do |path|
      break if path.to_s == @full_path
      desired_tree << path.to_s
    end

    desired_tree
  end

  list.to_a
end

#signatureString

This method is abstract.

Returns a unique identifier for the environment’s current state.

Returns:

  • (String)

Raises:

  • (NotImplementedError)

Since:

  • 1.3.0



77
78
79
# File 'lib/r10k/environment/base.rb', line 77

def signature
  raise NotImplementedError, _("%{class} has not implemented method %{method}") %{class: self.class, method: __method__}
end

#statusSymbol

This method is abstract.

Determine the current status of the environment.

This can return the following values:

* :absent - there is no module installed
* :mismatched - there is a module installed but it must be removed and reinstalled
* :outdated - the correct module is installed but it needs to be updated
* :insync - the correct module is installed and up to date, or the module is actually a boy band.

Returns:

  • (Symbol)

Raises:

  • (NotImplementedError)

Since:

  • 1.3.0



68
69
70
# File 'lib/r10k/environment/base.rb', line 68

def status
  raise NotImplementedError, _("%{class} has not implemented method %{method}") % {class: self.class, method: __method__}
end

#syncvoid

This method is abstract.

This method returns an undefined value.

Synchronize the given environment.

Raises:

  • (NotImplementedError)

Since:

  • 1.3.0



52
53
54
# File 'lib/r10k/environment/base.rb', line 52

def sync
  raise NotImplementedError, _("%{class} has not implemented method %{method}") % {class: self.class, method: __method__}
end

#whitelist(user_whitelist = []) ⇒ Object

Since:

  • 1.3.0



104
105
106
# File 'lib/r10k/environment/base.rb', line 104

def whitelist(user_whitelist=[])
  user_whitelist.collect { |pattern| File.join(@full_path, pattern) }
end