1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
#
# Author:: Adam Jacob (<adam@hjksolutions.com>)
# Copyright:: Copyright (c) 2008 HJK Solutions, LLC
# License:: GNU General Public License version 2 or later
#
# This program and entire repository is free software; you can
# redistribute it and/or modify it under the terms of the GNU
# General Public License as published by the Free Software
# Foundation; either version 2 of the License, or any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
require File.join(File.dirname(__FILE__), "mixin", "from_file")
class Chef
class Recipe
include Chef::Mixin::FromFile
attr_accessor :cookbook_name, :recipe_name, :recipe, :node, :collection,
:definitions, :params, :cookbook_loader
def initialize(cookbook_name, recipe_name, node, collection=nil, definitions=nil, cookbook_loader=nil)
@cookbook_name = cookbook_name
@recipe_name = recipe_name
@node = node
if collection
@collection = collection
else
@collection = Chef::ResourceCollection.new()
end
if definitions
@definitions = definitions
else
@definitions = Hash.new
end
if cookbook_loader
@cookbook_loader = cookbook_loader
else
@cookbook_loader = Chef::CookbookLoader.new()
end
@params = Hash.new
end
def require_recipe(*args)
args.flatten.each do |recipe|
rmatch = recipe.match(/(.+?)::(.+)/)
if rmatch
cookbook = @cookbook_loader[rmatch[1]]
cookbook.load_recipe(rmatch[2], @node, @collection, @definitions, @cookbook_loader)
else
cookbook = @cookbook_loader[recipe]
cookbook.load_recipe("default", @node, @collection, @definitions, @cookbook_loader)
end
end
end
def resources(*args)
@collection.resources(*args)
end
def method_missing(method_symbol, *args, &block)
resource = nil
# If we have a definition that matches, we want to use that instead. This should
# let you do some really crazy over-riding of "native" types, if you really want
# to.
if @definitions.has_key?(method_symbol)
new_def = @definitions[method_symbol].dup
new_def.instance_eval(&block)
new_recipe = Chef::Recipe.new(@cookbook_name, @recipe_name, @node, @collection, @definitions, @cookbook_loader)
new_recipe.params = new_def.params
new_recipe.instance_eval(&new_def.recipe)
else
method_name = method_symbol.to_s
# Otherwise, we're rocking the regular resource call route.
rname = nil
mn = method_name.match(/^(.+)_(.+)$/)
if mn
rname = "Chef::Resource::#{mn[1].capitalize}#{mn[2].capitalize}"
else
short_match = method_name.match(/^(.+)$/)
if short_match
rname = "Chef::Resource::#{short_match[1].capitalize}"
end
end
begin
args << @collection
resource = eval(rname).new(*args)
resource.params = @params
resource.instance_eval(&block)
rescue Exception => e
if e.kind_of?(NameError) && e.to_s =~ /Chef::Resource/
raise NameError, "Cannot find #{rname} for #{method_name}\nOriginal: #{e.to_s}"
else
raise e
end
end
@collection << resource
resource
end
end
end
end
|