-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-refactor of concat to not depend on file_concat
- Loading branch information
Showing
9 changed files
with
214 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
require 'puppet/type/file/owner' | ||
require 'puppet/type/file/group' | ||
require 'puppet/type/file/mode' | ||
require 'puppet/util/checksums' | ||
|
||
Puppet::Type.newtype(:concat_file) do | ||
@doc = "Gets all the file fragments and puts these into the target file. | ||
This will mostly be used with exported resources. | ||
example: | ||
Concat_fragment <<| tag == 'unique_tag' |>> | ||
concat_file { '/tmp/file: | ||
tag => 'unique_tag', # Mandatory | ||
path => '/tmp/file', # Optional. If given it overrides the resource name | ||
owner => 'root', # Optional. Default to undef | ||
group => 'root', # Optional. Default to undef | ||
mode => '0644' # Optional. Default to undef | ||
order => 'numeric' # Optional, Default to 'numeric' | ||
} | ||
" | ||
ensurable do | ||
defaultvalues | ||
|
||
defaultto { :present } | ||
end | ||
|
||
def exists? | ||
self[:ensure] == :present | ||
end | ||
|
||
newparam(:name, :namevar => true) do | ||
desc "Resource name" | ||
end | ||
|
||
newparam(:tag) do | ||
desc "Tag reference to collect all concat_fragment's with the same tag" | ||
end | ||
|
||
newparam(:path) do | ||
desc "The output file" | ||
defaultto do | ||
resource.value(:name) | ||
end | ||
end | ||
|
||
newparam(:owner, :parent => Puppet::Type::File::Owner) do | ||
desc "Desired file owner." | ||
end | ||
|
||
newparam(:group, :parent => Puppet::Type::File::Group) do | ||
desc "Desired file group." | ||
end | ||
|
||
newparam(:mode, :parent => Puppet::Type::File::Mode) do | ||
desc "Desired file mode." | ||
end | ||
|
||
newparam(:order) do | ||
desc "Controls the ordering of fragments. Can be set to alphabetical or numeric." | ||
defaultto 'numeric' | ||
end | ||
|
||
newparam(:backup) do | ||
desc "Controls the filebucketing behavior of the final file and see File type reference for its use." | ||
defaultto 'puppet' | ||
end | ||
|
||
newparam(:replace) do | ||
desc "Whether to replace a file that already exists on the local system." | ||
defaultto true | ||
end | ||
|
||
newparam(:validate_cmd) do | ||
desc "Validates file." | ||
end | ||
|
||
autorequire(:concat_fragment) do | ||
catalog.resources.collect do |r| | ||
if r.is_a?(Puppet::Type.type(:concat_fragment)) && r[:tag] == self[:tag] | ||
r.name | ||
end | ||
end.compact | ||
end | ||
|
||
def should_content | ||
return @generated_content if @generated_content | ||
@generated_content = "" | ||
content_fragments = [] | ||
|
||
resources = catalog.resources.select do |r| | ||
r.is_a?(Puppet::Type.type(:concat_fragment)) && r[:tag] == self[:tag] | ||
end | ||
|
||
resources.each do |r| | ||
content_fragments << ["#{r[:order]}___#{r[:name]}", fragment_content(r)] | ||
end | ||
|
||
if self[:order] == 'numeric' | ||
sorted = content_fragments.sort do |a, b| | ||
def decompound(d) | ||
d.split('___').map { |v| v =~ /^\d+$/ ? v.to_i : v } | ||
end | ||
|
||
decompound(a[0]) <=> decompound(b[0]) | ||
end | ||
else | ||
sorted = content_fragments.sort do |a, b| | ||
def decompound(d) | ||
d.split('___').first | ||
end | ||
|
||
decompound(a[0]) <=> decompound(b[0]) | ||
end | ||
end | ||
|
||
@generated_content = sorted.map { |cf| cf[1] }.join | ||
|
||
@generated_content | ||
end | ||
|
||
def fragment_content(r) | ||
if r[:content].nil? == false | ||
fragment_content = r[:content] | ||
elsif r[:source].nil? == false | ||
@source = nil | ||
Array(r[:source]).each do |source| | ||
if Puppet::FileServing::Metadata.indirection.find(source) | ||
@source = source | ||
break | ||
end | ||
end | ||
self.fail "Could not retrieve source(s) #{r[:source].join(", ")}" unless @source | ||
tmp = Puppet::FileServing::Content.indirection.find(@source, :environment => catalog.environment) | ||
fragment_content = tmp.content unless tmp.nil? | ||
end | ||
fragment_content | ||
end | ||
|
||
def eval_generate | ||
file_opts = { | ||
:ensure => self[:ensure] == :absent ? :absent : :file, | ||
:content => self.should_content, | ||
} | ||
|
||
[:path, :owner, :group, :mode, :replace, :backup].each do |param| | ||
unless self[param].nil? | ||
file_opts[param] = self[param] | ||
end | ||
end | ||
|
||
[Puppet::Type.type(:file).new(file_opts)] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Puppet::Type.newtype(:concat_fragment) do | ||
@doc = "Create a concat fragment to be used by concat. | ||
the `concat_fragment` type creates a file fragment to be collected by concat based on the tag. | ||
The example is based on exported resources. | ||
Example: | ||
@@concat_fragment { \"uniqe_name_${::fqdn}\": | ||
tag => 'unique_name', | ||
order => 10, # Optional. Default to 10 | ||
content => 'some content' # OR | ||
content => template('template.erb') # OR | ||
source => 'puppet:///path/to/file' | ||
} | ||
" | ||
|
||
newparam(:name, :namevar => true) do | ||
desc "Unique name" | ||
end | ||
|
||
newparam(:content) do | ||
desc "Content" | ||
end | ||
|
||
newparam(:source) do | ||
desc "Source" | ||
end | ||
|
||
newparam(:order) do | ||
desc "Order" | ||
defaultto '10' | ||
validate do |val| | ||
fail Puppet::ParseError, '$order is not a string or integer.' if !(val.is_a? String or val.is_a? Integer) | ||
fail Puppet::ParseError, "Order cannot contain '/', ':', or '\n'." if val.to_s =~ /[:\n\/]/ | ||
end | ||
end | ||
|
||
newparam(:tag) do | ||
desc "Tag name to be used by concat to collect all concat_fragments by tag name" | ||
end | ||
|
||
validate do | ||
# Check if either source or content is set. raise error if none is set | ||
fail Puppet::ParseError, "Set either 'source' or 'content'" if self[:source].nil? && self[:content].nil? | ||
|
||
# Check if both are set, if so rais error | ||
fail Puppet::ParseError, "Can't use 'source' and 'content' at the same time" if !self[:source].nil? && !self[:content].nil? | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters