Class: R10K::Source::Git

Inherits:
Base
  • Object
show all
Includes:
Logging
Defined in:
lib/r10k/source/git.rb

Overview

This class implements a source for Git environments.

A Git source generates environments by locally caching the given Git repository and enumerating the branches for the Git repository. Branches are mapped to environments without modification.

Since:

  • 1.3.0

Constant Summary

Constants included from Logging

Logging::LOG_LEVELS

Instance Attribute Summary collapse

Attributes inherited from Base

#basedir, #name, #prefix

Instance Method Summary collapse

Methods included from Logging

debug_formatter, default_formatter, default_outputter, #logger, #logger_name, parse_level

Methods inherited from Base

#accept

Constructor Details

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

Initialize the given source.

Parameters:

  • name (String)

    The identifier for this source.

  • basedir (String)

    The base directory where the generated environments will be created.

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

    An additional set of options for this source.

Options Hash (options):

  • :prefix (Boolean, String)

    If a String this becomes the prefix. If true, will use the source name as the prefix. Defaults to false for no environment prefix.

  • :remote (String)

    The URL to the base directory of the SVN repository

  • :remote (Hash)

    Additional settings that configure how the source should behave.

Since:

  • 1.3.0



51
52
53
54
55
56
57
58
59
60
# File 'lib/r10k/source/git.rb', line 51

def initialize(name, basedir, options = {})
  super

  @environments = []

  @remote           = options[:remote]
  @invalid_branches = (options[:invalid_branches] || 'correct_and_warn')

  @cache  = R10K::Git.cache.generate(@remote)
end

Instance Attribute Details

#cacheObject (readonly)

Since:

  • 1.3.0



27
28
29
# File 'lib/r10k/source/git.rb', line 27

def cache
  @cache
end

#invalid_branchesObject (readonly)

Since:

  • 1.3.0



37
38
39
# File 'lib/r10k/source/git.rb', line 37

def invalid_branches
  @invalid_branches
end

#remoteObject (readonly)

Since:

  • 1.3.0



22
23
24
# File 'lib/r10k/source/git.rb', line 22

def remote
  @remote
end

#settingsObject (readonly)

Since:

  • 1.3.0



32
33
34
# File 'lib/r10k/source/git.rb', line 32

def settings
  @settings
end

Instance Method Details

#desired_contentsArray<String>

Note:

This is required by Util::Basedir

List all environments that should exist in the basedir for this source

Returns:

  • (Array<String>)

Since:

  • 1.3.0



108
109
110
# File 'lib/r10k/source/git.rb', line 108

def desired_contents
  environments.map {|env| env.dirname }
end

#environmentsArray<R10K::Environment::Git>

Load the git remote and create environments for each branch. If the cache has not been fetched, this will return an empty list.

Returns:

Since:

  • 1.3.0



77
78
79
80
81
82
83
84
85
# File 'lib/r10k/source/git.rb', line 77

def environments
  if not @cache.cached?
    []
  elsif @environments.empty?
    @environments = generate_environments()
  else
    @environments
  end
end

#generate_environmentsObject

Since:

  • 1.3.0



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/r10k/source/git.rb', line 87

def generate_environments
  envs = []
  branch_names.each do |bn|
    if bn.valid?
      envs << R10K::Environment::Git.new(bn.name, @basedir, bn.dirname,
                                     {:remote => remote, :ref => bn.name})
    elsif bn.correct?
     logger.warn "Environment #{bn.name.inspect} contained non-word characters, correcting name to #{bn.dirname}"
      envs << R10K::Environment::Git.new(bn.name, @basedir, bn.dirname,
                                     {:remote => remote, :ref => bn.name})
    elsif bn.validate?
     logger.error "Environment #{bn.name.inspect} contained non-word characters, ignoring it."
    end
  end

  envs
end

#preload!void Also known as: fetch_remote

This method returns an undefined value.

Update the git cache for this git source to get the latest list of environments.

Since:

  • 1.3.0



65
66
67
68
69
70
# File 'lib/r10k/source/git.rb', line 65

def preload!
  logger.debug "Fetching '#{@remote}' to determine current branches."
  @cache.sync
rescue => e
  raise R10K::Error.wrap(e, "Unable to determine current branches for Git source '#{@name}' (#{@basedir})")
end