summaryrefslogtreecommitdiff
path: root/lib/chef/run_list.rb
diff options
context:
space:
mode:
authorSeth Chisamore <schisamo@opscode.com>2012-10-30 10:39:35 -0400
committerSeth Chisamore <schisamo@opscode.com>2012-10-30 10:39:35 -0400
commit24dc69a9a97e82a6e4207de68d6dcc664178249b (patch)
tree19bb289c9f88b4bbab066bc56b95d6d222fd5c35 /lib/chef/run_list.rb
parent9348c1c9c80ee757354d624b7dc1b78ebc7605c4 (diff)
downloadchef-24dc69a9a97e82a6e4207de68d6dcc664178249b.tar.gz
[OC-3564] move core Chef to the repo root \o/ \m/
The opscode/chef repository now only contains the core Chef library code used by chef-client, knife and chef-solo!
Diffstat (limited to 'lib/chef/run_list.rb')
-rw-r--r--lib/chef/run_list.rb163
1 files changed, 163 insertions, 0 deletions
diff --git a/lib/chef/run_list.rb b/lib/chef/run_list.rb
new file mode 100644
index 0000000000..684c5e19fc
--- /dev/null
+++ b/lib/chef/run_list.rb
@@ -0,0 +1,163 @@
+#
+# Author:: Adam Jacob (<adam@opscode.com>)
+# Author:: Nuo Yan (<nuoyan@opscode.com>)
+# Author:: Tim Hinderliter (<tim@opscode.com>)
+# Author:: Christopher Walters (<cw@opscode.com>)
+# Author:: Seth Falcon (<seth@opscode.com>)
+# Copyright:: Copyright (c) 2008-2011 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 express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+require 'chef/run_list/run_list_item'
+require 'chef/run_list/run_list_expansion'
+require 'chef/run_list/versioned_recipe_list'
+require 'chef/mixin/params_validate'
+
+class Chef
+ class RunList
+ include Enumerable
+ include Chef::Mixin::ParamsValidate
+
+ # @run_list_items is an array of RunListItems that describe the items to
+ # execute in order. RunListItems can load from and convert to the string
+ # forms users set on roles and nodes.
+ # For example:
+ # @run_list_items = ['recipe[foo::bar]', 'role[webserver]']
+ # Thus,
+ # self.role_names would return ['webserver']
+ # self.recipe_names would return ['foo::bar']
+ attr_reader :run_list_items
+
+ # For backwards compat
+ alias :run_list :run_list_items
+
+ def initialize(*run_list_items)
+ @run_list_items = run_list_items.map { |i| coerce_to_run_list_item(i) }
+ end
+
+ def role_names
+ @run_list_items.inject([]){|memo, run_list_item| memo << run_list_item.name if run_list_item.role? ; memo}
+ end
+
+ alias :roles :role_names
+
+ def recipe_names
+ @run_list_items.inject([]){|memo, run_list_item| memo << run_list_item.name if run_list_item.recipe? ; memo}
+ end
+
+ alias :recipes :recipe_names
+
+ # Add an item of the form "recipe[foo::bar]" or "role[webserver]";
+ # takes a String or a RunListItem
+ def <<(run_list_item)
+ run_list_item = coerce_to_run_list_item(run_list_item)
+ @run_list_items << run_list_item unless @run_list_items.include?(run_list_item)
+ self
+ end
+
+ alias :push :<<
+ alias :add :<<
+
+ def ==(other)
+ if other.kind_of?(Chef::RunList)
+ other.run_list_items == @run_list_items
+ else
+ return false unless other.respond_to?(:size) && (other.size == @run_list_items.size)
+ other_run_list_items = other.dup
+
+ other_run_list_items.map! { |item| coerce_to_run_list_item(item) }
+ other_run_list_items == @run_list_items
+ end
+ end
+
+ def to_s
+ @run_list_items.join(", ")
+ end
+
+ def to_json(*args)
+ to_a.map { |item| item.to_s}.to_json(*args)
+ end
+
+ def empty?
+ @run_list_items.length == 0 ? true : false
+ end
+
+ def [](pos)
+ @run_list_items[pos]
+ end
+
+ def []=(pos, item)
+ @run_list_items[pos] = parse_entry(item)
+ end
+
+ def each(&block)
+ @run_list_items.each { |i| block.call(i) }
+ end
+
+ def each_index(&block)
+ @run_list_items.each_index { |i| block.call(i) }
+ end
+
+ def include?(item)
+ @run_list_items.include?(parse_entry(item))
+ end
+
+ def reset!(*args)
+ @run_list_items.clear
+ args.flatten.each do |item|
+ if item.kind_of?(Chef::RunList)
+ item.each { |r| self << r }
+ else
+ self << item
+ end
+ end
+ self
+ end
+
+ def remove(item)
+ @run_list_items.delete_if{|i| i == item}
+ self
+ end
+ alias :delete :remove
+
+ # Expands this run_list: recursively expand roles into their included
+ # recipes.
+ # Returns a RunListExpansion object.
+ def expand(environment, data_source='server', expansion_opts={})
+ expansion = expansion_for_data_source(environment, data_source, expansion_opts)
+ expansion.expand
+ expansion
+ end
+
+ # Converts a string run list entry to a RunListItem object.
+ def parse_entry(entry)
+ RunListItem.new(entry)
+ end
+
+ def coerce_to_run_list_item(item)
+ item.kind_of?(RunListItem) ? item : parse_entry(item)
+ end
+
+ def expansion_for_data_source(environment, data_source, opts={})
+ case data_source.to_s
+ when 'disk'
+ RunListExpansionFromDisk.new(environment, @run_list_items)
+ when 'server'
+ RunListExpansionFromAPI.new(environment, @run_list_items, opts[:rest])
+ end
+ end
+
+
+ end
+end