summaryrefslogtreecommitdiff
path: root/lib/chef/chef_class.rb
blob: d3f7ee55c7efdd7f5ab9d91f8094d429736ca922 (plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#
# Author:: Lamont Granquist (<lamont@chef.io>)
# Copyright:: Copyright (c) 2015 Chef Software, 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.

# NOTE: This class is not intended for internal use by the chef-client code.  Classes in
# chef-client should still have objects like the node and run_context injected into them
# via their initializers.  This class is still global state and will complicate writing
# unit tests for internal Chef objects.  It is intended to be used only by recipe code.

# NOTE: When adding require lines here you are creating tight coupling on a global that may be
# included in many different situations and ultimately that ends in tears with circular requires.
# Note the way that the run_context, provider_priority_map and resource_priority_map are "dependency
# injected" into this class by other objects and do not reference the class symbols in those files
# directly and we do not need to require those files here.

class Chef
  class << self

    #
    # Public API
    #

    # Get the node object
    #
    # @return [Chef::Node] node object of the chef-client run
    attr_reader :node

    # Get the run context
    #
    # @return [Chef::RunContext] run_context of the chef-client run
    attr_reader :run_context

    # Get the array of providers associated with a resource_name for the current node
    #
    # @param resource_name [Symbol] name of the resource as a symbol
    # @return [Array<Class>] Priority Array of Provider Classes to use for the resource_name on the node
    def get_provider_priority_array(resource_name)
      @provider_priority_map.get_priority_array(node, resource_name).dup
    end

    # Get the array of resources associated with a resource_name for the current node
    #
    # @param resource_name [Symbol] name of the resource as a symbol
    # @return [Array<Class>] Priority Array of Resource Classes to use for the resource_name on the node
    def get_resource_priority_array(resource_name)
      @resource_priority_map.get_priority_array(node, resource_name).dup
    end

    # Set the array of providers associated with a resource_name for the current node
    #
    # @param resource_name [Symbol] name of the resource as a symbol
    # @param priority_array [Array<Class>] Array of Classes to set as the priority for resource_name on the node
    # @param filter [Hash] Chef::Nodearray-style filter
    # @return [Array<Class>] Modified Priority Array of Provider Classes to use for the resource_name on the node
    def set_provider_priority_array(resource_name, priority_array, *filter)
      @provider_priority_map.set_priority_array(resource_name, priority_array, *filter).dup
    end

    # Get the array of resources associated with a resource_name for the current node
    #
    # @param resource_name [Symbol] name of the resource as a symbol
    # @param priority_array [Array<Class>] Array of Classes to set as the priority for resource_name on the node
    # @param filter [Hash] Chef::Nodearray-style filter
    # @return [Array<Class>] Modified Priority Array of Resource Classes to use for the resource_name on the node
    def set_resource_priority_array(resource_name, priority_array, *filter)
      @resource_priority_map.set_priority_array(resource_name, priority_array, *filter).dup
    end

    #
    # Dependency Injection API (Private not Public)
    # [ in the ruby sense these have to be public methods, but they are
    #   *NOT* for public consumption ]
    #

    # Sets the resource_priority_map
    #
    # @api private
    # @param resource_priority_map [Chef::Platform::ResourcePriorityMap]
    def set_resource_priority_map(resource_priority_map)
      @resource_priority_map = resource_priority_map
    end

    # Sets the provider_priority_map
    #
    # @api private
    # @param provider_priority_map [Chef::Platform::providerPriorityMap]
    def set_provider_priority_map(provider_priority_map)
      @provider_priority_map = provider_priority_map
    end

    # Sets the node object
    #
    # @api private
    # @param node [Chef::Node]
    def set_node(node)
      @node = node
    end

    # Sets the run_context object
    #
    # @api private
    # @param run_context [Chef::RunContext]
    def set_run_context(run_context)
      @run_context = run_context
    end

    # Resets the internal state
    #
    # @api private
    def reset!
      @run_context = nil
      @node = nil
      @provider_priority_map = nil
      @resource_priority_map = nil
    end
  end
end