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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
# File 'lib/puppet/resource_api.rb', line 8
def register_type(definition)
raise Puppet::DevError, 'requires a Hash as definition, not %{other_type}' % { other_type: definition.class } unless definition.is_a? Hash
raise Puppet::DevError, 'requires a name' unless definition.key? :name
raise Puppet::DevError, 'requires attributes' unless definition.key? :attributes
definition[:features] ||= []
supported_features = %w[supports_noop canonicalize remote_resource simple_get_filter].freeze
unknown_features = definition[:features] - supported_features
Puppet.warning("Unknown feature detected: #{unknown_features.inspect}") unless unknown_features.empty?
definition[:attributes].each do |name, attr|
next unless attr[:behavior]
if attr[:behaviour]
raise Puppet::DevError, "the '#{name}' attribute has both a `behavior` and a `behaviour`, only use one"
end
attr[:behaviour] = attr[:behavior]
attr.delete(:behavior)
end
unless Puppet::Provider.const_defined?(class_name_from_type_name(definition[:name]))
Puppet::Provider.const_set(class_name_from_type_name(definition[:name]), Module.new)
end
Puppet::Type.newtype(definition[:name].to_sym) do
@docs = definition[:docs]
has_namevar = false
namevar_name = nil
define_singleton_method(:my_provider) do
@my_provider ||= Puppet::ResourceApi.load_provider(definition[:name]).new
end
def my_provider
self.class.my_provider
end
define_singleton_method(:feature_support?) do |feature|
definition[:features] && definition[:features].include?(feature)
end
def feature_support?(feature)
self.class.feature_support?(feature)
end
if feature_support?('remote_resource')
apply_to_device
end
define_method(:initialize) do |attributes|
if attributes.is_a? Puppet::Resource
attributes = attributes.to_hash
else
@called_from_resource = true
end
if feature_support?('canonicalize')
attributes = my_provider.canonicalize(context, [attributes])[0]
end
super(attributes)
end
validate do
missing_attrs = []
definition[:attributes].each do |name, options|
type = Puppet::Pops::Types::TypeParser.singleton.parse(options[:type])
next if [:read_only, :namevar].include? options[:behaviour]
next if definition[:attributes][:ensure] &&
value(:ensure) == :absent &&
options[:behaviour].nil?
if value(name).nil? && !(type.instance_of? Puppet::Pops::Types::POptionalType)
missing_attrs << name
end
end
missing_attrs -= [:ensure] if @called_from_resource
if missing_attrs.any?
error_msg = "The following mandatory attributes where not provided:\n * " + missing_attrs.join(", \n * ")
raise Puppet::ResourceError, error_msg
end
end
definition[:attributes].each do |name, options|
if options[:behaviour]
unless [:read_only, :namevar, :parameter].include? options[:behaviour]
raise Puppet::ResourceError, "`#{options[:behaviour]}` is not a valid behaviour value"
end
end
param_or_property = if [:read_only, :parameter, :namevar].include? options[:behaviour]
:newparam
else
:newproperty
end
send(param_or_property, name.to_sym) do
unless options[:type]
raise Puppet::DevError, "#{definition[:name]}.#{name} has no type"
end
if options[:desc]
desc "#{options[:desc]} (a #{options[:type]})"
else
warn("#{definition[:name]}.#{name} has no docs")
end
if options[:behaviour] == :namevar
isnamevar
has_namevar = true
namevar_name = name
end
if options[:behaviour] != :read_only
if options.key? :default
defaultto options[:default]
end
type = Puppet::Pops::Types::TypeParser.singleton.parse(options[:type])
validate do |value|
return true if type.instance?(value)
if value.is_a? String
case value
when %r{^-?\d+$}, Puppet::Pops::Patterns::NUMERIC
value = Puppet::Pops::Utils.to_n(value)
when %r{\Atrue|false\Z}
value = value == 'true'
end
return true if type.instance?(value)
inferred_type = Puppet::Pops::Types::TypeCalculator.infer_set(value)
error_msg = Puppet::Pops::Types::TypeMismatchDescriber.new.describe_mismatch("#{definition[:name]}.#{name}", type, inferred_type)
raise Puppet::ResourceError, error_msg
end
end
if type.instance_of? Puppet::Pops::Types::POptionalType
type = type.type
end
case type
when Puppet::Pops::Types::PStringType
Puppet::ResourceApi.def_newvalues(self, param_or_property, %r{})
when Puppet::Pops::Types::PBooleanType
Puppet::ResourceApi.def_newvalues(self, param_or_property, 'true', 'false')
aliasvalue true, 'true'
aliasvalue false, 'false'
aliasvalue :true, 'true'
aliasvalue :false, 'false'
munge do |v|
case v
when 'true', :true
true
when 'false', :false
false
else
v
end
end
when Puppet::Pops::Types::PIntegerType
Puppet::ResourceApi.def_newvalues(self, param_or_property, %r{^-?\d+$})
munge do |v|
Puppet::Pops::Utils.to_n(v)
end
when Puppet::Pops::Types::PFloatType, Puppet::Pops::Types::PNumericType
Puppet::ResourceApi.def_newvalues(self, param_or_property, Puppet::Pops::Patterns::NUMERIC)
munge do |v|
Puppet::Pops::Utils.to_n(v)
end
end
case options[:type]
when 'Enum[present, absent]'
Puppet::ResourceApi.def_newvalues(self, param_or_property, :absent, :present)
end
end
end
end
define_singleton_method(:instances) do
provider(name)
attr_def = {}
my_provider.get(context).map do |resource_hash|
resource_hash.each do |key|
property = definition[:attributes][key.first]
attr_def[key.first] = property
end
if resource_hash[namevar_name].nil?
raise Puppet::ResourceError, "`#{name}.get` did not return a value for the `#{namevar_name}` namevar attribute"
end
Puppet::ResourceApi::TypeShim.new(resource_hash[namevar_name], resource_hash, name, namevar_name, attr_def)
end
end
define_method(:retrieve) do
result = Puppet::Resource.new(self.class, title)
current_state = if feature_support?('simple_get_filter')
my_provider.get(context, [title]).first
else
my_provider.get(context).find { |h| h[namevar_name] == title }
end
strict_check(current_state) if current_state && feature_support?('canonicalize')
if current_state
current_state.each do |k, v|
result[k] = v
end
else
result[namevar_name] = title
result[:ensure] = :absent
end
@rapi_current_state = current_state
Puppet.debug("Current State: #{@rapi_current_state.inspect}")
result
end
define_method(:flush) do
target_state = Hash[@parameters.map { |k, v| [k, v.value] }]
target_state.delete(:loglevel)
target_state = my_provider.canonicalize(context, [target_state]).first if feature_support?('canonicalize')
retrieve unless @rapi_current_state
return if @rapi_current_state == target_state
Puppet.debug("Target State: #{target_state.inspect}")
if feature_support?('supports_noop')
my_provider.set(context, { title => { is: @rapi_current_state, should: target_state } }, noop: noop?)
else
my_provider.set(context, title => { is: @rapi_current_state, should: target_state }) unless noop?
end
raise 'Execution encountered an error' if context.failed?
end
define_method(:strict_check) do |current_state|
return if Puppet.settings[:strict] == :off
state_clone = Marshal.load(Marshal.dump(current_state))
state_clone = my_provider.canonicalize(context, [state_clone]).first
return unless state_clone && (current_state != state_clone)
message = "\#{definition[:name]}[\#{current_state[namevar_name]}]#get has not provided canonicalized values.\nReturned values: \#{current_state.inspect}\nCanonicalized values: \#{state_clone.inspect}\n".strip
case Puppet.settings[:strict]
when :warning
Puppet.warning(message)
when :error
raise Puppet::Error, message
end
return nil
end
define_singleton_method(:context) do
@context ||= PuppetContext.new(definition[:name])
end
def context
self.class.context
end
[:autorequire, :autobefore, :autosubscribe, :autonotify].each do |auto|
next unless definition[auto]
definition[auto].each do |type, values|
Puppet.debug("Registering #{auto} for #{type}: #{values.inspect}")
send(auto, type.downcase.to_sym) do
[values].flatten.map do |v|
match = %r{\A\$(.*)\Z}.match(v) if v.is_a? String
if match.nil?
v
else
self[match[1].to_sym]
end
end
end
end
end
end
end
|