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
|
#
# Author:: Claire McQuin (<claire@opscode.com>)
# Copyright:: Copyright (c) 2013 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License"); you
# may not use this file except in compliance with the License. You may
# obtain a copy of the license at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License
#
require 'ohai/dsl'
module Ohai
class Runner
# safe_run: set to true if this runner will run plugins in
# safe-mode. default false.
def initialize(controller, safe_run = false)
@provides_map = controller.provides_map
@safe_run = safe_run
end
# Runs plugins and any un-run dependencies.
# If force is set to true, then this plugin and its dependencies
# will be run even if they have been run before.
def run_plugin(plugin, force = false)
unless plugin.kind_of?(Ohai::DSL::Plugin)
raise ArgumentError, "Invalid plugin #{plugin} (must be an Ohai::DSL::Plugin or subclass)"
end
if Ohai::Config[:disabled_plugins].include?(plugin.name)
Ohai::Log.debug("Skipping disabled plugin #{plugin.name}")
return false
end
case plugin.version
when :version7
run_v7_plugin(plugin, force)
when :version6
run_v6_plugin(plugin, force)
else
raise ArgumentError, "Invalid plugin version #{plugin.version} for plugin #{plugin}"
end
end
def run_v6_plugin(plugin, force)
return true if plugin.has_run? && !force
@safe_run ? plugin.safe_run : plugin.run
end
def run_v7_plugin(plugin, force)
visited = [ plugin ]
while !visited.empty?
next_plugin = visited.pop
next if next_plugin.has_run? unless force
if visited.include?(next_plugin)
raise Ohai::Exceptions::DependencyCycle, "Dependency cycle detected. Please refer to the following plugins: #{get_cycle(visited, p).join(", ") }"
end
dependency_providers = fetch_plugins(next_plugin.dependencies)
# Remove the already ran plugins from dependencies if force is not set
# Also remove the plugin that we are about to run from dependencies as well.
dependency_providers.delete_if { |dep_plugin|
(!force && dep_plugin.has_run?) || dep_plugin.eql?(next_plugin)
}
if dependency_providers.empty?
@safe_run ? next_plugin.safe_run : next_plugin.run
else
visited << next_plugin << dependency_providers.first
end
end
end
# returns a list of plugins which provide the given attributes
def fetch_plugins(attributes)
@provides_map.find_providers_for(attributes)
end
# Given a list of plugins and the first plugin in the cycle,
# returns the list of plugin source files responsible for the
# cycle. Does not include plugins that aren't a part of the cycle
def get_cycle(plugins, cycle_start)
cycle = plugins.drop_while { |plugin| !plugin.eql?(cycle_start) }
names = []
cycle.each { |plugin| names << plugin.name }
names
end
end
end
|